Changeset 53062 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Oct 15, 2014 12:34:18 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 96564
- Location:
- trunk/include/VBox/vmm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmdrv.h
r46788 r53062 508 508 * 509 509 * @returns VBox status code. 510 * @param pDrvIns The hub instance. 511 * @param pUsbIns The device to attach. 512 * @param piPort Where to store the port number the device was attached to. 510 * @param pDrvIns The hub instance. 511 * @param pUsbIns The device to attach. 512 * @param pszCaptureFilename Path to the file for USB traffic capturing, optional. 513 * @param piPort Where to store the port number the device was attached to. 513 514 * @thread EMT. 514 515 */ 515 DECLR3CALLBACKMEMBER(int, pfnAttachDevice,(PPDMDRVINS pDrvIns, PPDMUSBINS pUsbIns, uint32_t *piPort));516 DECLR3CALLBACKMEMBER(int, pfnAttachDevice,(PPDMDRVINS pDrvIns, PPDMUSBINS pUsbIns, const char *pszCaptureFilename, uint32_t *piPort)); 516 517 517 518 /** … … 537 538 538 539 /** Current PDMUSBHUBREG version number. */ 539 #define PDM_USBHUBREG_VERSION PDM_VERSION_MAKE(0xf0fd, 1, 0)540 #define PDM_USBHUBREG_VERSION PDM_VERSION_MAKE(0xf0fd, 2, 0) 540 541 541 542 -
trunk/include/VBox/vmm/pdmusb.h
r51290 r53062 1058 1058 typedef DECLCALLBACK(int) FNPDMVBOXUSBREGISTER(PCPDMUSBREGCB pCallbacks, uint32_t u32Version); 1059 1059 1060 VMMR3DECL(int) PDMR3UsbCreateEmulatedDevice(PUVM pUVM, const char *pszDeviceName, PCFGMNODE pDeviceNode, PCRTUUID pUuid); 1060 VMMR3DECL(int) PDMR3UsbCreateEmulatedDevice(PUVM pUVM, const char *pszDeviceName, PCFGMNODE pDeviceNode, PCRTUUID pUuid, 1061 const char *pszCaptureFilename); 1061 1062 VMMR3DECL(int) PDMR3UsbCreateProxyDevice(PUVM pUVM, PCRTUUID pUuid, bool fRemote, const char *pszAddress, void *pvBackend, 1062 uint32_t iUsbVersion, uint32_t fMaskedIfs );1063 uint32_t iUsbVersion, uint32_t fMaskedIfs, const char *pszCaptureFilename); 1063 1064 VMMR3DECL(int) PDMR3UsbDetachDevice(PUVM pUVM, PCRTUUID pUuid); 1064 1065 VMMR3DECL(bool) PDMR3UsbHasHub(PUVM pUVM);
Note:
See TracChangeset
for help on using the changeset viewer.