Changeset 107877 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- Jan 21, 2025 5:34:24 PM (3 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/audio/vkatDriverStack.cpp
r106061 r107877 189 189 RT_NOREF(pNode, pszNode, pszValidValues, pszValidNodes, pszWho, uInstance); 190 190 return VINF_SUCCESS; 191 } 192 193 /** 194 * @copydoc PDMDRVHLPR3::pfnVMState 195 */ 196 static DECLCALLBACK(VMSTATE) audioTestDrvHlp_VMState(PPDMDRVINS pDrvIns) 197 { 198 RT_NOREF(pDrvIns); 199 return VMSTATE_RUNNING; /* For mocking we report the VM state as running here. */ 191 200 } 192 201 … … 290 299 s_DrvHlp.pfnCFGMQueryU32 = audioTestDrvHlp_CFGMR3QueryU32; 291 300 s_DrvHlp.pfnCFGMValidateConfig = audioTestDrvHlp_CFGMR3ValidateConfig; 301 s_DrvHlp.pfnVMState = audioTestDrvHlp_VMState; 292 302 } 293 303 return &s_DrvHlp;
Note:
See TracChangeset
for help on using the changeset viewer.