mirror of
https://github.com/Cian-H/qmk_firmware.git
synced 2026-04-29 20:41:44 +01:00
12 lines
166 B
Plaintext
12 lines
166 B
Plaintext
#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
|
|
|