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

18 lines
435 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
namespace NAudio.CoreAudioApi.Interfaces
{
/// <summary>
/// defined in MMDeviceAPI.h
/// </summary>
[Guid("1BE09788-6894-4089-8586-9A2A6C265AC5"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
interface IMMEndpoint
{
int GetDataFlow(out DataFlow dataFlow);
}
}