1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-20 01:14:20 +00:00
This commit is contained in:
jules 2007-07-17 12:34:03 +00:00
parent 6f28298e4c
commit 05187d383b
2 changed files with 6 additions and 6 deletions

View file

@ -522,7 +522,7 @@ public:
numCallbacks = 0;
}
void setCallback (AudioIODeviceCallback* const newCallback)
void setCallback (AudioIODeviceCallback* const newCallback) throw()
{
const ScopedLock sl (callbackLock);
callback = newCallback;
@ -584,7 +584,7 @@ public:
}
}
int getBitDepth() const
int getBitDepth() const throw()
{
if (outputDevice != 0)
return outputDevice->bitDepth;
@ -626,7 +626,7 @@ private:
unsigned int minChansOut, maxChansOut;
unsigned int minChansIn, maxChansIn;
bool failed (const int errorNum)
bool failed (const int errorNum) throw()
{
if (errorNum >= 0)
return false;
@ -636,7 +636,7 @@ private:
return true;
}
void initialiseRatesAndChannels()
void initialiseRatesAndChannels() throw()
{
sampleRates.clear();
channelNamesOut.clear();