Commit 1533965e authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

dsound: Make a function static, remove a no longer used array.

parent e19be58e
......@@ -822,8 +822,6 @@ static HRESULT IDirectSoundCaptureBufferImpl_Create(
/*******************************************************************************
* DirectSoundCaptureDevice
*/
DirectSoundCaptureDevice * DSOUND_capture[MAXWAVEDRIVERS];
static HRESULT DirectSoundCaptureDevice_Create(
DirectSoundCaptureDevice ** ppDevice)
{
......@@ -880,8 +878,8 @@ static ULONG DirectSoundCaptureDevice_Release(
return ref;
}
void CALLBACK DSOUND_capture_timer(UINT timerID, UINT msg, DWORD_PTR user,
DWORD_PTR dw1, DWORD_PTR dw2)
static void CALLBACK DSOUND_capture_timer(UINT timerID, UINT msg, DWORD_PTR user,
DWORD_PTR dw1, DWORD_PTR dw2)
{
DirectSoundCaptureDevice *device = (DirectSoundCaptureDevice*)user;
UINT32 packet_frames, packet_bytes, avail_bytes;
......
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