Changeset 5a6cc679 in mainline for uspace/app/vuhid/virthid.h
- Timestamp:
- 2018-01-31T02:21:24Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a0a9cc2
- Parents:
- 132ab5d1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/vuhid/virthid.h
r132ab5d1 r5a6cc679 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.