ipc: implement output event

This commit is contained in:
Michael Stapelberg
2010-03-19 22:40:43 +01:00
parent 4ce0d6f014
commit aec40126b4
3 changed files with 20 additions and 0 deletions

View File

@ -58,6 +58,10 @@
*/
#define I3_IPC_EVENT_MASK (1 << 31)
/* The workspace event will be triggered upon changes in the workspace list */
#define I3_IPC_EVENT_WORKSPACE (I3_IPC_EVENT_MASK | 0)
/* The output event will be triggered upon changes in the output list */
#define I3_IPC_EVENT_OUTPUT (I3_IPC_EVENT_MASK | 1)
#endif