summaryrefslogtreecommitdiffstats
path: root/include/ipc.h
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2015-11-27 09:50:04 -0500
committerLibravatar Drew DeVault <sir@cmpwn.com>2015-11-27 09:50:04 -0500
commit27f03c705d8851a8ef6ca9e8f7828c1a2bfd9a88 (patch)
tree740a9e384149879a2c106220212bef36c05f58f3 /include/ipc.h
parentFix build warnings (diff)
downloadsway-27f03c705d8851a8ef6ca9e8f7828c1a2bfd9a88.tar.gz
sway-27f03c705d8851a8ef6ca9e8f7828c1a2bfd9a88.tar.zst
sway-27f03c705d8851a8ef6ca9e8f7828c1a2bfd9a88.zip
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 @@
1#ifndef _SWAY_IPC_H 1#ifndef _SWAY_IPC_H
2#define _SWAY_IPC_H 2#define _SWAY_IPC_H
3 3
4#include "container.h"
5
6enum ipc_command_type { 4enum ipc_command_type {
7 IPC_COMMAND = 0, 5 IPC_COMMAND = 0,
8 IPC_GET_WORKSPACES = 1, 6 IPC_GET_WORKSPACES = 1,
@@ -15,10 +13,4 @@ enum ipc_command_type {
15 IPC_SWAY_GET_PIXELS = 0x81 13 IPC_SWAY_GET_PIXELS = 0x81
16}; 14};
17 15
18void ipc_init(void);
19void ipc_terminate(void);
20struct sockaddr_un *ipc_user_sockaddr(void);
21
22void ipc_event_workspace(swayc_t *old, swayc_t *new);
23
24#endif 16#endif