diff options
author | Chris Robinson <[email protected]> | 2013-10-07 08:00:18 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-10-07 08:00:18 -0700 |
commit | 32e85d469b735260d827d50a6d37c0937d375914 (patch) | |
tree | df741474c8fc9e2c3ed35652a1d837a8baed8763 /Alc/backends/winmm.c | |
parent | 1518895e15262deade1b03e29b47a3d149f73c83 (diff) |
Use the UNUSED macro in the backends
Diffstat (limited to 'Alc/backends/winmm.c')
-rw-r--r-- | Alc/backends/winmm.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/Alc/backends/winmm.c b/Alc/backends/winmm.c index 4786d9b4..3b2b373b 100644 --- a/Alc/backends/winmm.c +++ b/Alc/backends/winmm.c @@ -146,14 +146,11 @@ static void ProbeCaptureDevices(void) Posts a message to 'PlaybackThreadProc' everytime a WaveOut Buffer is completed and returns to the application (for more data) */ -static void CALLBACK WaveOutProc(HWAVEOUT device, UINT msg, DWORD_PTR instance, DWORD_PTR param1, DWORD_PTR param2) +static void CALLBACK WaveOutProc(HWAVEOUT UNUSED(device), UINT msg, DWORD_PTR instance, DWORD_PTR param1, DWORD_PTR UNUSED(param2)) { ALCdevice *Device = (ALCdevice*)instance; WinMMData *data = Device->ExtraData; - (void)device; - (void)param2; - if(msg != WOM_DONE) return; @@ -213,14 +210,11 @@ static DWORD WINAPI PlaybackThreadProc(LPVOID param) Posts a message to 'CaptureThreadProc' everytime a WaveIn Buffer is completed and returns to the application (with more data) */ -static void CALLBACK WaveInProc(HWAVEIN device, UINT msg, DWORD_PTR instance, DWORD_PTR param1, DWORD_PTR param2) +static void CALLBACK WaveInProc(HWAVEIN UNUSED(device), UINT msg, DWORD_PTR instance, DWORD_PTR param1, DWORD_PTR UNUSED(param2)) { ALCdevice *Device = (ALCdevice*)instance; WinMMData *data = Device->ExtraData; - (void)device; - (void)param2; - if(msg != WIM_DATA) return; |