diff options
author | Chris Robinson <[email protected]> | 2010-07-08 15:10:59 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-07-08 15:10:59 -0700 |
commit | 58ba5fd0dd740771bc158847be5c7cbfe4ff66e8 (patch) | |
tree | cc279973ed5351f581d9f9276f6f2df11aaa91db /Alc/winmm.c | |
parent | 71cc91cc4aad53d1c2c1c115c44e73e2343eae18 (diff) |
Add missing static keyword to WinMM vars
Diffstat (limited to 'Alc/winmm.c')
-rw-r--r-- | Alc/winmm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/winmm.c b/Alc/winmm.c index b470b9be..5d927d48 100644 --- a/Alc/winmm.c +++ b/Alc/winmm.c @@ -134,7 +134,7 @@ static void CALLBACK WaveInProc(HWAVEIN hDevice,UINT uMsg,DWORD_PTR dwInstance,D Used by "MMSYSTEM" Device. Called when a WaveIn buffer had been filled with new audio data. */ -DWORD WINAPI CaptureThreadProc(LPVOID lpParameter) +static DWORD WINAPI CaptureThreadProc(LPVOID lpParameter) { ALCdevice *pDevice = (ALCdevice*)lpParameter; WinMMData *pData = pDevice->ExtraData; @@ -386,7 +386,7 @@ static void WinMMCaptureSamples(ALCdevice *pDevice, ALCvoid *pBuffer, ALCuint lS } -BackendFuncs WinMMFuncs = { +static BackendFuncs WinMMFuncs = { WinMMOpenPlayback, WinMMClosePlayback, NULL, |