Changeset 105352 in vbox for trunk/src/VBox/Main/src-client/EmulatedUSBImpl.cpp
- Timestamp:
- Jul 16, 2024 11:21:19 AM (6 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/EmulatedUSBImpl.cpp
r98278 r105352 288 288 HRESULT EUSBWEBCAM::Attach(Console *pConsole, PUVM pUVM, PCVMMR3VTABLE pVMM, const char *pszDriver) 289 289 { 290 int vrc = pVMM->pfnVMR3ReqCallWaitU(pUVM, 0 /* idDstCpu (saved state, see #6232) */, 291 (PFNRT)emulatedWebcamAttach, 4, 290 int vrc = pVMM->pfnVMR3ReqCallWaitU(pUVM, 0 /* idDstCpu (saved state, see #6232) */, (PFNRT)emulatedWebcamAttach, 4, 292 291 pUVM, pVMM, this, pszDriver); 293 292 if (RT_SUCCESS(vrc)) … … 299 298 HRESULT EUSBWEBCAM::Detach(Console *pConsole, PUVM pUVM, PCVMMR3VTABLE pVMM) 300 299 { 301 int vrc = pVMM->pfnVMR3ReqCallWaitU(pUVM, 0 /* idDstCpu (saved state, see #6232) */, 302 (PFNRT)emulatedWebcamDetach, 3, 300 int vrc = pVMM->pfnVMR3ReqCallWaitU(pUVM, 0 /* idDstCpu (saved state, see #6232) */, (PFNRT)emulatedWebcamDetach, 3, 303 301 pUVM, pVMM, this); 304 302 if (RT_SUCCESS(vrc))
Note:
See TracChangeset
for help on using the changeset viewer.