You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#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
|