Changes in uspace/drv/usbmouse/mouse.h [a6add7a:21bb58d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbmouse/mouse.h
ra6add7a r21bb58d 43 43 #define NAME "usbmouse" 44 44 45 /** Container for USB mouse device. */46 45 typedef struct { 47 /** Generic device container. */48 46 ddf_dev_t *device; 49 /** Function representing the device. */50 47 ddf_fun_t *mouse_fun; 51 /** Representation of connection to the device. */52 48 usb_device_connection_t wire; 53 /** Default (zero) control pipe. */54 49 usb_endpoint_pipe_t ctrl_pipe; 55 /** Polling (in) pipe. */56 50 usb_endpoint_pipe_t poll_pipe; 57 /** Polling interval in microseconds. */58 51 suseconds_t poll_interval_us; 59 /** IPC phone to console (consumer). */60 52 int console_phone; 61 53 } usb_mouse_t;
Note:
See TracChangeset
for help on using the changeset viewer.