Blob


1 #ifndef _CURSOR_H_
2 #define _CURSOR_H_ 1
3 #if defined(__cplusplus)
4 extern "C" {
5 #endif
7 typedef struct Cursor Cursor;
8 struct Cursor
9 {
10 Point offset;
11 uchar clr[2*16];
12 uchar set[2*16];
13 };
15 #if defined(__cplusplus)
16 }
17 #endif
18 #endif