Changeset 99775 in vbox for trunk/src/VBox/ValidationKit/utils/audio/vkatDriverStack.cpp
- Timestamp:
- May 12, 2023 12:21:58 PM (22 months ago)
- svn:sync-xref-src-repo-rev:
- 157370
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.