13 lines
376 B
C
13 lines
376 B
C
/* check_pixmap.h */
|
|
|
|
#ifndef check_pixmap_h
|
|
#define check_pixmap_h
|
|
|
|
#define check_pixmap_width 16
|
|
#define check_pixmap_height 16
|
|
static char check_pixmap_bits[] = {
|
|
0x00, 0xf0, 0x00, 0x70, 0x00, 0x78, 0x00, 0x38, 0x00, 0x3c, 0x01, 0x1c,
|
|
0x03, 0x0e, 0x03, 0x0e, 0x07, 0x07, 0x07, 0x07, 0x8f, 0x03, 0x9e, 0x01,
|
|
0xfc, 0x01, 0xf8, 0x00, 0xf0, 0x00, 0x60, 0x00};
|
|
|
|
#endif
|