diff options
author | Tomer Shalev <shalev.tomer@gmail.com> | 2009-10-05 06:42:39 +0000 |
---|---|---|
committer | Tomer Shalev <shalev.tomer@gmail.com> | 2009-10-05 06:42:39 +0000 |
commit | 0c379b4b2ef463d90625d7e0c535d45bde6949cb (patch) | |
tree | 588b63dcb69e824cf1fa45b998b0ef435c4baff3 /apps/action.h | |
parent | ce53dd6523c035e6d1e21214c2cd9f615cefdf1e (diff) |
Add USB HID mouse support for H10
- Protect mouse keymaps with #ifdef HAVE_USB_HID_MOUSE
- Add preliminary support for remote mouse mode in iPods, pending P#10623
- Use ACTION_USB_HID_MOUSE_WHEEL_SCROLL_UP/DOWN instead of standard INC/DEC
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22940 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/action.h')
-rw-r--r-- | apps/action.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/action.h b/apps/action.h index 39e3e09d73..24250ef869 100644 --- a/apps/action.h +++ b/apps/action.h @@ -287,6 +287,8 @@ enum { ACTION_USB_HID_MOUSE_BUTTON_LEFT_REL, ACTION_USB_HID_MOUSE_BUTTON_RIGHT, ACTION_USB_HID_MOUSE_BUTTON_RIGHT_REL, + ACTION_USB_HID_MOUSE_WHEEL_SCROLL_UP, + ACTION_USB_HID_MOUSE_WHEEL_SCROLL_DOWN, ACTION_USB_HID_LAST, /* Place holder */ LAST_ACTION_PLACEHOLDER, /* custom actions should be this + something */ |