Changeset 102519 in vbox for trunk/src/VBox/Devices/Input/testcase/tstUsbMouse.cpp
- Timestamp:
- Dec 7, 2023 11:53:39 AM (12 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Input/testcase/tstUsbMouse.cpp
r98103 r102519 97 97 g_drvTstMouse.pDrv = PDMIBASE_QUERY_INTERFACE(pBaseInterface, PDMIMOUSEPORT); 98 98 *ppBaseInterface = &g_drvTstMouse.IBase; 99 return VINF_SUCCESS; 100 } 101 102 103 /** @interface_method_impl{PDMUSBHLP,pfnTimerCreate} */ 104 static DECLCALLBACK(int) tstTimerCreate(PPDMUSBINS pUsbIns, TMCLOCK enmClock, PFNTMTIMERUSB pfnCallback, void *pvUser, 105 uint32_t fFlags, const char *pszDesc, PTMTIMERHANDLE phTimer) 106 { 107 RT_NOREF7(pUsbIns, enmClock, pfnCallback, pvUser, fFlags, pszDesc, phTimer); 108 return VINF_SUCCESS; 109 } 110 111 112 /** @interface_method_impl{PDMUSBHLP,pfnTimerCreate} */ 113 static DECLCALLBACK(int) tstTimerDestroy(PPDMUSBINS pUsbIns, TMTIMERHANDLE hTimer) 114 { 115 RT_NOREF2(pUsbIns, hTimer); 99 116 return VINF_SUCCESS; 100 117 } … … 394 411 g_tstUsbHlp.pfnVMSetErrorV = tstVMSetErrorV; 395 412 g_tstUsbHlp.pfnDriverAttach = tstDriverAttach; 413 g_tstUsbHlp.pfnTimerCreate = tstTimerCreate; 414 g_tstUsbHlp.pfnTimerDestroy = tstTimerDestroy; 396 415 g_tstUsbHlp.pfnCFGMValidateConfig = CFGMR3ValidateConfig; 397 416 g_tstUsbHlp.pfnCFGMQueryStringDef = CFGMR3QueryStringDef;
Note:
See TracChangeset
for help on using the changeset viewer.