Changeset 62911 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- Aug 3, 2016 12:32:36 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostDSound.cpp
r62910 r62911 1213 1213 } 1214 1214 1215 static int dsoundDevAdd(PRTLISTANCHOR pList, LPGUID lpGUID, 1216 LPCWSTR lpwstrDescription, PDSOUNDDEV *ppDev) 1215 static int dsoundDevAdd(PRTLISTANCHOR pList, LPGUID lpGUID, LPCWSTR lpwstrDescription, PDSOUNDDEV *ppDev) 1217 1216 { 1218 1217 AssertPtrReturn(pList, VERR_INVALID_POINTER); … … 1259 1258 } 1260 1259 1261 static BOOL CALLBACK dsoundDevicesEnumCbPlayback(LPGUID lpGUID, LPCWSTR lpwstrDescription, 1262 LPCWSTR lpwstrModule, PVOID lpContext) 1260 static BOOL CALLBACK dsoundDevicesEnumCbPlayback(LPGUID lpGUID, LPCWSTR lpwstrDescription, LPCWSTR lpwstrModule, PVOID lpContext) 1263 1261 { 1264 1262 PDSOUNDENUMCBCTX pCtx = (PDSOUNDENUMCBCTX)lpContext; … … 1285 1283 } 1286 1284 1287 static BOOL CALLBACK dsoundDevicesEnumCbCapture(LPGUID lpGUID, LPCWSTR lpwstrDescription, 1288 LPCWSTR lpwstrModule, PVOID lpContext) 1285 static BOOL CALLBACK dsoundDevicesEnumCbCapture(LPGUID lpGUID, LPCWSTR lpwstrDescription, LPCWSTR lpwstrModule, PVOID lpContext) 1289 1286 { 1290 1287 PDSOUNDENUMCBCTX pCtx = (PDSOUNDENUMCBCTX)lpContext; … … 1370 1367 * @param fEnum Enumeration flags. 1371 1368 */ 1372 void dsoundUpdateStatusInternalEx(PDRVHOSTDSOUND pThis, PPDMAUDIOBACKENDCFG pCfg, uint32_t fEnum)1369 static void dsoundUpdateStatusInternalEx(PDRVHOSTDSOUND pThis, PPDMAUDIOBACKENDCFG pCfg, uint32_t fEnum) 1373 1370 { 1374 1371 AssertPtrReturnVoid(pThis); … … 1410 1407 } 1411 1408 1412 void dsoundUpdateStatusInternal(PDRVHOSTDSOUND pThis)1409 static void dsoundUpdateStatusInternal(PDRVHOSTDSOUND pThis) 1413 1410 { 1414 1411 dsoundUpdateStatusInternalEx(pThis, NULL /* pCfg */, 0 /* fEnum */);
Note:
See TracChangeset
for help on using the changeset viewer.