Commit e2c50d76 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

dsound: Make dumpCooperativeLevel() static.

parent e3af37eb
...@@ -50,7 +50,7 @@ typedef struct IDirectSoundImpl { ...@@ -50,7 +50,7 @@ typedef struct IDirectSoundImpl {
BOOL has_ds8; BOOL has_ds8;
} IDirectSoundImpl; } IDirectSoundImpl;
const char * dumpCooperativeLevel(DWORD level) static const char * dumpCooperativeLevel(DWORD level)
{ {
#define LE(x) case x: return #x #define LE(x) case x: return #x
switch (level) { switch (level) {
......
...@@ -320,7 +320,6 @@ extern GUID DSOUND_capture_guids[MAXWAVEDRIVERS] DECLSPEC_HIDDEN; ...@@ -320,7 +320,6 @@ extern GUID DSOUND_capture_guids[MAXWAVEDRIVERS] DECLSPEC_HIDDEN;
extern WCHAR wine_vxd_drv[] DECLSPEC_HIDDEN; extern WCHAR wine_vxd_drv[] DECLSPEC_HIDDEN;
void setup_dsound_options(void) DECLSPEC_HIDDEN; void setup_dsound_options(void) DECLSPEC_HIDDEN;
const char * dumpCooperativeLevel(DWORD level) DECLSPEC_HIDDEN;
HRESULT get_mmdevice(EDataFlow flow, const GUID *tgt, IMMDevice **device) DECLSPEC_HIDDEN; HRESULT get_mmdevice(EDataFlow flow, const GUID *tgt, IMMDevice **device) DECLSPEC_HIDDEN;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment