File: localcursor.bitmap

package info (click to toggle)
netrek-client-cow 3.3.0-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 6,196 kB
  • ctags: 5,158
  • sloc: ansic: 43,111; sh: 2,820; python: 380; makefile: 133; sed: 16
file content (22 lines) | stat: -rw-r--r-- 798 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#define localcursor_width 11
#define localcursor_height 11
#define localcursor_x_hot 5
#define localcursor_y_hot 5
#ifndef WIN32
static char localcursor_bits[] = {
   0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
   0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; 
#else
/* doesn't work under X */
static char localcursor_bits[] = {
   0x20, 0x00, 0x20, 0x00, 0x24, 0x01, 0x20, 0x00, 0x20, 0x00, 0xdf, 0x07,
   0x20, 0x00, 0x20, 0x00, 0x24, 0x01, 0x20, 0x00, 0x20, 0x00};
#endif

#define localmask_width 11
#define localmask_height 11
#define localmask_x_hot 5
#define localmask_y_hot 5
static char localmask_bits[] = {
   0x20, 0x00, 0x20, 0x00, 0x24, 0x01, 0x20, 0x00, 0x20, 0x00, 0xdf, 0x07,
   0x20, 0x00, 0x20, 0x00, 0x24, 0x01, 0x20, 0x00, 0x20, 0x00};