mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
16 lines
427 B
C#
16 lines
427 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Runtime.InteropServices;
|
|||
|
|
|
|||
|
|
namespace NAudio.CoreAudioApi.Interfaces
|
|||
|
|
{
|
|||
|
|
[Guid("0BD7A1BE-7A1A-44DB-8397-CC5392387B5E"),
|
|||
|
|
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
|
|||
|
|
interface IMMDeviceCollection
|
|||
|
|
{
|
|||
|
|
int GetCount(out int numDevices);
|
|||
|
|
int Item(int deviceNumber, out IMMDevice device);
|
|||
|
|
}
|
|||
|
|
}
|