]> git.scottworley.com Git - tattlekey/blob - client/button.h
client: Rename: send_report -> send_report_packet
[tattlekey] / client / button.h
1 #ifndef BUTTON_H
2 #define BUTTON_H
3
4 typedef void (*callback_t)();
5
6 void begin_listening_for_button_press(callback_t callback);
7
8 #endif