diff options
Diffstat (limited to 'win.h')
-rw-r--r-- | win.h | 29 |
1 files changed, 29 insertions, 0 deletions
@@ -0,0 +1,29 @@ | |||
1 | /* See LICENSE for license details. */ | ||
2 | |||
3 | /* X modifiers */ | ||
4 | #define XK_ANY_MOD UINT_MAX | ||
5 | #define XK_NO_MOD 0 | ||
6 | #define XK_SWITCH_MOD (1<<13) | ||
7 | |||
8 | typedef XftGlyphFontSpec GlyphFontSpec; | ||
9 | |||
10 | void draw(void); | ||
11 | void drawregion(int, int, int, int); | ||
12 | void run(void); | ||
13 | |||
14 | void xbell(int); | ||
15 | void xclipcopy(void); | ||
16 | void xclippaste(void); | ||
17 | void xhints(void); | ||
18 | void xinit(void); | ||
19 | void xloadcols(void); | ||
20 | int xsetcolorname(int, const char *); | ||
21 | void xloadfonts(char *, double); | ||
22 | void xsetenv(void); | ||
23 | void xsettitle(char *); | ||
24 | void xsetpointermotion(int); | ||
25 | void xseturgency(int); | ||
26 | void xunloadfonts(void); | ||
27 | void xresize(int, int); | ||
28 | void xselpaste(void); | ||
29 | unsigned long xwinid(void); | ||