13 lines
376 B
C
13 lines
376 B
C
/* blank_pixmap.h */
|
|
|
|
#ifndef blank_pixmap_h
|
|
#define blank_pixmap_h
|
|
|
|
#define blank_pixmap_width 16
|
|
#define blank_pixmap_height 16
|
|
static char blank_pixmap_bits[] = {
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
|
|
|
|
#endif
|