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