Changeset d1e580a in mainline for uspace/drv/bus/usb/usbhid/mouse/mousedev.h
- Timestamp:
- 2012-07-29T03:07:52Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 10334c2e
- Parents:
- d7c8e39f (diff), b2ba418 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/usbhid/mouse/mousedev.h
rd7c8e39f rd1e580a 42 42 struct usb_hid_dev; 43 43 44 /*----------------------------------------------------------------------------*/ 44 45 45 46 46 /** Container for USB mouse device. */ 47 47 typedef struct { 48 /** IPC session to cons ole (consumer). */48 /** IPC session to consumer. */ 49 49 async_sess_t *mouse_sess; 50 50 … … 53 53 size_t buttons_count; 54 54 55 ddf_dev_ops_t ops;56 55 /* DDF mouse function */ 57 56 ddf_fun_t *mouse_fun; 58 57 } usb_mouse_t; 59 58 60 /*----------------------------------------------------------------------------*/ 59 61 60 62 61 extern const usb_endpoint_description_t usb_hid_mouse_poll_endpoint_description; … … 65 64 const char *HID_MOUSE_CATEGORY; 66 65 67 /*----------------------------------------------------------------------------*/ 66 68 67 69 68 int usb_mouse_init(struct usb_hid_dev *hid_dev, void **data); … … 75 74 int usb_mouse_set_boot_protocol(struct usb_hid_dev *hid_dev); 76 75 77 /*----------------------------------------------------------------------------*/ 76 78 77 79 78 #endif // USB_HID_MOUSEDEV_H_
Note:
See TracChangeset
for help on using the changeset viewer.