Changeset 63467 in vbox for trunk/src/VBox/Devices/Audio/DrvHostDebugAudio.cpp
- Timestamp:
- Aug 15, 2016 11:25:51 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostDebugAudio.cpp
r63362 r63467 75 75 * @interface_method_impl{PDMIHOSTAUDIO,pfnGetConfig} 76 76 */ 77 PDMAUDIO_IHOSTAUDIO_EMIT_GETCONFIG(drvHostDebugAudio)77 int drvHostDebugAudioGetConfig(PPDMIHOSTAUDIO pInterface, PPDMAUDIOBACKENDCFG pBackendCfg) 78 78 { 79 79 NOREF(pInterface); … … 97 97 * @interface_method_impl{PDMIHOSTAUDIO,pfnInit} 98 98 */ 99 PDMAUDIO_IHOSTAUDIO_EMIT_INIT(drvHostDebugAudio)99 int drvHostDebugAudioInit(PPDMIHOSTAUDIO pInterface) 100 100 { 101 101 NOREF(pInterface); … … 109 109 * @interface_method_impl{PDMIHOSTAUDIO,pfnShutdown} 110 110 */ 111 PDMAUDIO_IHOSTAUDIO_EMIT_SHUTDOWN(drvHostDebugAudio)111 void drvHostDebugAudioShutdown(PPDMIHOSTAUDIO pInterface) 112 112 { 113 113 NOREF(pInterface); … … 118 118 * @interface_method_impl{PDMIHOSTAUDIO,pfnGetStatus} 119 119 */ 120 PDMAUDIO _IHOSTAUDIO_EMIT_GETSTATUS(drvHostDebugAudio)120 PDMAUDIOBACKENDSTS drvHostDebugAudioGetStatus(PPDMIHOSTAUDIO pInterface, PDMAUDIODIR enmDir) 121 121 { 122 122 RT_NOREF(enmDir); … … 193 193 * @interface_method_impl{PDMIHOSTAUDIO,pfnStreamCreate} 194 194 */ 195 PDMAUDIO_IHOSTAUDIO_EMIT_STREAMCREATE(drvHostDebugAudio)195 int drvHostDebugAudioStreamCreate(PPDMIHOSTAUDIO pInterface, PPDMAUDIOSTREAM pStream, PPDMAUDIOSTREAMCFG pCfgReq, PPDMAUDIOSTREAMCFG pCfgAcq) 196 196 { 197 197 AssertPtrReturn(pInterface, VERR_INVALID_POINTER); … … 213 213 * @interface_method_impl{PDMIHOSTAUDIO,pfnStreamPlay} 214 214 */ 215 PDMAUDIO_IHOSTAUDIO_EMIT_STREAMPLAY(drvHostDebugAudio)215 int drvHostDebugAudioStreamPlay(PPDMIHOSTAUDIO pInterface, PPDMAUDIOSTREAM pStream, const void *pvBuf, uint32_t cbBuf, uint32_t *pcbWritten) 216 216 { 217 217 PDRVHOSTDEBUGAUDIO pDrv = RT_FROM_MEMBER(pInterface, DRVHOSTDEBUGAUDIO, IHostAudio); … … 282 282 * @interface_method_impl{PDMIHOSTAUDIO,pfnStreamCapture} 283 283 */ 284 PDMAUDIO_IHOSTAUDIO_EMIT_STREAMCAPTURE(drvHostDebugAudio)284 int drvHostDebugAudioStreamCapture(PPDMIHOSTAUDIO pInterface, PPDMAUDIOSTREAM pStream, void *pvBuf, uint32_t cbBuf, uint32_t *pcbRead) 285 285 { 286 286 RT_NOREF(pInterface, pStream);
Note:
See TracChangeset
for help on using the changeset viewer.