mirror of
https://github.com/moparisthebest/tmk_keyboard
synced 2024-11-10 11:25:01 -05:00
2a562a4191
Change build options: Makefile and config.h. See README.
12 lines
166 B
C
12 lines
166 B
C
#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
|
|
|