d5275012b4
This makes x(un)loadfonts internal to x.c. Needed to reorder includes and move a typedef to keep the compiler happy. Signed-off-by: Devin J. Pohly <djpohly@gmail.com>
26 lines
570 B
C
26 lines
570 B
C
/* See LICENSE for license details. */
|
|
|
|
/* X modifiers */
|
|
#define XK_ANY_MOD UINT_MAX
|
|
#define XK_NO_MOD 0
|
|
#define XK_SWITCH_MOD (1<<13)
|
|
|
|
void draw(void);
|
|
void drawregion(int, int, int, int);
|
|
|
|
void xbell(int);
|
|
void xclipcopy(void);
|
|
void xclippaste(void);
|
|
void xhints(void);
|
|
void xloadcols(void);
|
|
int xsetcolorname(int, const char *);
|
|
void xsettitle(char *);
|
|
void xsetpointermotion(int);
|
|
void xseturgency(int);
|
|
void xresize(int, int);
|
|
void xselpaste(void);
|
|
void xsetsel(char *, Time);
|
|
void zoom(const Arg *);
|
|
void zoomabs(const Arg *);
|
|
void zoomreset(const Arg *);
|