1 /* Structure used to hold bitmap data */
2 
3 typedef struct Bitmap_s {
4 	char           *name;	/* The file name */
5 	char           *data;	/* bitmap format data */
6 	int             width;	/* The width */
7 	int             height;	/* And height */
8 	Pixmap          bitmap;	/* The data as a bitmap */
9 	Pixmap          pixmap;	/* The data as a pixmap */
10 	Widget          state_icon;	/* Drag state icon */
11 }               Bitmap_t, *Bitmap_p;
12