Move IPC client into common, refactor IPC

This commit is contained in:
Drew DeVault 2015-11-27 09:50:04 -05:00
parent 5ae359279b
commit 27f03c705d
8 changed files with 105 additions and 79 deletions

View file

@ -6,7 +6,7 @@
#include "layout.h"
#include "config.h"
#include "input_state.h"
#include "ipc.h"
#include "ipc-server.h"
bool locked_container_focus = false;
bool locked_view_focus = false;

View file

@ -13,7 +13,7 @@
#include <ctype.h>
#include <json-c/json.h>
#include <list.h>
#include "ipc.h"
#include "ipc-server.h"
#include "log.h"
#include "config.h"
#include "commands.h"

View file

@ -14,7 +14,7 @@
#include "log.h"
#include "readline.h"
#include "handlers.h"
#include "ipc.h"
#include "ipc-server.h"
#include "sway.h"
static bool terminate_request = false;