1#define localcursor_width 11
2#define localcursor_height 11
3#define localcursor_x_hot 5
4#define localcursor_y_hot 5
5#ifndef WIN32
6static char localcursor_bits[] = {
7   0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
8   0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
9#else
10/* doesn't work under X */
11static char localcursor_bits[] = {
12   0x20, 0x00, 0x20, 0x00, 0x24, 0x01, 0x20, 0x00, 0x20, 0x00, 0xdf, 0x07,
13   0x20, 0x00, 0x20, 0x00, 0x24, 0x01, 0x20, 0x00, 0x20, 0x00};
14#endif
15
16#define localmask_width 11
17#define localmask_height 11
18#define localmask_x_hot 5
19#define localmask_y_hot 5
20static char localmask_bits[] = {
21   0x20, 0x00, 0x20, 0x00, 0x24, 0x01, 0x20, 0x00, 0x20, 0x00, 0xdf, 0x07,
22   0x20, 0x00, 0x20, 0x00, 0x24, 0x01, 0x20, 0x00, 0x20, 0x00};
23