washerdryer: Use pkg-config for GTK build flags.
[dockapps.git] / wmhexaclock / src / wmgeneral.h
blob1fd1c233932441a9830e7d6f9868728688017bd8
1 #ifndef WMGENERAL_H_INCLUDED
2 #define WMGENERAL_H_INCLUDED
5 typedef struct {
6 Pixmap pixmap;
7 Pixmap mask;
8 XpmAttributes attributes;
9 } XpmIcon;
11 /* Global variable */
12 Display *display;
13 Window Root;
14 GC NormalGC;
15 XpmIcon wmgen;
16 XpmIcon wmnumbers;
17 XpmIcon wmempty;
19 /* Function Prototypes */
20 void openXwindow(int argc, char *argv[], char **, char **, char *, int, int);
21 void RedrawWindow(void);
22 void copyXPMArea(int, int, int, int, int, int);
23 void cleanXPMArea();
25 #endif