diff options
Diffstat (limited to 'usb-i2c-sl018/eventqueue.h')
-rw-r--r-- | usb-i2c-sl018/eventqueue.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/usb-i2c-sl018/eventqueue.h b/usb-i2c-sl018/eventqueue.h index 865fa05..bd60581 100644 --- a/usb-i2c-sl018/eventqueue.h +++ b/usb-i2c-sl018/eventqueue.h @@ -24,5 +24,10 @@ #ifndef R3TUER_eventqueue_h_INCLUDED #define R3TUER_eventqueue_h_INCLUDED +typedef enum { none } event_t; + +void eventqueue_init(void); +event_t eventqueue_pop(void); +void eventqueue_push(event_t); #endif |