Add HIDMousebutton

This commit is contained in:
shinyquagsire23 2017-11-20 02:27:21 -07:00
parent fc71b06161
commit 472c408288

View File

@ -3,6 +3,15 @@
// Begin enums
typedef enum
{
MOUSE_LEFT = BIT(0),
MOUSE_RIGHT = BIT(1),
MOUSE_MIDDLE = BIT(2),
MOUSE_FORWARD = BIT(3),
MOUSE_BACK = BIT(4),
} HIDMouseButton;
typedef enum
{
KBD_MOD_LCTRL = BIT(0),