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