comparison src/offix.c @ 211:78478c60bfcd r20-4b4

Import from CVS: tag r20-4b4
author cvs
date Mon, 13 Aug 2007 10:05:51 +0200
parents acd284d43ca1
children 12579d965149
comparison
equal deleted inserted replaced
210:49f55ca3ba57 211:78478c60bfcd
54 * CursorData contains all the data for the cursors bitmaps 54 * CursorData contains all the data for the cursors bitmaps
55 *==========================================================================*/ 55 *==========================================================================*/
56 typedef struct 56 typedef struct
57 { 57 {
58 int Width,Height; 58 int Width,Height;
59 char *ImageData,*MaskData; 59 unsigned char *ImageData,*MaskData;
60 int HotSpotX,HotSpotY; 60 int HotSpotX,HotSpotY;
61 Pixmap ImagePixmap,MaskPixmap; 61 Pixmap ImagePixmap,MaskPixmap;
62 Cursor CursorID; 62 Cursor CursorID;
63 } CursorData; 63 } CursorData;
64 64