1#define mapcursor_width 11
2#define mapcursor_height 11
3#define mapcursor_x_hot 5
4#define mapcursor_y_hot 5
5#ifndef WIN32
6static char mapcursor_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 mapcursor_bits[] = {
12   0x01, 0x04, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x70, 0x00,
13   0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x02, 0x01, 0x04};
14#endif
15
16#define mapmask_width 11
17#define mapmask_height 11
18#define mapmask_x_hot 5
19#define mapmask_y_hot 5
20static char mapmask_bits[] = {
21   0x01, 0x04, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x70, 0x00,
22   0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x02, 0x01, 0x04};
23