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;
|
||||
|
||||
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),
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user