f9039b2ae2
git-svn-id: file:///fltk/svn/fltk/trunk@2 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
9 lines
341 B
C
9 lines
341 B
C
#define ns_mask_width 16
|
|
#define ns_mask_height 16
|
|
#define ns_mask_x_hot 8
|
|
#define ns_mask_y_hot 8
|
|
static unsigned char ns_mask_bits[] = {
|
|
0x80, 0x01, 0xc0, 0x03, 0xe0, 0x07, 0xf0, 0x0f, 0xf0, 0x0f, 0xc0, 0x03,
|
|
0xc0, 0x03, 0xc0, 0x03, 0xc0, 0x03, 0xc0, 0x03, 0xc0, 0x03, 0xf0, 0x0f,
|
|
0xf0, 0x0f, 0xe0, 0x07, 0xc0, 0x03, 0x80, 0x01};
|