Release 941017
[wine/gsoc-2012-control.git] / include / cursor.h
blobc70df90728d2ace9951655952f9f64eef0329300
1 /*
2 * structure definitions for CURSOR
4 * Copyright Martin Ayotte, 1993
6 */
8 typedef struct {
9 BYTE Width;
10 BYTE Reserved1;
11 BYTE Height;
12 BYTE Reserved2;
13 WORD curXHotspot;
14 WORD curYHotspot;
15 DWORD curDIBSize;
16 DWORD curDIBOffset;
17 } CURSORDESCRIP;
19 typedef struct {
20 CURSORDESCRIP descriptor;
21 HBITMAP hBitmap;
22 Display *display;
23 Pixmap pixshape;
24 Pixmap pixmask;
25 Cursor xcursor;
26 } CURSORALLOC;