diff --git a/dlls/dsound/dsound.c b/dlls/dsound/dsound.c index 1adb347f0e2..66456634f64 100644 --- a/dlls/dsound/dsound.c +++ b/dlls/dsound/dsound.c @@ -45,7 +45,7 @@ static ULONG WINAPI IDirectSound8_IUnknown_AddRef(LPUNKNOWN iface); static ULONG WINAPI IDirectSound8_IDirectSound_AddRef(LPDIRECTSOUND iface); static ULONG WINAPI IDirectSound8_IDirectSound8_AddRef(LPDIRECTSOUND8 iface); -static const char * dumpCooperativeLevel(DWORD level) +const char * dumpCooperativeLevel(DWORD level) { static char unknown[32]; #define LE(x) case x: return #x diff --git a/dlls/dsound/dsound_private.h b/dlls/dsound/dsound_private.h index 89b00f1c6cf..efaa8646f96 100644 --- a/dlls/dsound/dsound_private.h +++ b/dlls/dsound/dsound_private.h @@ -491,9 +491,8 @@ struct IClassFactoryImpl extern IClassFactoryImpl DSOUND_CAPTURE_CF; extern IClassFactoryImpl DSOUND_FULLDUPLEX_CF; -void DSOUND_RecalcVolPan(PDSVOLUMEPAN volpan); -void DSOUND_AmpFactorToVolPan(PDSVOLUMEPAN volpan); -void DSOUND_RecalcFormat(IDirectSoundBufferImpl *dsb); +/******************************************************************************* + */ /* dsound.c */ @@ -520,6 +519,9 @@ void DSOUND_ForceRemix(IDirectSoundBufferImpl *dsb); void DSOUND_MixCancelAt(IDirectSoundBufferImpl *dsb, DWORD buf_writepos); void DSOUND_WaveQueue(DirectSoundDevice *device, DWORD mixq); void DSOUND_PerformMix(DirectSoundDevice *device); +void DSOUND_RecalcVolPan(PDSVOLUMEPAN volpan); +void DSOUND_AmpFactorToVolPan(PDSVOLUMEPAN volpan); +void DSOUND_RecalcFormat(IDirectSoundBufferImpl *dsb); void CALLBACK DSOUND_timer(UINT timerID, UINT msg, DWORD dwUser, DWORD dw1, DWORD dw2); void CALLBACK DSOUND_callback(HWAVEOUT hwo, UINT msg, DWORD dwUser, DWORD dw1, DWORD dw2); @@ -555,6 +557,7 @@ extern GUID DSOUND_renderer_guids[MAXWAVEDRIVERS]; extern DirectSoundCaptureDevice * DSOUND_capture[MAXWAVEDRIVERS]; extern GUID DSOUND_capture_guids[MAXWAVEDRIVERS]; -extern HRESULT mmErr(UINT err); -extern void setup_dsound_options(void); -extern const char * get_device_id(LPCGUID pGuid); +HRESULT mmErr(UINT err); +void setup_dsound_options(void); +const char * get_device_id(LPCGUID pGuid); +const char * dumpCooperativeLevel(DWORD level);