Changeset 33590 in vbox for trunk/src/VBox/Devices/USB
- Timestamp:
- Oct 29, 2010 8:55:09 AM (14 years ago)
- Location:
- trunk/src/VBox/Devices/USB
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/USB/USBProxyDevice.cpp
r33540 r33590 781 781 pThis->pOps = &g_USBProxyDeviceHost; 782 782 else 783 #ifdef VBOX_WITH_VRDP784 783 pThis->pOps = &g_USBProxyDeviceVRDP; 785 #else786 return VERR_NOT_SUPPORTED;787 #endif788 784 rc = pThis->pOps->pfnOpen(pThis, szAddress, pvBackend); 789 785 if (RT_FAILURE(rc)) -
trunk/src/VBox/Devices/USB/USBProxyDevice.h
r33540 r33590 140 140 /** The Host backend. */ 141 141 extern const USBPROXYBACK g_USBProxyDeviceHost; 142 #ifdef VBOX_WITH_VRDP 143 /** The VRDP backend. */ 142 /** The remote desktop backend. */ 144 143 extern const USBPROXYBACK g_USBProxyDeviceVRDP; 145 #endif /* VBOX_WITH_VRDP */146 144 147 145 #ifdef RDESKTOP … … 211 209 RTFILE File; 212 210 int fd; 213 #ifdef VBOX_WITH_VRDP214 211 struct vrdp_priv 215 212 { … … 217 214 void *pDevice; 218 215 } vrdp; 219 #endif /* VBOX_WITH_VRDP */220 216 } Backend; 221 217 } USBPROXYDEV;
Note:
See TracChangeset
for help on using the changeset viewer.