Changeset 26248 in vbox for trunk/include/VBox
- Timestamp:
- Feb 5, 2010 12:01:38 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 57304
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pdmusb.h
r26182 r26248 56 56 * 57 57 * This structure is owned by the USB device but provided to the PDM/VUSB layer 58 * thru the PDMUSBREG::pfnGetDescriptorCache method. PDM/VUSB will use the58 * thru the PDMUSBREG::pfnGetDescriptorCache method. PDM/VUSB will use the 59 59 * information here to map addresses to endpoints, perform SET_CONFIGURATION 60 60 * requests, and optionally perform GET_DESCRIPTOR requests (see flag). -
trunk/include/VBox/vusb.h
r26112 r26248 198 198 /** Pointer to an array of the interfaces referenced in the configuration. 199 199 * Core.bNumInterfaces in size. */ 200 const struct VUSBINTERFACE * iface;200 const struct VUSBINTERFACE *paIfs; 201 201 } VUSBDESCCONFIGEX; 202 202 /** Pointer to a parsed USB configuration descriptor. */ … … 212 212 { 213 213 /** Pointer to an array of interfaces. */ 214 const struct VUSBDESCINTERFACEEX * setting;214 const struct VUSBDESCINTERFACEEX *paSettings; 215 215 /** The number of entries in the array. */ 216 u nsigned int num_settings;216 uint32_t cSettings; 217 217 } VUSBINTERFACE; 218 218 /** Pointer to a VUSBINTERFACE. */ … … 233 233 /** Pointer to an array of the endpoints referenced by the interface. 234 234 * Core.bNumEndpoints in size. */ 235 const struct VUSBDESCENDPOINTEX * endpoint;235 const struct VUSBDESCENDPOINTEX *paEndpoints; 236 236 } VUSBDESCINTERFACEEX; 237 237 /** Pointer to an prased USB interface descriptor. */ … … 1010 1010 1011 1011 /** The magic value of a valid VUSBURB. (Murakami Haruki) */ 1012 #define VUSBURB_MAGIC 0x194901121012 #define VUSBURB_MAGIC UINT32_C(0x19490112) 1013 1013 1014 1014 /** @} */
Note:
See TracChangeset
for help on using the changeset viewer.