Changeset 26471 in vbox
- Timestamp:
- Feb 12, 2010 5:23:50 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vusb.h
r26248 r26471 230 230 VUSBDESCINTERFACE Core; 231 231 /** Pointer to additional descriptor bytes following what's covered by VUSBDESCINTERFACE. */ 232 void *pvMore; 232 const void *pvMore; 233 /** Pointer to additional class- or vendor-specific interface descriptors. */ 234 const void *pvClass; 235 /** Size of class- or vendor-specific descriptors. */ 236 uint16_t cbClass; 233 237 /** Pointer to an array of the endpoints referenced by the interface. 234 238 * Core.bNumEndpoints in size. */ … … 250 254 VUSBDESCENDPOINT Core; 251 255 /** Pointer to additional descriptor bytes following what's covered by VUSBDESCENDPOINT. */ 252 void *pvMore; 256 const void *pvMore; 257 /** Pointer to additional class- or vendor-specific interface descriptors. */ 258 const void *pvClass; 259 /** Size of class- or vendor-specific descriptors. */ 260 uint16_t cbClass; 253 261 } VUSBDESCENDPOINTEX; 254 262 /** Pointer to a parsed USB endpoint descriptor. */
Note:
See TracChangeset
for help on using the changeset viewer.