ipc: remove extraneous values

Removes IPC_EVENT_MODIFIER and IPC_EVENT_INPUT, which were sway-specific and unused
This commit is contained in:
Ian Fan 2018-08-01 16:22:06 +01:00
parent 03eaf444a4
commit 46cfa8ff56
2 changed files with 0 additions and 4 deletions

View file

@ -30,8 +30,6 @@ enum ipc_command_type {
IPC_EVENT_BINDING = ((1<<31) | 5),
IPC_EVENT_SHUTDOWN = ((1<<31) | 6),
IPC_EVENT_TICK = ((1<<31) | 7),
IPC_EVENT_MODIFIER = ((1<<31) | 16),
IPC_EVENT_INPUT = ((1<<31) | 17),
};
#endif