dsound: Make DSOUND_PrimarySetFormat() static.
This commit is contained in:
parent
5b5f00d552
commit
ff0717766c
|
@ -378,7 +378,6 @@ HRESULT DSOUND_PrimaryPlay(DirectSoundDevice *device);
|
|||
HRESULT DSOUND_PrimaryStop(DirectSoundDevice *device);
|
||||
HRESULT DSOUND_PrimaryGetPosition(DirectSoundDevice *device, LPDWORD playpos, LPDWORD writepos);
|
||||
LPWAVEFORMATEX DSOUND_CopyFormat(LPCWAVEFORMATEX wfex);
|
||||
HRESULT DSOUND_PrimarySetFormat(DirectSoundDevice *device, LPCWAVEFORMATEX wfex, BOOL forced);
|
||||
HRESULT DSOUND_ReopenDevice(DirectSoundDevice *device, BOOL forcewave);
|
||||
|
||||
/* duplex.c */
|
||||
|
|
|
@ -465,7 +465,7 @@ LPWAVEFORMATEX DSOUND_CopyFormat(LPCWAVEFORMATEX wfex)
|
|||
return pwfx;
|
||||
}
|
||||
|
||||
HRESULT DSOUND_PrimarySetFormat(DirectSoundDevice *device, LPCWAVEFORMATEX wfex, BOOL forced)
|
||||
static HRESULT DSOUND_PrimarySetFormat(DirectSoundDevice *device, LPCWAVEFORMATEX wfex, BOOL forced)
|
||||
{
|
||||
HRESULT err = DSERR_BUFFERLOST;
|
||||
int i;
|
||||
|
|
Loading…
Reference in New Issue