9 lines
252 B
C
9 lines
252 B
C
#ifndef buttonHandler_h_included
|
|
#define buttonHandler_h_included
|
|
|
|
typedef void (*button_press_callback)(int numberPressed);
|
|
|
|
extern void init_button_handler();
|
|
extern void add_button_press_callback(int numberPressed, button_press_callback cb);
|
|
|
|
#endif |