f4469eee0b
open_input_window was slightly different for each of them, so it made no sense to generalize it (then we would end up with a thin and useless wrapper).
12 lines
196 B
C
12 lines
196 B
C
#ifndef _XCB_H
|
|
#define _XCB_H
|
|
|
|
/* from X11/keysymdef.h */
|
|
#define XCB_NUM_LOCK 0xff7f
|
|
|
|
#define xmacro(atom) xcb_atom_t A_ ## atom;
|
|
#include "atoms.xmacro"
|
|
#undef xmacro
|
|
|
|
#endif
|