VirtualBox

Changeset 61321 in vbox


Ignore:
Timestamp:
May 31, 2016 8:46:42 AM (9 years ago)
Author:
vboxsync
Message:

Build fix.

Location:
trunk/src/VBox/Devices/Audio
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Audio/DrvHostCoreAudio.cpp

    r61167 r61321  
    21692169
    21702170    return (PDMAUDIOSTRMSTS_FLAG_INITIALIZED | PDMAUDIOSTRMSTS_FLAG_ENABLED);
     2171}
     2172
     2173static DECLCALLBACK(int) drvHostCoreAudioStreamIterate(PPDMIHOSTAUDIO pInterface, PPDMAUDIOSTREAM pStream)
     2174{
     2175    AssertPtrReturn(pInterface, VERR_INVALID_POINTER);
     2176    AssertPtrReturn(pStream,    VERR_INVALID_POINTER);
     2177
     2178    LogFlowFuncEnter();
     2179
     2180    /* Nothing to do here for Core Audio. */
     2181    return VINF_SUCCESS;
    21712182}
    21722183
  • trunk/src/VBox/Devices/Audio/DrvHostDSound.cpp

    r61168 r61321  
    22392239
    22402240    return strmSts;
     2241}
     2242
     2243static DECLCALLBACK(int) drvHostDSoundStreamIterate(PPDMIHOSTAUDIO pInterface, PPDMAUDIOSTREAM pStream)
     2244{
     2245    AssertPtrReturn(pInterface, VERR_INVALID_POINTER);
     2246    AssertPtrReturn(pStream,    VERR_INVALID_POINTER);
     2247
     2248    LogFlowFuncEnter();
     2249
     2250    /* Nothing to do here for DSound. */
     2251    return VINF_SUCCESS;
    22412252}
    22422253
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette