Changeset 99775 in vbox for trunk/src/VBox/ValidationKit/utils/audio
- Timestamp:
- May 12, 2023 12:21:58 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 157370
- Location:
- trunk/src/VBox/ValidationKit/utils/audio
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/audio/vkatCmdSelfTest.cpp
r98103 r99775 238 238 * @param pCtx Self test context to use. 239 239 */ 240 RTEXITCODE audioTestDoSelftest(PSELFTESTCTX pCtx)240 static RTEXITCODE audioTestDoSelftest(PSELFTESTCTX pCtx) 241 241 { 242 242 RTTestPrintf(g_hTest, RTTESTLVL_ALWAYS, "Running self test ...\n"); … … 367 367 * @param pGetState RTGetOpt state. 368 368 */ 369 DECLCALLBACK(RTEXITCODE) audioTestCmdSelftestHandler(PRTGETOPTSTATE pGetState)369 static DECLCALLBACK(RTEXITCODE) audioTestCmdSelftestHandler(PRTGETOPTSTATE pGetState) 370 370 { 371 371 RT_ZERO(g_Ctx); -
trunk/src/VBox/ValidationKit/utils/audio/vkatCommon.cpp
r98310 r99775 246 246 * @param uVolPercent Volume (in percent) to set. 247 247 */ 248 int audioTestSetMasterVolume(unsigned uVolPercent)248 static int audioTestSetMasterVolume(unsigned uVolPercent) 249 249 { 250 250 int rc = VINF_SUCCESS; … … 1312 1312 * @param pTcpOpts Pointer to TCP options to use. 1313 1313 */ 1314 int audioTestEnvConnectViaTcp(PAUDIOTESTENV pTstEnv, PATSCLIENT pClient, const char *pszWhat, PAUDIOTESTENVTCPOPTS pTcpOpts)1314 static int audioTestEnvConnectViaTcp(PAUDIOTESTENV pTstEnv, PATSCLIENT pClient, const char *pszWhat, PAUDIOTESTENVTCPOPTS pTcpOpts) 1315 1315 { 1316 1316 RT_NOREF(pTstEnv); … … 1392 1392 * @param pTcpOpts TCP options to use. 1393 1393 */ 1394 int audioTestEnvConfigureAndStartTcpServer(PATSSERVER pSrv, PCATSCALLBACKS pCallbacks, const char *pszDesc,1395 PAUDIOTESTENVTCPOPTS pTcpOpts)1394 static int audioTestEnvConfigureAndStartTcpServer(PATSSERVER pSrv, PCATSCALLBACKS pCallbacks, const char *pszDesc, 1395 PAUDIOTESTENVTCPOPTS pTcpOpts) 1396 1396 { 1397 1397 RTGETOPTUNION Val; -
trunk/src/VBox/ValidationKit/utils/audio/vkatDriverStack.cpp
r98103 r99775 74 74 * @{ */ 75 75 76 VMMR3DECL(PCFGMNODE) audioTestDrvHlp_CFGMR3GetChild(PCFGMNODE pNode, const char *pszPath)76 static DECLCALLBACK(PCFGMNODE) audioTestDrvHlp_CFGMR3GetChild(PCFGMNODE pNode, const char *pszPath) 77 77 { 78 78 RT_NOREF(pNode, pszPath); … … 81 81 82 82 83 VMMR3DECL(int) audioTestDrvHlp_CFGMR3QueryString(PCFGMNODE pNode, const char *pszName, char *pszString, size_t cchString)83 static DECLCALLBACK(int) audioTestDrvHlp_CFGMR3QueryString(PCFGMNODE pNode, const char *pszName, char *pszString, size_t cchString) 84 84 { 85 85 if (pNode != NULL) … … 105 105 106 106 107 VMMR3DECL(int) audioTestDrvHlp_CFGMR3QueryStringAlloc(PCFGMNODE pNode, const char *pszName, char **ppszString)107 static DECLCALLBACK(int) audioTestDrvHlp_CFGMR3QueryStringAlloc(PCFGMNODE pNode, const char *pszName, char **ppszString) 108 108 { 109 109 char szStr[128]; … … 116 116 117 117 118 VMMR3DECL(void) audioTestDrvHlp_MMR3HeapFree(PPDMDRVINS pDrvIns, void *pv)118 static DECLCALLBACK(void) audioTestDrvHlp_MMR3HeapFree(PPDMDRVINS pDrvIns, void *pv) 119 119 { 120 120 RT_NOREF(pDrvIns); … … 125 125 126 126 127 VMMR3DECL(int) audioTestDrvHlp_CFGMR3QueryStringDef(PCFGMNODE pNode, const char *pszName, char *pszString, size_t cchString, const char *pszDef)127 static DECLCALLBACK(int) audioTestDrvHlp_CFGMR3QueryStringDef(PCFGMNODE pNode, const char *pszName, char *pszString, size_t cchString, const char *pszDef) 128 128 { 129 129 PCPDMDRVREG pDrvReg = (PCPDMDRVREG)pNode; … … 150 150 151 151 152 VMMR3DECL(int) audioTestDrvHlp_CFGMR3QueryBoolDef(PCFGMNODE pNode, const char *pszName, bool *pf, bool fDef)152 static DECLCALLBACK(int) audioTestDrvHlp_CFGMR3QueryBoolDef(PCFGMNODE pNode, const char *pszName, bool *pf, bool fDef) 153 153 { 154 154 PCPDMDRVREG pDrvReg = (PCPDMDRVREG)pNode; … … 169 169 170 170 171 VMMR3DECL(int) audioTestDrvHlp_CFGMR3QueryU8(PCFGMNODE pNode, const char *pszName, uint8_t *pu8)171 static DECLCALLBACK(int) audioTestDrvHlp_CFGMR3QueryU8(PCFGMNODE pNode, const char *pszName, uint8_t *pu8) 172 172 { 173 173 RT_NOREF(pNode, pszName, pu8); … … 176 176 177 177 178 VMMR3DECL(int) audioTestDrvHlp_CFGMR3QueryU32(PCFGMNODE pNode, const char *pszName, uint32_t *pu32)178 static DECLCALLBACK(int) audioTestDrvHlp_CFGMR3QueryU32(PCFGMNODE pNode, const char *pszName, uint32_t *pu32) 179 179 { 180 180 RT_NOREF(pNode, pszName, pu32); … … 183 183 184 184 185 VMMR3DECL(int) audioTestDrvHlp_CFGMR3ValidateConfig(PCFGMNODE pNode, const char *pszNode,186 const char *pszValidValues, const char *pszValidNodes,187 const char *pszWho, uint32_t uInstance)185 static DECLCALLBACK(int) audioTestDrvHlp_CFGMR3ValidateConfig(PCFGMNODE pNode, const char *pszNode, 186 const char *pszValidValues, const char *pszValidNodes, 187 const char *pszWho, uint32_t uInstance) 188 188 { 189 189 RT_NOREF(pNode, pszNode, pszValidValues, pszValidNodes, pszWho, uInstance); … … 321 321 322 322 323 DECLCALLBACK(void) audioTestIHostAudioPort_NotifyDeviceChanged(PPDMIHOSTAUDIOPORT pInterface, PDMAUDIODIR enmDir, void *pvUser)323 static DECLCALLBACK(void) audioTestIHostAudioPort_NotifyDeviceChanged(PPDMIHOSTAUDIOPORT pInterface, PDMAUDIODIR enmDir, void *pvUser) 324 324 { 325 325 RT_NOREF(pInterface, enmDir, pvUser);
Note:
See TracChangeset
for help on using the changeset viewer.