Files
cuetools.net/CUETools.Codecs.CoreAudio/CoreAudioApi/Interfaces/StorageAccessMode.cs
chudov 881951cb02 2.0.7
2010-03-30 02:41:43 +00:00

17 lines
289 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace NAudio.CoreAudioApi.Interfaces
{
/// <summary>
/// MMDevice STGM enumeration
/// </summary>
enum StorageAccessMode
{
Read,
Write,
ReadWrite
}
}