diff options
author | Drew DeVault <[email protected]> | 2015-11-27 09:50:04 -0500 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2015-11-27 09:50:04 -0500 |
commit | 27f03c705d8851a8ef6ca9e8f7828c1a2bfd9a88 (patch) | |
tree | 740a9e384149879a2c106220212bef36c05f58f3 /include/ipc.h | |
parent | 5ae359279ba2b72acc93c907c31850e16d10b358 (diff) |
Move IPC client into common, refactor IPC
Diffstat (limited to 'include/ipc.h')
-rw-r--r-- | include/ipc.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/ipc.h b/include/ipc.h index 02aa1c1e..75be58a6 100644 --- a/include/ipc.h +++ b/include/ipc.h @@ -1,8 +1,6 @@ #ifndef _SWAY_IPC_H #define _SWAY_IPC_H -#include "container.h" - enum ipc_command_type { IPC_COMMAND = 0, IPC_GET_WORKSPACES = 1, @@ -15,10 +13,4 @@ enum ipc_command_type { IPC_SWAY_GET_PIXELS = 0x81 }; -void ipc_init(void); -void ipc_terminate(void); -struct sockaddr_un *ipc_user_sockaddr(void); - -void ipc_event_workspace(swayc_t *old, swayc_t *new); - #endif |