Basic support for extensions in server and clients

This commit is contained in:
Drew DeVault 2015-11-18 22:01:22 -05:00
parent fb0bfa13ce
commit 82db2a57a9
9 changed files with 208 additions and 7 deletions

View file

@ -7,6 +7,7 @@
#include <sys/un.h>
#include <signal.h>
#include <getopt.h>
#include "extensions.h"
#include "layout.h"
#include "stringop.h"
#include "config.h"
@ -73,6 +74,8 @@ int main(int argc, char **argv) {
if (!wlc_init(&interface, argc, argv)) {
return 1;
}
register_extensions();
char *config_path = NULL;