This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
2011-01-02 14:52:13 +00:00
|
|
|
#ifndef MOUSEKEY_H
|
|
|
|
#define MOUSEKEY_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
2011-02-10 06:51:30 +00:00
|
|
|
#include "host.h"
|
2011-01-02 14:52:13 +00:00
|
|
|
|
|
|
|
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);
|
2011-01-02 14:52:13 +00:00
|
|
|
|
|
|
|
#endif
|