]> git.sur5r.net Git - i3/i3/blob - include/shmlog.h
c513babf698e3e931ecabb011e024dde2a95cba3
[i3/i3] / include / shmlog.h
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2012 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * The format of the shmlog data structure which i3 development versions use by
8  * default (ringbuffer for storing the debug log).
9  *
10  */
11 #ifndef _I3_SHMLOG_H
12 #define _I3_SHMLOG_H
13
14 #include <stdint.h>
15
16 typedef struct i3_shmlog_header {
17     uint32_t offset_next_write;
18     uint32_t offset_last_wrap;
19     uint32_t size;
20 } i3_shmlog_header;
21
22 #endif