22 lines
659 B
C
22 lines
659 B
C
|
static unsigned char iconify_bits[] = {
|
||
|
0xff, 0xff, 0x00, 0xff, 0xff, 0x7e, 0x3c, 0x18};
|
||
|
|
||
|
static unsigned char close_bits[] = {
|
||
|
0xc3, 0x66, 0x3c, 0x18, 0x3c, 0x66, 0xc3, 0x00 };
|
||
|
|
||
|
static unsigned char maximize_bits[] = {
|
||
|
0x18, 0x3c, 0x7e, 0xff, 0xff, 0x00, 0xff, 0xff };
|
||
|
|
||
|
static unsigned char minmax_bits[] = {
|
||
|
0x0c, 0x18, 0x33, 0x67, 0xcf, 0x9f, 0x3f, 0x3f};
|
||
|
|
||
|
static unsigned char unsticky_bits[] = {
|
||
|
0x00, 0x18, 0x18, 0x7e, 0x7e, 0x18, 0x18, 0x00};
|
||
|
|
||
|
static unsigned char sticky_bits[] = {
|
||
|
0x00, 0x00, 0x00, 0x7e, 0x7e, 0x00, 0x00, 0x00};
|
||
|
|
||
|
static unsigned char question_bits[] = {
|
||
|
0x3c, 0x66, 0x60, 0x30, 0x18, 0x00, 0x18, 0x18};
|
||
|
|