dsound: Make dumpCooperativeLevel() static.

This commit is contained in:
Francois Gouget 2012-08-21 13:31:39 +02:00 committed by Alexandre Julliard
parent e3af37eb1c
commit e2c50d762c
2 changed files with 1 additions and 2 deletions

View File

@ -50,7 +50,7 @@ typedef struct IDirectSoundImpl {
BOOL has_ds8;
} IDirectSoundImpl;
const char * dumpCooperativeLevel(DWORD level)
static const char * dumpCooperativeLevel(DWORD level)
{
#define LE(x) case x: return #x
switch (level) {

View File

@ -320,7 +320,6 @@ extern GUID DSOUND_capture_guids[MAXWAVEDRIVERS] DECLSPEC_HIDDEN;
extern WCHAR wine_vxd_drv[] 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;