rsc | f701258 | 2003-11-25 01:40:27 +0000 | [diff] [blame] | 1 | #ifndef _CURSOR_H_ |
2 | #define _CURSOR_H_ 1 | ||||
3 | #if defined(__cplusplus) | ||||
4 | extern "C" { | ||||
5 | #endif | ||||
6 | |||||
rsc | b2cfc4e | 2003-09-30 17:47:41 +0000 | [diff] [blame] | 7 | typedef struct Cursor Cursor; |
8 | struct Cursor | ||||
9 | { | ||||
10 | Point offset; | ||||
11 | uchar clr[2*16]; | ||||
12 | uchar set[2*16]; | ||||
13 | }; | ||||
rsc | f701258 | 2003-11-25 01:40:27 +0000 | [diff] [blame] | 14 | |
15 | #if defined(__cplusplus) | ||||
16 | } | ||||
17 | #endif | ||||
18 | #endif |