forked from KolibriOS/kolibrios
12 lines
253 B
C
12 lines
253 B
C
|
/*
|
||
|
control button data
|
||
|
*/
|
||
|
|
||
|
#define FLAG_INSERT_BUTTON_ON 0x1;
|
||
|
#define FLAG_INSERT_BUTTON_OFF 0xfe;
|
||
|
#define FLAG_PRESSED_BUTTON_ON 0x2
|
||
|
#define FLAG_PRESSED_BUTTON_OFF 0xfd
|
||
|
#define FLAG_RELEASED_BUTTON_ON 0x4
|
||
|
#define FLAG_RELEASED_BUTTON_OFF 0xfb
|
||
|
|