Changes in uspace/app/vuhid/virthid.h [d1974966:b7fd2a0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/vuhid/virthid.h
rd1974966 rb7fd2a0 70 70 size_t out_data_size; 71 71 72 int (*on_data_in)(vuhid_interface_t *, void *, size_t, size_t *);73 int (*on_data_out)(vuhid_interface_t *, const void *, size_t);72 errno_t (*on_data_in)(vuhid_interface_t *, void *, size_t, size_t *); 73 errno_t (*on_data_out)(vuhid_interface_t *, const void *, size_t); 74 74 void (*live)(vuhid_interface_t *); 75 75 … … 114 114 } __attribute__ ((packed)) hid_descriptor_t; 115 115 116 int add_interface_by_id(vuhid_interface_t **, const char *, usbvirt_device_t *);116 errno_t add_interface_by_id(vuhid_interface_t **, const char *, usbvirt_device_t *); 117 117 void wait_for_interfaces_death(usbvirt_device_t *); 118 118 119 119 void interface_life_live(vuhid_interface_t *); 120 int interface_live_on_data_in(vuhid_interface_t *, void *, size_t, size_t *);120 errno_t interface_live_on_data_in(vuhid_interface_t *, void *, size_t, size_t *); 121 121 122 122
Note:
See TracChangeset
for help on using the changeset viewer.