mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
24 lines
596 B
C#
24 lines
596 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace NAudio.CoreAudioApi.Interfaces
|
|
{
|
|
enum AudioClientErrors
|
|
{
|
|
/// <summary>
|
|
/// AUDCLNT_E_NOT_INITIALIZED
|
|
/// </summary>
|
|
NotInitialized = unchecked((int)0x88890001),
|
|
/// <summary>
|
|
/// AUDCLNT_E_UNSUPPORTED_FORMAT
|
|
/// </summary>
|
|
UnsupportedFormat = unchecked((int)0x88890008),
|
|
/// <summary>
|
|
/// AUDCLNT_E_DEVICE_IN_USE
|
|
/// </summary>
|
|
DeviceInUse = unchecked((int)0x8889000A),
|
|
|
|
}
|
|
}
|