using System; using System.Collections.Generic; using System.Text; namespace NAudio.CoreAudioApi.Interfaces { enum AudioClientErrors { /// /// AUDCLNT_E_NOT_INITIALIZED /// NotInitialized = unchecked((int)0x88890001), /// /// AUDCLNT_E_UNSUPPORTED_FORMAT /// UnsupportedFormat = unchecked((int)0x88890008), /// /// AUDCLNT_E_DEVICE_IN_USE /// DeviceInUse = unchecked((int)0x8889000A), } }