2011-02-03 04:26:44 +00:00
|
|
|
#ifndef MOUSEKEY_H
|
|
|
|
#define MOUSEKEY_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
void mousekey_decode(uint8_t code);
|
|
|
|
bool mousekey_changed(void);
|
2011-02-10 06:51:30 +00:00
|
|
|
void mousekey_usb_send(void);
|
2011-02-03 04:26:44 +00:00
|
|
|
|
|
|
|
#endif
|
2011-02-10 06:51:30 +00:00
|
|
|
|