Changeset 5514 in vbox
- Timestamp:
- Oct 26, 2007 2:15:16 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 25724
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vusb.h
r5185 r5514 30 30 #define VUSB_BUS_HZ 12000000 31 31 32 /** @name USB Standard version flags.32 /** @name USB Standard version 33 33 * @{ */ 34 /** Indicates USB 1.1 support. */ 35 #define VUSB_STDVER_11 BIT(1) 36 /** Indicates USB 2.0 support. */ 37 #define VUSB_STDVER_20 BIT(2) 34 typedef enum VUSBREVISION 35 { 36 /** Indicates USB 1.1 support. */ 37 VUSBREVISION_11 = 0x10, 38 /** Indicates USB 2.0 support. */ 39 VUSBREVISION_20 = 0x20 40 } VUSBREVISION; 38 41 /** @} */ 39 42 … … 81 84 */ 82 85 DECLR3CALLBACKMEMBER(unsigned, pfnGetAvailablePorts,(PVUSBIROOTHUBPORT pInterface, PVUSBPORTBITMAP pAvailable)); 86 87 /** 88 * Get the supported USB revision 89 * 90 * @returns The supported revision 91 * @param pInterface Pointer to this structure. 92 */ 93 DECLR3CALLBACKMEMBER(VUSBREVISION, pfnGetRevision, (PVUSBIROOTHUBPORT pInterface)); 83 94 84 95 /**
Note:
See TracChangeset
for help on using the changeset viewer.