1
0
This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
tmk_keyboard_custom/mousekey.h

13 lines
213 B
C
Raw Normal View History

#ifndef MOUSEKEY_H
#define MOUSEKEY_H
#include <stdbool.h>
2011-02-10 06:51:30 +00:00
#include "host.h"
void mousekey_decode(uint8_t code);
bool mousekey_changed(void);
2011-02-10 06:51:30 +00:00
void mousekey_send(void);
void mousekey_clear_report(void);
#endif