1 #ifndef WMGENERAL_H_INCLUDED
2 #define WMGENERAL_H_INCLUDED
3 
4 
5 
6 /*
7  *   Typedefs
8  */
9 typedef struct {
10 	Pixmap		pixmap;
11 	Pixmap		mask;
12 	XpmAttributes	attributes;
13 } XpmIcon;
14 
15 
16 
17 
18 
19 
20 
21 
22 
23 /*
24  *   Function Prototypes
25  */
26 void 		AddMouseRegion(int, int, int, int, int);
27 int  		CheckMouseRegion(int, int);
28 Window		openXwindow(int, char **, char **, char *, int, int);
29 void 		initXwindow(int, char **);
30 void 		RedrawWindow(void);
31 void 		RedrawWindowXY(int, int);
32 void  		copyXPMArea(int, int, int, int, int, int);
33 void  		copyXBMArea(int, int, int, int, int, int);
34 void  		setMaskXY(int, int);
35 unsigned long 	getColor(char *, float);
36 void 		RedrawWindow(void);
37 
38 
39 #endif
40