1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-16 07:31:16 +02:00

Cleanup: Fixed lots of trivial MSVC warnings.

This commit is contained in:
james.k.crook@gmail.com
2013-08-25 21:51:26 +00:00
parent 969122a985
commit dba81b3f1c
108 changed files with 571 additions and 569 deletions

View File

@@ -104,11 +104,11 @@ DeviceSourceMap* DeviceManager::GetDefaultInputDevice(int hostIndex)
//Port Audio requires we open the stream with a callback or a lot of devices will fail
//as this means open in blocking mode, so we use a dummy one.
static int DummyPaStreamCallback(
const void *input, void *output,
unsigned long frameCount,
const PaStreamCallbackTimeInfo* timeInfo,
PaStreamCallbackFlags statusFlags,
void *userData )
const void *WXUNUSED(input), void * WXUNUSED(output),
unsigned long WXUNUSED(frameCount),
const PaStreamCallbackTimeInfo* WXUNUSED(timeInfo),
PaStreamCallbackFlags WXUNUSED(statusFlags),
void *WXUNUSED(userData) )
{
return 0;
}