mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Windows: Moved WASAPIDeviceMode enum into the juce namespace
This commit is contained in:
parent
54164fac3f
commit
29691aaf4f
1 changed files with 13 additions and 10 deletions
|
|
@ -166,17 +166,20 @@
|
|||
#include "midi_io/juce_MidiDevices.h"
|
||||
#include "midi_io/juce_MidiMessageCollector.h"
|
||||
|
||||
/** Available modes for the WASAPI audio device.
|
||||
|
||||
Pass one of these to the AudioIODeviceType::createAudioIODeviceType_WASAPI()
|
||||
method to create a WASAPI AudioIODeviceType object in this mode.
|
||||
*/
|
||||
enum class WASAPIDeviceMode
|
||||
namespace juce
|
||||
{
|
||||
shared,
|
||||
exclusive,
|
||||
sharedLowLatency
|
||||
};
|
||||
/** Available modes for the WASAPI audio device.
|
||||
|
||||
Pass one of these to the AudioIODeviceType::createAudioIODeviceType_WASAPI()
|
||||
method to create a WASAPI AudioIODeviceType object in this mode.
|
||||
*/
|
||||
enum class WASAPIDeviceMode
|
||||
{
|
||||
shared,
|
||||
exclusive,
|
||||
sharedLowLatency
|
||||
};
|
||||
}
|
||||
|
||||
#include "audio_io/juce_AudioIODevice.h"
|
||||
#include "audio_io/juce_AudioIODeviceType.h"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue