Changeset 54491 in vbox for trunk/src/VBox/Devices/Audio/DrvHostNullAudio.cpp
- Timestamp:
- Feb 25, 2015 1:23:21 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 98600
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostNullAudio.cpp
r54433 r54491 207 207 } 208 208 209 static DECLCALLBACK(void) drvHostNullAudio Destruct(PPDMDRVINS pDrvIns)210 { 211 NOREF(p DrvIns);209 static DECLCALLBACK(void) drvHostNullAudioShutdown(PPDMIHOSTAUDIO pInterface) 210 { 211 NOREF(pInterface); 212 212 } 213 213 … … 219 219 static DECLCALLBACK(int) drvHostNullAudioConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags) 220 220 { 221 AssertPtrReturn(pDrvIns, VERR_INVALID_POINTER); 222 /* pCfg is optional. */ 223 221 224 PDRVHOSTNULLAUDIO pThis = PDMINS_2_DATA(pDrvIns, PDRVHOSTNULLAUDIO); 222 225 LogRel(("Audio: Initializing NULL driver\n")); … … 260 263 drvHostNullAudioConstruct, 261 264 /* pfnDestruct */ 262 drvHostNullAudioDestruct,265 NULL, 263 266 /* pfnRelocate */ 264 267 NULL,
Note:
See TracChangeset
for help on using the changeset viewer.