Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1176 andrew_pro 1
/*
2
	control button data
3
*/
4
 
5
#define	FLAG_INSERT_BUTTON_ON		0x1;
6
#define	FLAG_INSERT_BUTTON_OFF		0xfe;
7
#define	FLAG_PRESSED_BUTTON_ON		0x2
8
#define	FLAG_PRESSED_BUTTON_OFF		0xfd
9
#define	FLAG_RELEASED_BUTTON_ON		0x4
10
#define	FLAG_RELEASED_BUTTON_OFF		0xfb
11