blob: c5d4561cdf22e6e2ea73d1faf2c0cf2ab2637491 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef MOUSEKEY_H
#define MOUSEKEY_H
#include <stdbool.h>
void mousekey_decode(uint8_t code);
bool mousekey_changed(void);
void mousekey_usb_send(void);
#endif
|