1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
/* * Bitmap image handling function bits */ #ifndef _CTWM_IMAGE_BITMAP_H #define _CTWM_IMAGE_BITMAP_H #include <stdio.h> #include <stdlib.h> #include <string.h> #include <X11/X.h> #include "types.h" Image *GetBitmapImage(const char *name, ColorPair cp); Pixmap GetBitmap(const char *name); /* Used for cursors */ extern int HotX, HotY; #endif /* _CTWM_IMAGE_BITMAP_H */ |