diff options
author | Drew DeVault <sir@cmpwn.com> | 2016-07-19 17:56:51 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-19 17:56:51 -0400 |
commit | 5de5c3838bf72e74fbf3a863acdfe9827f7ccd7a (patch) | |
tree | 0efc089ba57dfdea9fd98da9639930ef52b01a81 | |
parent | 7e6c67c26c5e481ffef11d031fe72411db45d088 (diff) | |
parent | 0b5391ed772338634c2030bb7b95686d79a43a82 (diff) |
Merge pull request #774 from Hummer12007/eventmasks
Properly construct event bitmasks
-rw-r--r-- | include/ipc.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/include/ipc.h b/include/ipc.h index 21da2be3..496625ce 100644 --- a/include/ipc.h +++ b/include/ipc.h @@ -12,14 +12,14 @@ enum ipc_command_type { IPC_GET_VERSION = 7, IPC_GET_INPUTS = 8, // Events send from sway to clients. Events have the highest bits set. - IPC_EVENT_WORKSPACE = (1 << (31 - 0)), - IPC_EVENT_OUTPUT = (1 << (31 - 1)), - IPC_EVENT_MODE = (1 << (31 - 2)), - IPC_EVENT_WINDOW = (1 << (32 - 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_WORKSPACE = ((1<<31) | 0), + IPC_EVENT_OUTPUT = ((1<<31) | 1), + IPC_EVENT_MODE = ((1<<31) | 2), + 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_SWAY_GET_PIXELS = 0x81 }; |