using System;
namespace NAudio.Midi
{
///
/// Represents the different types of technology used by a MIDI out device
///
/// from mmsystem.h
public enum MidiOutTechnology
{
/// The device is a MIDI port
MidiPort = 1,
/// The device is a MIDI synth
Synth = 2,
/// The device is a square wave synth
SquareWaveSynth = 3,
/// The device is an FM synth
FMSynth = 4,
/// The device is a MIDI mapper
MidiMapper = 5,
/// The device is a WaveTable synth
WaveTableSynth = 6,
/// The device is a software synth
SoftwareSynth = 7
}
}