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