Files
2025-08-13 09:26:42 +08:00

80 lines
2.9 KiB
C#

public enum ErrorCode
{
ErrorCode_NoError = 0,
ErrorCode_FileNotFound = 1,
ErrorCode_CannotOpenFile = 2,
ErrorCode_CannotStartStreamNoMemory = 3,
ErrorCode_IODevice = 4,
ErrorCode_IncompatibleIOSettings = 5,
ErrorCode_PluginUnsupportedChannelConfiguration = 6,
ErrorCode_PluginMediaUnavailable = 7,
ErrorCode_PluginInitialisationFailed = 8,
ErrorCode_PluginProcessingFailed = 9,
ErrorCode_PluginExecutionInvalid = 10,
ErrorCode_PluginAllocationFailed = 11,
ErrorCode_VorbisRequireSeekTable = 12,
ErrorCode_VorbisRequireSeekTableVirtual = 13,
ErrorCode_VorbisDecodeError = 14,
ErrorCode_AACDecodeError = 15,
ErrorCode_xWMACreateDecoderFailed = 16,
ErrorCode_ATRAC9CreateDecoderFailed = 17,
ErrorCode_ATRAC9CreateDecoderFailedChShortage = 18,
ErrorCode_ATRAC9DecodeFailed = 19,
ErrorCode_ATRAC9ClearContextFailed = 20,
ErrorCode_ATRAC9LoopSectionTooSmall = 21,
ErrorCode_InvalidAudioFileHeader = 22,
ErrorCode_AudioFileHeaderTooLarge = 23,
ErrorCode_FileTooSmall = 24,
ErrorCode_TransitionNotAccurateChannel = 25,
ErrorCode_TransitionNotAccurateStarvation = 26,
ErrorCode_NothingToPlay = 27,
ErrorCode_PlayFailed = 28,
ErrorCode_StingerCouldNotBeScheduled = 29,
ErrorCode_TooLongSegmentLookAhead = 30,
ErrorCode_CannotScheduleMusicSwitch = 31,
ErrorCode_TooManySimultaneousMusicSegments = 32,
ErrorCode_PlaylistStoppedForEditing = 33,
ErrorCode_MusicClipsRescheduledAfterTrackEdit = 34,
ErrorCode_CannotPlaySource_Create = 35,
ErrorCode_CannotPlaySource_VirtualOff = 36,
ErrorCode_CannotPlaySource_TimeSkip = 37,
ErrorCode_CannotPlaySource_InconsistentState = 38,
ErrorCode_MediaNotLoaded = 39,
ErrorCode_VoiceStarving = 40,
ErrorCode_StreamingSourceStarving = 41,
ErrorCode_XMADecoderSourceStarving = 42,
ErrorCode_XMADecodingError = 43,
ErrorCode_PluginNotRegistered = 44,
ErrorCode_CodecNotRegistered = 45,
ErrorCode_EventIDNotFound = 46,
ErrorCode_InvalidGroupID = 47,
ErrorCode_SelectedChildNotAvailable = 48,
ErrorCode_SelectedNodeNotAvailable = 49,
ErrorCode_SelectedMediaNotAvailable = 50,
ErrorCode_NoValidSwitch = 51,
ErrorCode_SelectedNodeNotAvailablePlay = 52,
ErrorCode_FeedbackVoiceStarving = 53,
ErrorCode_BankLoadFailed = 54,
ErrorCode_BankUnloadFailed = 55,
ErrorCode_ErrorWhileLoadingBank = 56,
ErrorCode_InsufficientSpaceToLoadBank = 57,
ErrorCode_LowerEngineCommandListFull = 58,
ErrorCode_SeekNoMarker = 59,
ErrorCode_CannotSeekContinuous = 60,
ErrorCode_SeekAfterEof = 61,
ErrorCode_UnknownGameObjectEvent = 62,
ErrorCode_UnknownGameObject = 63,
ErrorCode_ExternalSourceNotResolved = 64,
ErrorCode_FileFormatMismatch = 65,
ErrorCode_CommandQueueFull = 66,
ErrorCode_CommandTooLarge = 67,
ErrorCode_ExecuteActionOnEvent = 68,
ErrorCode_StopAll = 69,
ErrorCode_StopPlayingID = 70,
ErrorCode_XMACreateDecoderLimitReached = 71,
ErrorCode_XMAStreamBufferTooSmall = 72,
ErrorCode_ModulatorScopeError_Inst = 73,
ErrorCode_ModulatorScopeError_Obj = 74,
Num_ErrorCodes = 75
}