aboutsummaryrefslogtreecommitdiff
path: root/include/ipc.h
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2018-07-13 16:58:45 +0100
committerFurkan Sahin <furkan-dev@proton.me>2018-07-13 16:58:45 +0100
commite862476b3d8996a3213a745d6bb7b4498be075f2 (patch)
tree923ad08e8bd5b658283e5c39507b6e649b2f9777 /include/ipc.h
parent4237db6daefd462b0b40188d6eb2ce3765d27328 (diff)
ipc: add shutdown event
Diffstat (limited to 'include/ipc.h')
-rw-r--r--include/ipc.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/ipc.h b/include/ipc.h
index 0010718b..ffc57d1b 100644
--- a/include/ipc.h
+++ b/include/ipc.h
@@ -27,8 +27,9 @@ enum ipc_command_type {
IPC_EVENT_WINDOW = ((1<<31) | 3),
IPC_EVENT_BARCONFIG_UPDATE = ((1<<31) | 4),
IPC_EVENT_BINDING = ((1<<31) | 5),
- IPC_EVENT_MODIFIER = ((1<<31) | 6),
- IPC_EVENT_INPUT = ((1<<31) | 7),
+ IPC_EVENT_SHUTDOWN = ((1<<31) | 6),
+ IPC_EVENT_MODIFIER = ((1<<31) | 16),
+ IPC_EVENT_INPUT = ((1<<31) | 17),
};
#endif