summaryrefslogtreecommitdiff
path: root/include/ipc.h
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2015-11-27 09:50:04 -0500
committerFurkan Sahin <furkan-dev@proton.me>2015-11-27 09:50:04 -0500
commit6284563fdeaec79d95e837d753a2010e89e82740 (patch)
tree740a9e384149879a2c106220212bef36c05f58f3 /include/ipc.h
parent3f1cb29c4f48709fb5459ebfafa7cab5e3c47bcb (diff)
Move IPC client into common, refactor IPC
Diffstat (limited to 'include/ipc.h')
-rw-r--r--include/ipc.h8
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