mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
2.0.7
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace NAudio.CoreAudioApi.Interfaces
|
||||
{
|
||||
[Guid("A95664D2-9614-4F35-A746-DE8DB63617E6"),
|
||||
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
|
||||
interface IMMDeviceEnumerator
|
||||
{
|
||||
int EnumAudioEndpoints(DataFlow dataFlow, DeviceState stateMask,
|
||||
out IMMDeviceCollection devices);
|
||||
|
||||
int GetDefaultAudioEndpoint(DataFlow dataFlow, Role role, out IMMDevice endpoint);
|
||||
|
||||
int GetDevice(string id, out IMMDevice deviceName);
|
||||
|
||||
int RegisterEndpointNotificationCallback(IMMNotificationClient client);
|
||||
|
||||
int UnregisterEndpointNotificationCallback(IMMNotificationClient client);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user