Strip off version numbers from dir name
[dockapps.git] / wmweather+ / wmgeneral / wmgeneral-x11.h
blob1b5163935673a41bb022b2633e5009c67e2658bb
1 #ifndef WMGENERAL_X11_H_INCLUDED
2 #define WMGENERAL_X11_H_INCLUDED
4 #include <X11/xpm.h>
6 /************/
7 /* Typedefs */
8 /************/
10 typedef struct {
11 Pixmap pixmap;
12 Pixmap mask;
13 XpmAttributes attributes;
14 } XpmIcon;
16 /*******************/
17 /* Global variable */
18 /*******************/
20 Display *display;
22 /***********************/
23 /* Function Prototypes */
24 /***********************/
26 void openDockWindow(int argc, char *argv[], char **, char *, int, int);
27 void RedrawWindow(void);
28 void RedrawWindowXY(int x, int y);
30 Pixel GetColor(char *);
31 void GetXPM(XpmIcon *, char **);
32 void createXBMfromXPM(char *, char **, int, int);
33 void copyPixmapArea(int, int, int, int, int, int);
34 void copyMaskArea(int, int, int, int, int, int);
35 void setMaskXY(int, int);
37 #endif