Changeset a6add7a in mainline for uspace/drv/usbmouse/mouse.h
- Timestamp:
- 2011-03-04T23:35:22Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 960bee9
- Parents:
- d78a32f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbmouse/mouse.h
rd78a32f ra6add7a 43 43 #define NAME "usbmouse" 44 44 45 /** Container for USB mouse device. */ 45 46 typedef struct { 47 /** Generic device container. */ 46 48 ddf_dev_t *device; 49 /** Function representing the device. */ 47 50 ddf_fun_t *mouse_fun; 51 /** Representation of connection to the device. */ 48 52 usb_device_connection_t wire; 53 /** Default (zero) control pipe. */ 49 54 usb_endpoint_pipe_t ctrl_pipe; 55 /** Polling (in) pipe. */ 50 56 usb_endpoint_pipe_t poll_pipe; 57 /** Polling interval in microseconds. */ 51 58 suseconds_t poll_interval_us; 59 /** IPC phone to console (consumer). */ 52 60 int console_phone; 53 61 } usb_mouse_t;
Note:
See TracChangeset
for help on using the changeset viewer.