button support
[my-code/arm.git] / betty / buttons.h
1 /*
2  * buttons.h - button api header file
3  *
4  * author: hackbard@hackdaworld.org
5  *
6  */
7
8 #ifndef BUTTONS_H
9 #define BUTTONS_H
10
11 /* includes */
12 #include "betty.h"
13
14 /* function prototypes */
15 void button_init(void);
16 unsigned char button_get_event(unsigned long long int *keys,int retries);
17
18 #endif