diff options
author | tmk <nobody@nowhere> | 2010-10-01 22:17:55 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2010-10-01 22:17:55 +0900 |
commit | 7e3975e0ef00b2095e32595597ba054d408f249c (patch) | |
tree | 572c5df747df8b29dfffd2dbe26adc4606a29c54 /usb_mouse.h | |
parent | d3b1af9572e123c939fc355474bf12402c86d292 (diff) |
add mouse wheel function.
Diffstat (limited to 'usb_mouse.h')
-rw-r--r-- | usb_mouse.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usb_mouse.h b/usb_mouse.h index f1f39776f7..81edabcbfb 100644 --- a/usb_mouse.h +++ b/usb_mouse.h @@ -15,6 +15,6 @@ extern uint8_t mouse_protocol; int8_t usb_mouse_buttons(uint8_t left, uint8_t middle, uint8_t right); -int8_t usb_mouse_move(int8_t x, int8_t y, int8_t wheel); +int8_t usb_mouse_move(int8_t x, int8_t y, int8_t wheel, int8_t hwheel); #endif |