blob: d53baf81d840fdda6054baeb569183dfb8ba5113 [file] [log] [blame]
rscf7012582003-11-25 01:40:27 +00001#ifndef _CURSOR_H_
2#define _CURSOR_H_ 1
3#if defined(__cplusplus)
4extern "C" {
5#endif
6
rscb2cfc4e2003-09-30 17:47:41 +00007typedef struct Cursor Cursor;
8struct Cursor
9{
10 Point offset;
11 uchar clr[2*16];
12 uchar set[2*16];
13};
rscf7012582003-11-25 01:40:27 +000014
15#if defined(__cplusplus)
16}
17#endif
18#endif