diff options
Diffstat (limited to 'win.h')
-rw-r--r-- | win.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -23,12 +23,12 @@ enum win_mode { | |||
23 | |MODE_MOUSEMANY, | 23 | |MODE_MOUSEMANY, |
24 | }; | 24 | }; |
25 | 25 | ||
26 | void draw(void); | ||
27 | void drawregion(int, int, int, int); | ||
28 | |||
29 | void xbell(void); | 26 | void xbell(void); |
30 | void xclipcopy(void); | 27 | void xclipcopy(void); |
28 | void xdrawcursor(void); | ||
29 | void xdrawline(Line, int, int, int); | ||
31 | void xhints(void); | 30 | void xhints(void); |
31 | void xfinishdraw(void); | ||
32 | void xloadcols(void); | 32 | void xloadcols(void); |
33 | int xsetcolorname(int, const char *); | 33 | int xsetcolorname(int, const char *); |
34 | void xsettitle(char *); | 34 | void xsettitle(char *); |
@@ -36,3 +36,4 @@ int xsetcursor(int); | |||
36 | void xsetmode(int, unsigned int); | 36 | void xsetmode(int, unsigned int); |
37 | void xsetpointermotion(int); | 37 | void xsetpointermotion(int); |
38 | void xsetsel(char *); | 38 | void xsetsel(char *); |
39 | int xstartdraw(void); | ||