mirror of
https://github.com/moparisthebest/tmk_keyboard
synced 2024-11-11 03:45:04 -05:00
13 lines
213 B
C
13 lines
213 B
C
#ifndef MOUSEKEY_H
|
|
#define MOUSEKEY_H
|
|
|
|
#include <stdbool.h>
|
|
#include "host.h"
|
|
|
|
void mousekey_decode(uint8_t code);
|
|
bool mousekey_changed(void);
|
|
void mousekey_send(void);
|
|
void mousekey_clear_report(void);
|
|
|
|
#endif
|