wmhexaclock: Add version 0.1 to repository.
[dockapps.git] / wmhexaclock / src / wmgeneral.h
blob48ccacd0768c39681cd0c7ba4f944b1fb5ba8f35
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