Changeset 59117 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Dec 14, 2015 2:04:37 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PDMUsb.cpp
r58126 r59117 983 983 * @param pUVM The user mode VM handle. 984 984 * @param pUuid The UUID to be associated with the device. 985 * @param fRemote Whether it's a remove or local device.985 * @param pszBackend The proxy backend to use. 986 986 * @param pszAddress The address string. 987 987 * @param pvBackend Pointer to the backend. … … 990 990 * @param pszCaptureFilename Path to the file for USB traffic capturing, optional. 991 991 */ 992 VMMR3DECL(int) PDMR3UsbCreateProxyDevice(PUVM pUVM, PCRTUUID pUuid, bool fRemote, const char *pszAddress, void *pvBackend,992 VMMR3DECL(int) PDMR3UsbCreateProxyDevice(PUVM pUVM, PCRTUUID pUuid, const char *pszBackend, const char *pszAddress, void *pvBackend, 993 993 uint32_t iUsbVersion, uint32_t fMaskedIfs, const char *pszCaptureFilename) 994 994 { … … 1040 1040 rc = RTUuidToStr(pUuid, &szUuid[0], sizeof(szUuid)); AssertRCBreak(rc); 1041 1041 rc = CFGMR3InsertString(pConfig, "UUID", szUuid); AssertRCBreak(rc); 1042 rc = CFGMR3Insert Integer(pConfig, "Remote", fRemote);AssertRCBreak(rc);1042 rc = CFGMR3InsertString(pConfig, "Backend", pszBackend); AssertRCBreak(rc); 1043 1043 rc = CFGMR3InsertInteger(pConfig, "USBVersion", iUsbVersion); AssertRCBreak(rc); 1044 1044 rc = CFGMR3InsertInteger(pConfig, "pvBackend", (uintptr_t)pvBackend); AssertRCBreak(rc);
Note:
See TracChangeset
for help on using the changeset viewer.