i3
|
00001 /* 00002 * vim:ts=4:sw=4:expandtab 00003 * 00004 * i3 - an improved dynamic tiling window manager 00005 * © 2009-2012 Michael Stapelberg and contributors (see also: LICENSE) 00006 * 00007 * The format of the shmlog data structure which i3 development versions use by 00008 * default (ringbuffer for storing the debug log). 00009 * 00010 */ 00011 #ifndef _I3_SHMLOG_H 00012 #define _I3_SHMLOG_H 00013 00014 #include <stdint.h> 00015 00016 typedef struct i3_shmlog_header { 00017 uint32_t offset_next_write; 00018 uint32_t offset_last_wrap; 00019 uint32_t size; 00020 } i3_shmlog_header; 00021 00022 #endif