mirror of https://github.com/naudio/NAudio.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
837 B
26 lines
837 B
using System;
|
|
|
|
namespace NAudio.Midi
|
|
{
|
|
/// <summary>
|
|
/// Represents the different types of technology used by a MIDI out device
|
|
/// </summary>
|
|
/// <remarks>from mmsystem.h</remarks>
|
|
public enum MidiOutTechnology
|
|
{
|
|
/// <summary>The device is a MIDI port</summary>
|
|
MidiPort = 1,
|
|
/// <summary>The device is a MIDI synth</summary>
|
|
Synth = 2,
|
|
/// <summary>The device is a square wave synth</summary>
|
|
SquareWaveSynth = 3,
|
|
/// <summary>The device is an FM synth</summary>
|
|
FMSynth = 4,
|
|
/// <summary>The device is a MIDI mapper</summary>
|
|
MidiMapper = 5,
|
|
/// <summary>The device is a WaveTable synth</summary>
|
|
WaveTableSynth = 6,
|
|
/// <summary>The device is a software synth</summary>
|
|
SoftwareSynth = 7
|
|
}
|
|
}
|