aboutsummaryrefslogtreecommitdiffstats
path: root/include/ipc.h
diff options
context:
space:
mode:
authorLibravatar Ian Fan <ianfan0@gmail.com>2018-08-01 16:22:06 +0100
committerLibravatar Ian Fan <ianfan0@gmail.com>2018-08-01 16:57:15 +0100
commit46cfa8ff56acff0139b2e24300cbc3ea19da723f (patch)
tree92d5b04c01c2da2bce20819ade8ed834bf2e420c /include/ipc.h
parentipc: prevent emitting a workspace::focus event when moving a container to a d... (diff)
downloadsway-46cfa8ff56acff0139b2e24300cbc3ea19da723f.tar.gz
sway-46cfa8ff56acff0139b2e24300cbc3ea19da723f.tar.zst
sway-46cfa8ff56acff0139b2e24300cbc3ea19da723f.zip
ipc: remove extraneous values
Removes IPC_EVENT_MODIFIER and IPC_EVENT_INPUT, which were sway-specific and unused
Diffstat (limited to 'include/ipc.h')
-rw-r--r--include/ipc.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/ipc.h b/include/ipc.h
index 2138d3fa..a3f60e19 100644
--- a/include/ipc.h
+++ b/include/ipc.h
@@ -30,8 +30,6 @@ enum ipc_command_type {
30 IPC_EVENT_BINDING = ((1<<31) | 5), 30 IPC_EVENT_BINDING = ((1<<31) | 5),
31 IPC_EVENT_SHUTDOWN = ((1<<31) | 6), 31 IPC_EVENT_SHUTDOWN = ((1<<31) | 6),
32 IPC_EVENT_TICK = ((1<<31) | 7), 32 IPC_EVENT_TICK = ((1<<31) | 7),
33 IPC_EVENT_MODIFIER = ((1<<31) | 16),
34 IPC_EVENT_INPUT = ((1<<31) | 17),
35}; 33};
36 34
37#endif 35#endif