i3
Main Page
Data Structures
Files
File List
Globals
include
shmlog.h
Go to the documentation of this file.
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
Generated by
1.8.1.1