summaryrefslogtreecommitdiff
path: root/include/ipc.h
diff options
context:
space:
mode:
authorDrew DeVault <[email protected]>2016-12-02 16:08:45 -0500
committerDrew DeVault <[email protected]>2016-12-02 16:08:45 -0500
commite9e1a6a409a276310e1015763184641547e7823c (patch)
treee3133eedaa7aa43051c2ce849e2b205d763be83a /include/ipc.h
parent0a1b211e09e9fc82885eaf12c0a3658d36c0bec0 (diff)
Add IPC policy to config
Also reduces enum abuse, cc @minus7
Diffstat (limited to 'include/ipc.h')
-rw-r--r--include/ipc.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/ipc.h b/include/ipc.h
index 496625ce..98390335 100644
--- a/include/ipc.h
+++ b/include/ipc.h
@@ -1,6 +1,8 @@
#ifndef _SWAY_IPC_H
#define _SWAY_IPC_H
+#define event_mask(ev) (1 << (ev & 0x7F))
+
enum ipc_command_type {
IPC_COMMAND = 0,
IPC_GET_WORKSPACES = 1,