Windows系统错误代码(Java描述)

public class WindowsError {
	public static final int ERROR_SUCCESS = 0x0;
	public static final int ERROR_INVALID_FUNCTION = 0x1;
	public static final int ERROR_FILE_NOT_FOUND = 0x2;
	public static final int ERROR_PATH_NOT_FOUND = 0x3;
	public static final int ERROR_TOO_MANY_OPEN_FILES = 0x4;
	public static final int ERROR_ACCESS_DENIED = 0x5;
	public static final int ERROR_INVALID_HANDLE = 0x6;
	public static final int ERROR_ARENA_TRASHED = 0x7;
	public static final int ERROR_NOT_ENOUGH_MEMORY = 0x8;
	public static final int ERROR_INVALID_BLOCK = 0x9;
	public static final int ERROR_BAD_ENVIRONMENT = 0xA;
	public static final int ERROR_BAD_FORMAT = 0xB;
	public static final int ERROR_INVALID_ACCESS = 0xC;
	public static final int ERROR_INVALID_DATA = 0xD;
	public static final int ERROR_OUTOFMEMORY = 0xE;
	public static final int ERROR_INVALID_DRIVE = 0xF;
	public static final int ERROR_CURRENT_DIRECTORY = 0x10;
	public static final int ERROR_NOT_SAME_DEVICE = 0x11;
	public static final int ERROR_NO_MORE_FILES = 0x12;
	public static final int ERROR_WRITE_PROTECT = 0x13;
	public static final int ERROR_BAD_UNIT = 0x14;
	public static final int ERROR_NOT_READY = 0x15;
	public static final int ERROR_BAD_COMMAND = 0x16;
	public static final int ERROR_CRC = 0x17;
	public static final int ERROR_BAD_LENGTH = 0x18;
	public static final int ERROR_SEEK = 0x19;
	public static final int ERROR_NOT_DOS_DISK = 0x1A;
	public static final int ERROR_SECTOR_NOT_FOUND = 0x1B;
	public static final int ERROR_OUT_OF_PAPER = 0x1C;
	public static final int ERROR_WRITE_FAULT = 0x1D;
	public static final int ERROR_READ_FAULT = 0x1E;
	public static final int ERROR_GEN_FAILURE = 0x1F;
	public static final int ERROR_SHARING_VIOLATION = 0x20;
	public static final int ERROR_LOCK_VIOLATION = 0x21;
	public static final int ERROR_WRONG_DISK = 0x22;
	public static final int ERROR_SHARING_BUFFER_EXCEEDED = 0x24;
	public static final int ERROR_HANDLE_EOF = 0x26;
	public static final int ERROR_HANDLE_DISK_FULL = 0x27;
	public static final int ERROR_NOT_SUPPORTED = 0x32;
	public static final int ERROR_REM_NOT_LIST = 0x33;
	public static final int ERROR_DUP_NAME = 0x34;
	public static final int ERROR_BAD_NETPATH = 0x35;
	public static final int ERROR_NETWORK_BUSY = 0x36;
	public static final int ERROR_DEV_NOT_EXIST = 0x37;
	public static final int ERROR_TOO_MANY_CMDS = 0x38;
	public static final int ERROR_ADAP_HDW_ERR = 0x39;
	public static final int ERROR_BAD_NET_RESP = 0x3A;
	public static final int ERROR_UNEXP_NET_ERR = 0x3B;
	public static final int ERROR_BAD_REM_ADAP = 0x3C;
	public static final int ERROR_PRINTQ_FULL = 0x3D;
	public static final int ERROR_NO_SPOOL_SPACE = 0x3E;
	public static final int ERROR_PRINT_CANCELLED = 0x3F;
	public static final int ERROR_NETNAME_DELETED = 0x40;
	public static final int ERROR_NETWORK_ACCESS_DENIED = 0x41;
	public static final int ERROR_BAD_DEV_TYPE = 0x42;
	public static final int ERROR_BAD_NET_NAME = 0x43;
	public static final int ERROR_TOO_MANY_NAMES = 0x44;
	public static final int ERROR_TOO_MANY_SESS = 0x45;
	public static final int ERROR_SHARING_PAUSED = 0x46;
	public static final int ERROR_REQ_NOT_ACCEP = 0x47;
	public static final int ERROR_REDIR_PAUSED = 0x48;
	public static final int ERROR_FILE_EXISTS = 0x50;
	public static final int ERROR_CANNOT_MAKE = 0x52;
	public static final int ERROR_FAIL_I24 = 0x53;
	public static final int ERROR_OUT_OF_STRUCTURES = 0x54;
	public static final int ERROR_ALREADY_ASSIGNED = 0x55;
	public static final int ERROR_INVALID_PASSWORD = 0x56;
	public static final int ERROR_INVALID_PARAMETER = 0x57;
	public static final int ERROR_NET_WRITE_FAULT = 0x58;
	public static final int ERROR_NO_PROC_SLOTS = 0x59;
	public static final int ERROR_TOO_MANY_SEMAPHORES = 0x64;
	public static final int ERROR_EXCL_SEM_ALREADY_OWNED = 0x65;
	public static final int ERROR_SEM_IS_SET = 0x66;
	public static final int ERROR_TOO_MANY_SEM_REQUESTS = 0x67;
	public static final int ERROR_INVALID_AT_INTERRUPT_TIME = 0x68;
	public static final int ERROR_SEM_OWNER_DIED = 0x69;
	public static final int ERROR_SEM_USER_LIMIT = 0x6A;
	public static final int ERROR_DISK_CHANGE = 0x6B;
	public static final int ERROR_DRIVE_LOCKED = 0x6C;
	public static final int ERROR_BROKEN_PIPE = 0x6D;
	public static final int ERROR_OPEN_FAILED = 0x6E;
	public static final int ERROR_BUFFER_OVERFLOW = 0x6F;
	public static final int ERROR_DISK_FULL = 0x70;
	public static final int ERROR_NO_MORE_SEARCH_HANDLES = 0x71;
	public static final int ERROR_INVALID_TARGET_HANDLE = 0x72;
	public static final int ERROR_INVALID_CATEGORY = 0x75;
	public static final int ERROR_INVALID_VERIFY_SWITCH = 0x76;
	public static final int ERROR_BAD_DRIVER_LEVEL = 0x77;
	public static final int ERROR_CALL_NOT_IMPLEMENTED = 0x78;
	public static final int ERROR_SEM_TIMEOUT = 0x79;
	public static final int ERROR_INSUFFICIENT_BUFFER = 0x7A;
	public static final int ERROR_INVALID_NAME = 0x7B;
	public static final int ERROR_INVALID_LEVEL = 0x7C;
	public static final int ERROR_NO_VOLUME_LABEL = 0x7D;
	public static final int ERROR_MOD_NOT_FOUND = 0x7E;
	public static final int ERROR_PROC_NOT_FOUND = 0x7F;
	public static final int ERROR_WAIT_NO_CHILDREN = 0x80;
	public static final int ERROR_CHILD_NOT_COMPLETE = 0x81;
	public static final int ERROR_DIRECT_ACCESS_HANDLE = 0x82;
	public static final int ERROR_NEGATIVE_SEEK = 0x83;
	public static final int ERROR_SEEK_ON_DEVICE = 0x84;
	public static final int ERROR_IS_JOIN_TARGET = 0x85;
	public static final int ERROR_IS_JOINED = 0x86;
	public static final int ERROR_IS_SUBSTED = 0x87;
	public static final int ERROR_NOT_JOINED = 0x88;
	public static final int ERROR_NOT_SUBSTED = 0x89;
	public static final int ERROR_JOIN_TO_JOIN = 0x8A;
	public static final int ERROR_SUBST_TO_SUBST = 0x8B;
	public static final int ERROR_JOIN_TO_SUBST = 0x8C;
	public static final int ERROR_SUBST_TO_JOIN = 0x8D;
	public static final int ERROR_BUSY_DRIVE = 0x8E;
	public static final int ERROR_SAME_DRIVE = 0x8F;
	public static final int ERROR_DIR_NOT_ROOT = 0x90;
	public static final int ERROR_DIR_NOT_EMPTY = 0x91;
	public static final int ERROR_IS_SUBST_PATH = 0x92;
	public static final int ERROR_IS_JOIN_PATH = 0x93;
	public static final int ERROR_PATH_BUSY = 0x94;
	public static final int ERROR_IS_SUBST_TARGET = 0x95;
	public static final int ERROR_SYSTEM_TRACE = 0x96;
	public static final int ERROR_INVALID_EVENT_COUNT = 0x97;
	public static final int ERROR_TOO_MANY_MUXWAITERS = 0x98;
	public static final int ERROR_INVALID_LIST_FORMAT = 0x99;
	public static final int ERROR_LABEL_TOO_LONG = 0x9A;
	public static final int ERROR_TOO_MANY_TCBS = 0x9B;
	public static final int ERROR_SIGNAL_REFUSED = 0x9C;
	public static final int ERROR_DISCARDED = 0x9D;
	public static final int ERROR_NOT_LOCKED = 0x9E;
	public static final int ERROR_BAD_THREADID_ADDR = 0x9F;
	public static final int ERROR_BAD_ARGUMENTS = 0xA0;
	public static final int ERROR_BAD_PATHNAME = 0xA1;
	public static final int ERROR_SIGNAL_PENDING = 0xA2;
	public static final int ERROR_MAX_THRDS_REACHED = 0xA4;
	public static final int ERROR_LOCK_FAILED = 0xA7;
	public static final int ERROR_BUSY = 0xAA;
	public static final int ERROR_DEVICE_SUPPORT_IN_PROGRESS = 0xAB;
	public static final int ERROR_CANCEL_VIOLATION = 0xAD;
	public static final int ERROR_ATOMIC_LOCKS_NOT_SUPPORTED = 0xAE;
	public static final int ERROR_INVALID_SEGMENT_NUMBER = 0xB4;
	public static final int ERROR_INVALID_ORDINAL = 0xB6;
	public static final int ERROR_ALREADY_EXISTS = 0xB7;
	public static final int ERROR_INVALID_FLAG_NUMBER = 0xBA;
	public static final int ERROR_SEM_NOT_FOUND = 0xBB;
	public static final int ERROR_INVALID_STARTING_CODESEG = 0xBC;
	public static final int ERROR_INVALID_STACKSEG = 0xBD;
	public static final int ERROR_INVALID_MODULETYPE = 0xBE;
	public static final int ERROR_INVALID_EXE_SIGNATURE = 0xBF;
	public static final int ERROR_EXE_MARKED_INVALID = 0xC0;
	public static final int ERROR_BAD_EXE_FORMAT = 0xC1;
	public static final int ERROR_ITERATED_DATA_EXCEEDS_64k = 0xC2;
	public static final int ERROR_INVALID_MINALLOCSIZE = 0xC3;
	public static final int ERROR_DYNLINK_FROM_INVALID_RING = 0xC4;
	public static final int ERROR_IOPL_NOT_ENABLED = 0xC5;
	public static final int ERROR_INVALID_SEGDPL = 0xC6;
	public static final int ERROR_AUTODATASEG_EXCEEDS_64k = 0xC7;
	public static final int ERROR_RING2SEG_MUST_BE_MOVABLE = 0xC8;
	public static final int ERROR_RELOC_CHAIN_XEEDS_SEGLIM = 0xC9;
	public static final int ERROR_INFLOOP_IN_RELOC_CHAIN = 0xCA;
	public static final int ERROR_ENVVAR_NOT_FOUND = 0xCB;
	public static final int ERROR_NO_SIGNAL_SENT = 0xCD;
	public static final int ERROR_FILENAME_EXCED_RANGE = 0xCE;
	public static final int ERROR_RING2_STACK_IN_USE = 0xCF;
	public static final int ERROR_META_EXPANSION_TOO_LONG = 0xD0;
	public static final int ERROR_INVALID_SIGNAL_NUMBER = 0xD1;
	public static final int ERROR_THREAD_1_INACTIVE = 0xD2;
	public static final int ERROR_LOCKED = 0xD4;
	public static final int ERROR_TOO_MANY_MODULES = 0xD6;
	public static final int ERROR_NESTING_NOT_ALLOWED = 0xD7;
	public static final int ERROR_EXE_MACHINE_TYPE_MISMATCH = 0xD8;
	public static final int ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY = 0xD9;
	public static final int ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY = 0xDA;
	public static final int ERROR_FILE_CHECKED_OUT = 0xDC;
	public static final int ERROR_CHECKOUT_REQUIRED = 0xDD;
	public static final int ERROR_BAD_FILE_TYPE = 0xDE;
	public static final int ERROR_FILE_TOO_LARGE = 0xDF;
	public static final int ERROR_FORMS_AUTH_REQUIRED = 0xE0;
	public static final int ERROR_VIRUS_INFECTED = 0xE1;
	public static final int ERROR_VIRUS_DELETED = 0xE2;
	public static final int ERROR_PIPE_LOCAL = 0xE5;
	public static final int ERROR_BAD_PIPE = 0xE6;
	public static final int ERROR_PIPE_BUSY = 0xE7;
	public static final int ERROR_NO_DATA = 0xE8;
	public static final int ERROR_PIPE_NOT_CONNECTED = 0xE9;
	public static final int ERROR_MORE_DATA = 0xEA;
	public static final int ERROR_VC_DISCONNECTED = 0xF0;
	public static final int ERROR_INVALID_EA_NAME = 0xFE;
	public static final int ERROR_EA_LIST_INCONSISTENT = 0xFF;
	public static final int WAIT_TIMEOUT = 0x102;
	public static final int ERROR_NO_MORE_ITEMS = 0x103;
	public static final int ERROR_CANNOT_COPY = 0x10A;
	public static final int ERROR_DIRECTORY = 0x10B;
	public static final int ERROR_EAS_DIDNT_FIT = 0x113;
	public static final int ERROR_EA_FILE_CORRUPT = 0x114;
	public static final int ERROR_EA_TABLE_FULL = 0x115;
	public static final int ERROR_INVALID_EA_HANDLE = 0x116;
	public static final int ERROR_EAS_NOT_SUPPORTED = 0x11A;
	public static final int ERROR_NOT_OWNER = 0x120;
	public static final int ERROR_TOO_MANY_POSTS = 0x12A;
	public static final int ERROR_PARTIAL_COPY = 0x12B;
	public static final int ERROR_OPLOCK_NOT_GRANTED = 0x12C;
	public static final int ERROR_INVALID_OPLOCK_PROTOCOL = 0x12D;
	public static final int ERROR_DISK_TOO_FRAGMENTED = 0x12E;
	public static final int ERROR_DELETE_PENDING = 0x12F;
	public static final int ERROR_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING = 0x130;
	public static final int ERROR_SHORT_NAMES_NOT_ENABLED_ON_VOLUME = 0x131;
	public static final int ERROR_SECURITY_STREAM_IS_INCONSISTENT = 0x132;
	public static final int ERROR_INVALID_LOCK_RANGE = 0x133;
	public static final int ERROR_IMAGE_SUBSYSTEM_NOT_PRESENT = 0x134;
	public static final int ERROR_NOTIFICATION_GUID_ALREADY_DEFINED = 0x135;
	public static final int ERROR_INVALID_EXCEPTION_HANDLER = 0x136;
	public static final int ERROR_DUPLICATE_PRIVILEGES = 0x137;
	public static final int ERROR_NO_RANGES_PROCESSED = 0x138;
	public static final int ERROR_NOT_ALLOWED_ON_SYSTEM_FILE = 0x139;
	public static final int ERROR_DISK_RESOURCES_EXHAUSTED = 0x13A;
	public static final int ERROR_INVALID_TOKEN = 0x13B;
	public static final int ERROR_DEVICE_FEATURE_NOT_SUPPORTED = 0x13C;
	public static final int ERROR_MR_MID_NOT_FOUND = 0x13D;
	public static final int ERROR_SCOPE_NOT_FOUND = 0x13E;
	public static final int ERROR_UNDEFINED_SCOPE = 0x13F;
	public static final int ERROR_INVALID_CAP = 0x140;
	public static final int ERROR_DEVICE_UNREACHABLE = 0x141;
	public static final int ERROR_DEVICE_NO_RESOURCES = 0x142;
	public static final int ERROR_DATA_CHECKSUM_ERROR = 0x143;
	public static final int ERROR_INTERMIXED_KERNEL_EA_OPERATION = 0x144;
	public static final int ERROR_FILE_LEVEL_TRIM_NOT_SUPPORTED = 0x146;
	public static final int ERROR_OFFSET_ALIGNMENT_VIOLATION = 0x147;
	public static final int ERROR_INVALID_FIELD_IN_PARAMETER_LIST = 0x148;
	public static final int ERROR_OPERATION_IN_PROGRESS = 0x149;
	public static final int ERROR_BAD_DEVICE_PATH = 0x14A;
	public static final int ERROR_TOO_MANY_DESCRIPTORS = 0x14B;
	public static final int ERROR_SCRUB_DATA_DISABLED = 0x14C;
	public static final int ERROR_NOT_REDUNDANT_STORAGE = 0x14D;
	public static final int ERROR_RESIDENT_FILE_NOT_SUPPORTED = 0x14E;
	public static final int ERROR_COMPRESSED_FILE_NOT_SUPPORTED = 0x14F;
	public static final int ERROR_DIRECTORY_NOT_SUPPORTED = 0x150;
	public static final int ERROR_NOT_READ_FROM_COPY = 0x151;
	public static final int ERROR_FAIL_NOACTION_REBOOT = 0x15E;
	public static final int ERROR_FAIL_SHUTDOWN = 0x15F;
	public static final int ERROR_FAIL_RESTART = 0x160;
	public static final int ERROR_MAX_SESSIONS_REACHED = 0x161;
	public static final int ERROR_THREAD_MODE_ALREADY_BACKGROUND = 0x190;
	public static final int ERROR_THREAD_MODE_NOT_BACKGROUND = 0x191;
	public static final int ERROR_PROCESS_MODE_ALREADY_BACKGROUND = 0x192;
	public static final int ERROR_PROCESS_MODE_NOT_BACKGROUND = 0x193;
	public static final int ERROR_INVALID_ADDRESS = 0x1E7;
	public static final int ERROR_USER_PROFILE_LOAD = 0x1F4;
	public static final int ERROR_ARITHMETIC_OVERFLOW = 0x216;
	public static final int ERROR_PIPE_CONNECTED = 0x217;
	public static final int ERROR_PIPE_LISTENING = 0x218;
	public static final int ERROR_VERIFIER_STOP = 0x219;
	public static final int ERROR_ABIOS_ERROR = 0x21A;
	public static final int ERROR_WX86_WARNING = 0x21B;
	public static final int ERROR_WX86_ERROR = 0x21C;
	public static final int ERROR_TIMER_NOT_CANCELED = 0x21D;
	public static final int ERROR_UNWIND = 0x21E;
	public static final int ERROR_BAD_STACK = 0x21F;
	public static final int ERROR_INVALID_UNWIND_TARGET = 0x220;
	public static final int ERROR_INVALID_PORT_ATTRIBUTES = 0x221;
	public static final int ERROR_PORT_MESSAGE_TOO_LONG = 0x222;
	public static final int ERROR_INVALID_QUOTA_LOWER = 0x223;
	public static final int ERROR_DEVICE_ALREADY_ATTACHED = 0x224;
	public static final int ERROR_INSTRUCTION_MISALIGNMENT = 0x225;
	public static final int ERROR_PROFILING_NOT_STARTED = 0x226;
	public static final int ERROR_PROFILING_NOT_STOPPED = 0x227;
	public static final int ERROR_COULD_NOT_INTERPRET = 0x228;
	public static final int ERROR_PROFILING_AT_LIMIT = 0x229;
	public static final int ERROR_CANT_WAIT = 0x22A;
	public static final int ERROR_CANT_TERMINATE_SELF = 0x22B;
	public static final int ERROR_UNEXPECTED_MM_CREATE_ERR = 0x22C;
	public static final int ERROR_UNEXPECTED_MM_MAP_ERROR = 0x22D;
	public static final int ERROR_UNEXPECTED_MM_EXTEND_ERR = 0x22E;
	public static final int ERROR_BAD_FUNCTION_TABLE = 0x22F;
	public static final int ERROR_NO_GUID_TRANSLATION = 0x230;
	public static final int ERROR_INVALID_LDT_SIZE = 0x231;
	public static final int ERROR_INVALID_LDT_OFFSET = 0x233;
	public static final int ERROR_INVALID_LDT_DESCRIPTOR = 0x234;
	public static final int ERROR_TOO_MANY_THREADS = 0x235;
	public static final int ERROR_THREAD_NOT_IN_PROCESS = 0x236;
	public static final int ERROR_PAGEFILE_QUOTA_EXCEEDED = 0x237;
	public static final int ERROR_LOGON_SERVER_CONFLICT = 0x238;
	public static final int ERROR_SYNCHRONIZATION_REQUIRED = 0x239;
	public static final int ERROR_NET_OPEN_FAILED = 0x23A;
	public static final int ERROR_IO_PRIVILEGE_FAILED = 0x23B;
	public static final int ERROR_CONTROL_C_EXIT = 0x23C;
	public static final int ERROR_MISSING_SYSTEMFILE = 0x23D;
	public static final int ERROR_UNHANDLED_EXCEPTION = 0x23E;
	public static final int ERROR_APP_INIT_FAILURE = 0x23F;
	public static final int ERROR_PAGEFILE_CREATE_FAILED = 0x240;
	public static final int ERROR_INVALID_IMAGE_HASH = 0x241;
	public static final int ERROR_NO_PAGEFILE = 0x242;
	public static final int ERROR_ILLEGAL_FLOAT_CONTEXT = 0x243;
	public static final int ERROR_NO_EVENT_PAIR = 0x244;
	public static final int ERROR_DOMAIN_CTRLR_CONFIG_ERROR = 0x245;
	public static final int ERROR_ILLEGAL_CHARACTER = 0x246;
	public static final int ERROR_UNDEFINED_CHARACTER = 0x247;
	public static final int ERROR_FLOPPY_VOLUME = 0x248;
	public static final int ERROR_BIOS_FAILED_TO_CONNECT_INTERRUPT = 0x249;
	public static final int ERROR_BACKUP_CONTROLLER = 0x24A;
	public static final int ERROR_MUTANT_LIMIT_EXCEEDED = 0x24B;
	public static final int ERROR_FS_DRIVER_REQUIRED = 0x24C;
	public static final int ERROR_CANNOT_LOAD_REGISTRY_FILE = 0x24D;
	public static final int ERROR_DEBUG_ATTACH_FAILED = 0x24E;
	public static final int ERROR_SYSTEM_PROCESS_TERMINATED = 0x24F;
	public static final int ERROR_DATA_NOT_ACCEPTED = 0x250;
	public static final int ERROR_VDM_HARD_ERROR = 0x251;
	public static final int ERROR_DRIVER_CANCEL_TIMEOUT = 0x252;
	public static final int ERROR_REPLY_MESSAGE_MISMATCH = 0x253;
	public static final int ERROR_LOST_WRITEBEHIND_DATA = 0x254;
	public static final int ERROR_CLIENT_SERVER_PARAMETERS_INVALID = 0x255;
	public static final int ERROR_NOT_TINY_STREAM = 0x256;
	public static final int ERROR_STACK_OVERFLOW_READ = 0x257;
	public static final int ERROR_CONVERT_TO_LARGE = 0x258;
	public static final int ERROR_FOUND_OUT_OF_SCOPE = 0x259;
	public static final int ERROR_ALLOCATE_BUCKET = 0x25A;
	public static final int ERROR_MARSHALL_OVERFLOW = 0x25B;
	public static final int ERROR_INVALID_VARIANT = 0x25C;
	public static final int ERROR_BAD_COMPRESSION_BUFFER = 0x25D;
	public static final int ERROR_AUDIT_FAILED = 0x25E;
	public static final int ERROR_TIMER_RESOLUTION_NOT_SET = 0x25F;
	public static final int ERROR_INSUFFICIENT_LOGON_INFO = 0x260;
	public static final int ERROR_BAD_DLL_ENTRYPOINT = 0x261;
	public static final int ERROR_BAD_SERVICE_ENTRYPOINT = 0x262;
	public static final int ERROR_IP_ADDRESS_CONFLICT1 = 0x263;
	public static final int ERROR_IP_ADDRESS_CONFLICT2 = 0x264;
	public static final int ERROR_REGISTRY_QUOTA_LIMIT = 0x265;
	public static final int ERROR_NO_CALLBACK_ACTIVE = 0x266;
	public static final int ERROR_PWD_TOO_SHORT = 0x267;
	public static final int ERROR_PWD_TOO_RECENT = 0x268;
	public static final int ERROR_PWD_HISTORY_CONFLICT = 0x269;
	public static final int ERROR_UNSUPPORTED_COMPRESSION = 0x26A;
	public static final int ERROR_INVALID_HW_PROFILE = 0x26B;
	public static final int ERROR_INVALID_PLUGPLAY_DEVICE_PATH = 0x26C;
	public static final int ERROR_QUOTA_LIST_INCONSISTENT = 0x26D;
	public static final int ERROR_EVALUATION_EXPIRATION = 0x26E;
	public static final int ERROR_ILLEGAL_DLL_RELOCATION = 0x26F;
	public static final int ERROR_DLL_INIT_FAILED_LOGOFF = 0x270;
	public static final int ERROR_VALIDATE_CONTINUE = 0x271;
	public static final int ERROR_NO_MORE_MATCHES = 0x272;
	public static final int ERROR_RANGE_LIST_CONFLICT = 0x273;
	public static final int ERROR_SERVER_SID_MISMATCH = 0x274;
	public static final int ERROR_CANT_ENABLE_DENY_ONLY = 0x275;
	public static final int ERROR_FLOAT_MULTIPLE_FAULTS = 0x276;
	public static final int ERROR_FLOAT_MULTIPLE_TRAPS = 0x277;
	public static final int ERROR_NOINTERFACE = 0x278;
	public static final int ERROR_DRIVER_FAILED_SLEEP = 0x279;
	public static final int ERROR_CORRUPT_SYSTEM_FILE = 0x27A;
	public static final int ERROR_COMMITMENT_MINIMUM = 0x27B;
	public static final int ERROR_PNP_RESTART_ENUMERATION = 0x27C;
	public static final int ERROR_SYSTEM_IMAGE_BAD_SIGNATURE = 0x27D;
	public static final int ERROR_PNP_REBOOT_REQUIRED = 0x27E;
	public static final int ERROR_INSUFFICIENT_POWER = 0x27F;
	public static final int ERROR_MULTIPLE_FAULT_VIOLATION = 0x280;
	public static final int ERROR_SYSTEM_SHUTDOWN = 0x281;
	public static final int ERROR_PORT_NOT_SET = 0x282;
	public static final int ERROR_DS_VERSION_CHECK_FAILURE = 0x283;
	public static final int ERROR_RANGE_NOT_FOUND = 0x284;
	public static final int ERROR_NOT_SAFE_MODE_DRIVER = 0x286;
	public static final int ERROR_FAILED_DRIVER_ENTRY = 0x287;
	public static final int ERROR_DEVICE_ENUMERATION_ERROR = 0x288;
	public static final int ERROR_MOUNT_POINT_NOT_RESOLVED = 0x289;
	public static final int ERROR_INVALID_DEVICE_OBJECT_PARAMETER = 0x28A;
	public static final int ERROR_MCA_OCCURED = 0x28B;
	public static final int ERROR_DRIVER_DATABASE_ERROR = 0x28C;
	public static final int ERROR_SYSTEM_HIVE_TOO_LARGE = 0x28D;
	public static final int ERROR_DRIVER_FAILED_PRIOR_UNLOAD = 0x28E;
	public static final int ERROR_VOLSNAP_PREPARE_HIBERNATE = 0x28F;
	public static final int ERROR_HIBERNATION_FAILURE = 0x290;
	public static final int ERROR_PWD_TOO_LONG = 0x291;
	public static final int ERROR_FILE_SYSTEM_LIMITATION = 0x299;
	public static final int ERROR_ASSERTION_FAILURE = 0x29C;
	public static final int ERROR_ACPI_ERROR = 0x29D;
	public static final int ERROR_WOW_ASSERTION = 0x29E;
	public static final int ERROR_PNP_BAD_MPS_TABLE = 0x29F;
	public static final int ERROR_PNP_TRANSLATION_FAILED = 0x2A0;
	public static final int ERROR_PNP_IRQ_TRANSLATION_FAILED = 0x2A1;
	public static final int ERROR_PNP_INVALID_ID = 0x2A2;
	public static final int ERROR_WAKE_SYSTEM_DEBUGGER = 0x2A3;
	public static final int ERROR_HANDLES_CLOSED = 0x2A4;
	public static final int ERROR_EXTRANEOUS_INFORMATION = 0x2A5;
	public static final int ERROR_RXACT_COMMIT_NECESSARY = 0x2A6;
	public static final int ERROR_MEDIA_CHECK = 0x2A7;
	public static final int ERROR_GUID_SUBSTITUTION_MADE = 0x2A8;
	public static final int ERROR_STOPPED_ON_SYMLINK = 0x2A9;
	public static final int ERROR_LONGJUMP = 0x2AA;
	public static final int ERROR_PLUGPLAY_QUERY_VETOED = 0x2AB;
	public static final int ERROR_UNWIND_CONSOLIDATE = 0x2AC;
	public static final int ERROR_REGISTRY_HIVE_RECOVERED = 0x2AD;
	public static final int ERROR_DLL_MIGHT_BE_INSECURE = 0x2AE;
	public static final int ERROR_DLL_MIGHT_BE_INCOMPATIBLE = 0x2AF;
	public static final int ERROR_DBG_EXCEPTION_NOT_HANDLED = 0x2B0;
	public static final int ERROR_DBG_REPLY_LATER = 0x2B1;
	public static final int ERROR_DBG_UNABLE_TO_PROVIDE_HANDLE = 0x2B2;
	public static final int ERROR_DBG_TERMINATE_THREAD = 0x2B3;
	public static final int ERROR_DBG_TERMINATE_PROCESS = 0x2B4;
	public static final int ERROR_DBG_CONTROL_C = 0x2B5;
	public static final int ERROR_DBG_PRINTEXCEPTION_C = 0x2B6;
	public static final int ERROR_DBG_RIPEXCEPTION = 0x2B7;
	public static final int ERROR_DBG_CONTROL_BREAK = 0x2B8;
	public static final int ERROR_DBG_COMMAND_EXCEPTION = 0x2B9;
	public static final int ERROR_OBJECT_NAME_EXISTS = 0x2BA;
	public static final int ERROR_THREAD_WAS_SUSPENDED = 0x2BB;
	public static final int ERROR_IMAGE_NOT_AT_BASE = 0x2BC;
	public static final int ERROR_RXACT_STATE_CREATED = 0x2BD;
	public static final int ERROR_SEGMENT_NOTIFICATION = 0x2BE;
	public static final int ERROR_BAD_CURRENT_DIRECTORY = 0x2BF;
	public static final int ERROR_FT_READ_RECOVERY_FROM_BACKUP = 0x2C0;
	public static final int ERROR_FT_WRITE_RECOVERY = 0x2C1;
	public static final int ERROR_IMAGE_MACHINE_TYPE_MISMATCH = 0x2C2;
	public static final int ERROR_RECEIVE_PARTIAL = 0x2C3;
	public static final int ERROR_RECEIVE_EXPEDITED = 0x2C4;
	public static final int ERROR_RECEIVE_PARTIAL_EXPEDITED = 0x2C5;
	public static final int ERROR_EVENT_DONE = 0x2C6;
	public static final int ERROR_EVENT_PENDING = 0x2C7;
	public static final int ERROR_CHECKING_FILE_SYSTEM = 0x2C8;
	public static final int ERROR_FATAL_APP_EXIT = 0x2C9;
	public static final int ERROR_PREDEFINED_HANDLE = 0x2CA;
	public static final int ERROR_WAS_UNLOCKED = 0x2CB;
	public static final int ERROR_SERVICE_NOTIFICATION = 0x2CC;
	public static final int ERROR_WAS_LOCKED = 0x2CD;
	public static final int ERROR_LOG_HARD_ERROR = 0x2CE;
	public static final int ERROR_ALREADY_WIN32 = 0x2CF;
	public static final int ERROR_IMAGE_MACHINE_TYPE_MISMATCH_EXE = 0x2D0;
	public static final int ERROR_NO_YIELD_PERFORMED = 0x2D1;
	public static final int ERROR_TIMER_RESUME_IGNORED = 0x2D2;
	public static final int ERROR_ARBITRATION_UNHANDLED = 0x2D3;
	public static final int ERROR_CARDBUS_NOT_SUPPORTED = 0x2D4;
	public static final int ERROR_MP_PROCESSOR_MISMATCH = 0x2D5;
	public static final int ERROR_HIBERNATED = 0x2D6;
	public static final int ERROR_RESUME_HIBERNATION = 0x2D7;
	public static final int ERROR_FIRMWARE_UPDATED = 0x2D8;
	public static final int ERROR_DRIVERS_LEAKING_LOCKED_PAGES = 0x2D9;
	public static final int ERROR_WAKE_SYSTEM = 0x2DA;
	public static final int ERROR_WAIT_1 = 0x2DB;
	public static final int ERROR_WAIT_2 = 0x2DC;
	public static final int ERROR_WAIT_3 = 0x2DD;
	public static final int ERROR_WAIT_63 = 0x2DE;
	public static final int ERROR_ABANDONED_WAIT_0 = 0x2DF;
	public static final int ERROR_ABANDONED_WAIT_63 = 0x2E0;
	public static final int ERROR_USER_APC = 0x2E1;
	public static final int ERROR_KERNEL_APC = 0x2E2;
	public static final int ERROR_ALERTED = 0x2E3;
	public static final int ERROR_ELEVATION_REQUIRED = 0x2E4;
	public static final int ERROR_REPARSE = 0x2E5;
	public static final int ERROR_OPLOCK_BREAK_IN_PROGRESS = 0x2E6;
	public static final int ERROR_VOLUME_MOUNTED = 0x2E7;
	public static final int ERROR_RXACT_COMMITTED = 0x2E8;
	public static final int ERROR_NOTIFY_CLEANUP = 0x2E9;
	public static final int ERROR_PRIMARY_TRANSPORT_CONNECT_FAILED = 0x2EA;
	public static final int ERROR_PAGE_FAULT_TRANSITION = 0x2EB;
	public static final int ERROR_PAGE_FAULT_DEMAND_ZERO = 0x2EC;
	public static final int ERROR_PAGE_FAULT_COPY_ON_WRITE = 0x2ED;
	public static final int ERROR_PAGE_FAULT_GUARD_PAGE = 0x2EE;
	public static final int ERROR_PAGE_FAULT_PAGING_FILE = 0x2EF;
	public static final int ERROR_CACHE_PAGE_LOCKED = 0x2F0;
	public static final int ERROR_CRASH_DUMP = 0x2F1;
	public static final int ERROR_BUFFER_ALL_ZEROS = 0x2F2;
	public static final int ERROR_REPARSE_OBJECT = 0x2F3;
	public static final int ERROR_RESOURCE_REQUIREMENTS_CHANGED = 0x2F4;
	public static final int ERROR_TRANSLATION_COMPLETE = 0x2F5;
	public static final int ERROR_NOTHING_TO_TERMINATE = 0x2F6;
	public static final int ERROR_PROCESS_NOT_IN_JOB = 0x2F7;
	public static final int ERROR_PROCESS_IN_JOB = 0x2F8;
	public static final int ERROR_VOLSNAP_HIBERNATE_READY = 0x2F9;
	public static final int ERROR_FSFILTER_OP_COMPLETED_SUCCESSFULLY = 0x2FA;
	public static final int ERROR_INTERRUPT_VECTOR_ALREADY_CONNECTED = 0x2FB;
	public static final int ERROR_INTERRUPT_STILL_CONNECTED = 0x2FC;
	public static final int ERROR_WAIT_FOR_OPLOCK = 0x2FD;
	public static final int ERROR_DBG_EXCEPTION_HANDLED = 0x2FE;
	public static final int ERROR_DBG_CONTINUE = 0x2FF;
	public static final int ERROR_CALLBACK_POP_STACK = 0x300;
	public static final int ERROR_COMPRESSION_DISABLED = 0x301;
	public static final int ERROR_CANTFETCHBACKWARDS = 0x302;
	public static final int ERROR_CANTSCROLLBACKWARDS = 0x303;
	public static final int ERROR_ROWSNOTRELEASED = 0x304;
	public static final int ERROR_BAD_ACCESSOR_FLAGS = 0x305;
	public static final int ERROR_ERRORS_ENCOUNTERED = 0x306;
	public static final int ERROR_NOT_CAPABLE = 0x307;
	public static final int ERROR_REQUEST_OUT_OF_SEQUENCE = 0x308;
	public static final int ERROR_VERSION_PARSE_ERROR = 0x309;
	public static final int ERROR_BADSTARTPOSITION = 0x30A;
	public static final int ERROR_MEMORY_HARDWARE = 0x30B;
	public static final int ERROR_DISK_REPAIR_DISABLED = 0x30C;
	public static final int ERROR_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE = 0x30D;
	public static final int ERROR_SYSTEM_POWERSTATE_TRANSITION = 0x30E;
	public static final int ERROR_SYSTEM_POWERSTATE_COMPLEX_TRANSITION = 0x30F;
	public static final int ERROR_MCA_EXCEPTION = 0x310;
	public static final int ERROR_ACCESS_AUDIT_BY_POLICY = 0x311;
	public static final int ERROR_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY = 0x312;
	public static final int ERROR_ABANDON_HIBERFILE = 0x313;
	public static final int ERROR_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED = 0x314;
	public static final int ERROR_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR = 0x315;
	public static final int ERROR_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR = 0x316;
	public static final int ERROR_BAD_MCFG_TABLE = 0x317;
	public static final int ERROR_DISK_REPAIR_REDIRECTED = 0x318;
	public static final int ERROR_DISK_REPAIR_UNSUCCESSFUL = 0x319;
	public static final int ERROR_CORRUPT_LOG_OVERFULL = 0x31A;
	public static final int ERROR_CORRUPT_LOG_CORRUPTED = 0x31B;
	public static final int ERROR_CORRUPT_LOG_UNAVAILABLE = 0x31C;
	public static final int ERROR_CORRUPT_LOG_DELETED_FULL = 0x31D;
	public static final int ERROR_CORRUPT_LOG_CLEARED = 0x31E;
	public static final int ERROR_ORPHAN_NAME_EXHAUSTED = 0x31F;
	public static final int ERROR_OPLOCK_SWITCHED_TO_NEW_HANDLE = 0x320;
	public static final int ERROR_CANNOT_GRANT_REQUESTED_OPLOCK = 0x321;
	public static final int ERROR_CANNOT_BREAK_OPLOCK = 0x322;
	public static final int ERROR_OPLOCK_HANDLE_CLOSED = 0x323;
	public static final int ERROR_NO_ACE_CONDITION = 0x324;
	public static final int ERROR_INVALID_ACE_CONDITION = 0x325;
	public static final int ERROR_FILE_HANDLE_REVOKED = 0x326;
	public static final int ERROR_IMAGE_AT_DIFFERENT_BASE = 0x327;
	public static final int ERROR_EA_ACCESS_DENIED = 0x3E2;
	public static final int ERROR_OPERATION_ABORTED = 0x3E3;
	public static final int ERROR_IO_INCOMPLETE = 0x3E4;
	public static final int ERROR_IO_PENDING = 0x3E5;
	public static final int ERROR_NOACCESS = 0x3E6;
	public static final int ERROR_SWAPERROR = 0x3E7;
	public static final int ERROR_STACK_OVERFLOW = 0x3E9;
	public static final int ERROR_INVALID_MESSAGE = 0x3EA;
	public static final int ERROR_CAN_NOT_COMPLETE = 0x3EB;
	public static final int ERROR_INVALID_FLAGS = 0x3EC;
	public static final int ERROR_UNRECOGNIZED_VOLUME = 0x3ED;
	public static final int ERROR_FILE_INVALID = 0x3EE;
	public static final int ERROR_FULLSCREEN_MODE = 0x3EF;
	public static final int ERROR_NO_TOKEN = 0x3F0;
	public static final int ERROR_BADDB = 0x3F1;
	public static final int ERROR_BADKEY = 0x3F2;
	public static final int ERROR_CANTOPEN = 0x3F3;
	public static final int ERROR_CANTREAD = 0x3F4;
	public static final int ERROR_CANTWRITE = 0x3F5;
	public static final int ERROR_REGISTRY_RECOVERED = 0x3F6;
	public static final int ERROR_REGISTRY_CORRUPT = 0x3F7;
	public static final int ERROR_REGISTRY_IO_FAILED = 0x3F8;
	public static final int ERROR_NOT_REGISTRY_FILE = 0x3F9;
	public static final int ERROR_KEY_DELETED = 0x3FA;
	public static final int ERROR_NO_LOG_SPACE = 0x3FB;
	public static final int ERROR_KEY_HAS_CHILDREN = 0x3FC;
	public static final int ERROR_CHILD_MUST_BE_VOLATILE = 0x3FD;
	public static final int ERROR_NOTIFY_ENUM_DIR = 0x3FE;
	public static final int ERROR_DEPENDENT_SERVICES_RUNNING = 0x41B;
	public static final int ERROR_INVALID_SERVICE_CONTROL = 0x41C;
	public static final int ERROR_SERVICE_REQUEST_TIMEOUT = 0x41D;
	public static final int ERROR_SERVICE_NO_THREAD = 0x41E;
	public static final int ERROR_SERVICE_DATABASE_LOCKED = 0x41F;
	public static final int ERROR_SERVICE_ALREADY_RUNNING = 0x420;
	public static final int ERROR_INVALID_SERVICE_ACCOUNT = 0x421;
	public static final int ERROR_SERVICE_DISABLED = 0x422;
	public static final int ERROR_CIRCULAR_DEPENDENCY = 0x423;
	public static final int ERROR_SERVICE_DOES_NOT_EXIST = 0x424;
	public static final int ERROR_SERVICE_CANNOT_ACCEPT_CTRL = 0x425;
	public static final int ERROR_SERVICE_NOT_ACTIVE = 0x426;
	public static final int ERROR_FAILED_SERVICE_CONTROLLER_CONNECT = 0x427;
	public static final int ERROR_EXCEPTION_IN_SERVICE = 0x428;
	public static final int ERROR_DATABASE_DOES_NOT_EXIST = 0x429;
	public static final int ERROR_SERVICE_SPECIFIC_ERROR = 0x42A;
	public static final int ERROR_PROCESS_ABORTED = 0x42B;
	public static final int ERROR_SERVICE_DEPENDENCY_FAIL = 0x42C;
	public static final int ERROR_SERVICE_LOGON_FAILED = 0x42D;
	public static final int ERROR_SERVICE_START_HANG = 0x42E;
	public static final int ERROR_INVALID_SERVICE_LOCK = 0x42F;
	public static final int ERROR_SERVICE_MARKED_FOR_DELETE = 0x430;
	public static final int ERROR_SERVICE_EXISTS = 0x431;
	public static final int ERROR_ALREADY_RUNNING_LKG = 0x432;
	public static final int ERROR_SERVICE_DEPENDENCY_DELETED = 0x433;
	public static final int ERROR_BOOT_ALREADY_ACCEPTED = 0x434;
	public static final int ERROR_SERVICE_NEVER_STARTED = 0x435;
	public static final int ERROR_DUPLICATE_SERVICE_NAME = 0x436;
	public static final int ERROR_DIFFERENT_SERVICE_ACCOUNT = 0x437;
	public static final int ERROR_CANNOT_DETECT_DRIVER_FAILURE = 0x438;
	public static final int ERROR_CANNOT_DETECT_PROCESS_ABORT = 0x439;
	public static final int ERROR_NO_RECOVERY_PROGRAM = 0x43A;
	public static final int ERROR_SERVICE_NOT_IN_EXE = 0x43B;
	public static final int ERROR_NOT_SAFEBOOT_SERVICE = 0x43C;
	public static final int ERROR_END_OF_MEDIA = 0x44C;
	public static final int ERROR_FILEMARK_DETECTED = 0x44D;
	public static final int ERROR_BEGINNING_OF_MEDIA = 0x44E;
	public static final int ERROR_SETMARK_DETECTED = 0x44F;
	public static final int ERROR_NO_DATA_DETECTED = 0x450;
	public static final int ERROR_PARTITION_FAILURE = 0x451;
	public static final int ERROR_INVALID_BLOCK_LENGTH = 0x452;
	public static final int ERROR_DEVICE_NOT_PARTITIONED = 0x453;
	public static final int ERROR_UNABLE_TO_LOCK_MEDIA = 0x454;
	public static final int ERROR_UNABLE_TO_UNLOAD_MEDIA = 0x455;
	public static final int ERROR_MEDIA_CHANGED = 0x456;
	public static final int ERROR_BUS_RESET = 0x457;
	public static final int ERROR_NO_MEDIA_IN_DRIVE = 0x458;
	public static final int ERROR_NO_UNICODE_TRANSLATION = 0x459;
	public static final int ERROR_DLL_INIT_FAILED = 0x45A;
	public static final int ERROR_SHUTDOWN_IN_PROGRESS = 0x45B;
	public static final int ERROR_NO_SHUTDOWN_IN_PROGRESS = 0x45C;
	public static final int ERROR_IO_DEVICE = 0x45D;
	public static final int ERROR_SERIAL_NO_DEVICE = 0x45E;
	public static final int ERROR_IRQ_BUSY = 0x45F;
	public static final int ERROR_MORE_WRITES = 0x460;
	public static final int ERROR_COUNTER_TIMEOUT = 0x461;
	public static final int ERROR_FLOPPY_ID_MARK_NOT_FOUND = 0x462;
	public static final int ERROR_FLOPPY_WRONG_CYLINDER = 0x463;
	public static final int ERROR_FLOPPY_UNKNOWN_ERROR = 0x464;
	public static final int ERROR_FLOPPY_BAD_REGISTERS = 0x465;
	public static final int ERROR_DISK_RECALIBRATE_FAILED = 0x466;
	public static final int ERROR_DISK_OPERATION_FAILED = 0x467;
	public static final int ERROR_DISK_RESET_FAILED = 0x468;
	public static final int ERROR_EOM_OVERFLOW = 0x469;
	public static final int ERROR_NOT_ENOUGH_SERVER_MEMORY = 0x46A;
	public static final int ERROR_POSSIBLE_DEADLOCK = 0x46B;
	public static final int ERROR_MAPPED_ALIGNMENT = 0x46C;
	public static final int ERROR_SET_POWER_STATE_VETOED = 0x474;
	public static final int ERROR_SET_POWER_STATE_FAILED = 0x475;
	public static final int ERROR_TOO_MANY_LINKS = 0x476;
	public static final int ERROR_OLD_WIN_VERSION = 0x47E;
	public static final int ERROR_APP_WRONG_OS = 0x47F;
	public static final int ERROR_SINGLE_INSTANCE_APP = 0x480;
	public static final int ERROR_RMODE_APP = 0x481;
	public static final int ERROR_INVALID_DLL = 0x482;
	public static final int ERROR_NO_ASSOCIATION = 0x483;
	public static final int ERROR_DDE_FAIL = 0x484;
	public static final int ERROR_DLL_NOT_FOUND = 0x485;
	public static final int ERROR_NO_MORE_USER_HANDLES = 0x486;
	public static final int ERROR_MESSAGE_SYNC_ONLY = 0x487;
	public static final int ERROR_SOURCE_ELEMENT_EMPTY = 0x488;
	public static final int ERROR_DESTINATION_ELEMENT_FULL = 0x489;
	public static final int ERROR_ILLEGAL_ELEMENT_ADDRESS = 0x48A;
	public static final int ERROR_MAGAZINE_NOT_PRESENT = 0x48B;
	public static final int ERROR_DEVICE_REINITIALIZATION_NEEDED = 0x48C;
	public static final int ERROR_DEVICE_REQUIRES_CLEANING = 0x48D;
	public static final int ERROR_DEVICE_DOOR_OPEN = 0x48E;
	public static final int ERROR_DEVICE_NOT_CONNECTED = 0x48F;
	public static final int ERROR_NOT_FOUND = 0x490;
	public static final int ERROR_NO_MATCH = 0x491;
	public static final int ERROR_SET_NOT_FOUND = 0x492;
	public static final int ERROR_POINT_NOT_FOUND = 0x493;
	public static final int ERROR_NO_TRACKING_SERVICE = 0x494;
	public static final int ERROR_NO_VOLUME_ID = 0x495;
	public static final int ERROR_UNABLE_TO_REMOVE_REPLACED = 0x497;
	public static final int ERROR_UNABLE_TO_MOVE_REPLACEMENT = 0x498;
	public static final int ERROR_UNABLE_TO_MOVE_REPLACEMENT_2 = 0x499;
	public static final int ERROR_JOURNAL_DELETE_IN_PROGRESS = 0x49A;
	public static final int ERROR_JOURNAL_NOT_ACTIVE = 0x49B;
	public static final int ERROR_POTENTIAL_FILE_FOUND = 0x49C;
	public static final int ERROR_JOURNAL_ENTRY_DELETED = 0x49D;
	public static final int ERROR_SHUTDOWN_IS_SCHEDULED = 0x4A6;
	public static final int ERROR_SHUTDOWN_USERS_LOGGED_ON = 0x4A7;
	public static final int ERROR_BAD_DEVICE = 0x4B0;
	public static final int ERROR_CONNECTION_UNAVAIL = 0x4B1;
	public static final int ERROR_DEVICE_ALREADY_REMEMBERED = 0x4B2;
	public static final int ERROR_NO_NET_OR_BAD_PATH = 0x4B3;
	public static final int ERROR_BAD_PROVIDER = 0x4B4;
	public static final int ERROR_CANNOT_OPEN_PROFILE = 0x4B5;
	public static final int ERROR_BAD_PROFILE = 0x4B6;
	public static final int ERROR_NOT_CONTAINER = 0x4B7;
	public static final int ERROR_EXTENDED_ERROR = 0x4B8;
	public static final int ERROR_INVALID_GROUPNAME = 0x4B9;
	public static final int ERROR_INVALID_COMPUTERNAME = 0x4BA;
	public static final int ERROR_INVALID_EVENTNAME = 0x4BB;
	public static final int ERROR_INVALID_DOMAINNAME = 0x4BC;
	public static final int ERROR_INVALID_SERVICENAME = 0x4BD;
	public static final int ERROR_INVALID_NETNAME = 0x4BE;
	public static final int ERROR_INVALID_SHARENAME = 0x4BF;
	public static final int ERROR_INVALID_PASSWORDNAME = 0x4C0;
	public static final int ERROR_INVALID_MESSAGENAME = 0x4C1;
	public static final int ERROR_INVALID_MESSAGEDEST = 0x4C2;
	public static final int ERROR_SESSION_CREDENTIAL_CONFLICT = 0x4C3;
	public static final int ERROR_REMOTE_SESSION_LIMIT_EXCEEDED = 0x4C4;
	public static final int ERROR_DUP_DOMAINNAME = 0x4C5;
	public static final int ERROR_NO_NETWORK = 0x4C6;
	public static final int ERROR_CANCELLED = 0x4C7;
	public static final int ERROR_USER_MAPPED_FILE = 0x4C8;
	public static final int ERROR_CONNECTION_REFUSED = 0x4C9;
	public static final int ERROR_GRACEFUL_DISCONNECT = 0x4CA;
	public static final int ERROR_ADDRESS_ALREADY_ASSOCIATED = 0x4CB;
	public static final int ERROR_ADDRESS_NOT_ASSOCIATED = 0x4CC;
	public static final int ERROR_CONNECTION_INVALID = 0x4CD;
	public static final int ERROR_CONNECTION_ACTIVE = 0x4CE;
	public static final int ERROR_NETWORK_UNREACHABLE = 0x4CF;
	public static final int ERROR_HOST_UNREACHABLE = 0x4D0;
	public static final int ERROR_PROTOCOL_UNREACHABLE = 0x4D1;
	public static final int ERROR_PORT_UNREACHABLE = 0x4D2;
	public static final int ERROR_REQUEST_ABORTED = 0x4D3;
	public static final int ERROR_CONNECTION_ABORTED = 0x4D4;
	public static final int ERROR_RETRY = 0x4D5;
	public static final int ERROR_CONNECTION_COUNT_LIMIT = 0x4D6;
	public static final int ERROR_LOGIN_TIME_RESTRICTION = 0x4D7;
	public static final int ERROR_LOGIN_WKSTA_RESTRICTION = 0x4D8;
	public static final int ERROR_INCORRECT_ADDRESS = 0x4D9;
	public static final int ERROR_ALREADY_REGISTERED = 0x4DA;
	public static final int ERROR_SERVICE_NOT_FOUND = 0x4DB;
	public static final int ERROR_NOT_AUTHENTICATED = 0x4DC;
	public static final int ERROR_NOT_LOGGED_ON = 0x4DD;
	public static final int ERROR_CONTINUE = 0x4DE;
	public static final int ERROR_ALREADY_INITIALIZED = 0x4DF;
	public static final int ERROR_NO_MORE_DEVICES = 0x4E0;
	public static final int ERROR_NO_SUCH_SITE = 0x4E1;
	public static final int ERROR_DOMAIN_CONTROLLER_EXISTS = 0x4E2;
	public static final int ERROR_ONLY_IF_CONNECTED = 0x4E3;
	public static final int ERROR_OVERRIDE_NOCHANGES = 0x4E4;
	public static final int ERROR_BAD_USER_PROFILE = 0x4E5;
	public static final int ERROR_NOT_SUPPORTED_ON_SBS = 0x4E6;
	public static final int ERROR_SERVER_SHUTDOWN_IN_PROGRESS = 0x4E7;
	public static final int ERROR_HOST_DOWN = 0x4E8;
	public static final int ERROR_NON_ACCOUNT_SID = 0x4E9;
	public static final int ERROR_NON_DOMAIN_SID = 0x4EA;
	public static final int ERROR_APPHELP_BLOCK = 0x4EB;
	public static final int ERROR_ACCESS_DISABLED_BY_POLICY = 0x4EC;
	public static final int ERROR_REG_NAT_CONSUMPTION = 0x4ED;
	public static final int ERROR_CSCSHARE_OFFLINE = 0x4EE;
	public static final int ERROR_PKINIT_FAILURE = 0x4EF;
	public static final int ERROR_SMARTCARD_SUBSYSTEM_FAILURE = 0x4F0;
	public static final int ERROR_DOWNGRADE_DETECTED = 0x4F1;
	public static final int ERROR_MACHINE_LOCKED = 0x4F7;
	public static final int ERROR_CALLBACK_SUPPLIED_INVALID_DATA = 0x4F9;
	public static final int ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED = 0x4FA;
	public static final int ERROR_DRIVER_BLOCKED = 0x4FB;
	public static final int ERROR_INVALID_IMPORT_OF_NON_DLL = 0x4FC;
	public static final int ERROR_ACCESS_DISABLED_WEBBLADE = 0x4FD;
	public static final int ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER = 0x4FE;
	public static final int ERROR_RECOVERY_FAILURE = 0x4FF;
	public static final int ERROR_ALREADY_FIBER = 0x500;
	public static final int ERROR_ALREADY_THREAD = 0x501;
	public static final int ERROR_STACK_BUFFER_OVERRUN = 0x502;
	public static final int ERROR_PARAMETER_QUOTA_EXCEEDED = 0x503;
	public static final int ERROR_DEBUGGER_INACTIVE = 0x504;
	public static final int ERROR_DELAY_LOAD_FAILED = 0x505;
	public static final int ERROR_VDM_DISALLOWED = 0x506;
	public static final int ERROR_UNIDENTIFIED_ERROR = 0x507;
	public static final int ERROR_INVALID_CRUNTIME_PARAMETER = 0x508;
	public static final int ERROR_BEYOND_VDL = 0x509;
	public static final int ERROR_INCOMPATIBLE_SERVICE_SID_TYPE = 0x50A;
	public static final int ERROR_DRIVER_PROCESS_TERMINATED = 0x50B;
	public static final int ERROR_IMPLEMENTATION_LIMIT = 0x50C;
	public static final int ERROR_PROCESS_IS_PROTECTED = 0x50D;
	public static final int ERROR_SERVICE_NOTIFY_CLIENT_LAGGING = 0x50E;
	public static final int ERROR_DISK_QUOTA_EXCEEDED = 0x50F;
	public static final int ERROR_CONTENT_BLOCKED = 0x510;
	public static final int ERROR_INCOMPATIBLE_SERVICE_PRIVILEGE = 0x511;
	public static final int ERROR_APP_HANG = 0x512;
	public static final int ERROR_INVALID_LABEL = 0x513;
	public static final int NOT_ALL_ASSIGNED = 0x514;
	public static final int ERROR_SOME_NOT_MAPPED = 0x515;
	public static final int ERROR_NO_QUOTAS_FOR_ACCOUNT = 0x516;
	public static final int ERROR_LOCAL_USER_SESSION_KEY = 0x517;
	public static final int ERROR_NULL_LM_PASSWORD = 0x518;
	public static final int ERROR_UNKNOWN_REVISION = 0x519;
	public static final int ERROR_REVISION_MISMATCH = 0x51A;
	public static final int ERROR_INVALID_OWNER = 0x51B;
	public static final int ERROR_INVALID_PRIMARY_GROUP = 0x51C;
	public static final int ERROR_NO_IMPERSONATION_TOKEN = 0x51D;
	public static final int ERROR_CANT_DISABLE_MANDATORY = 0x51E;
	public static final int ERROR_NO_LOGON_SERVERS = 0x51F;
	public static final int ERROR_NO_SUCH_LOGON_SESSION = 0x520;
	public static final int ERROR_NO_SUCH_PRIVILEGE = 0x521;
	public static final int ERROR_PRIVILEGE_NOT_HELD = 0x522;
	public static final int ERROR_INVALID_ACCOUNT_NAME = 0x523;
	public static final int ERROR_USER_EXISTS = 0x524;
	public static final int ERROR_NO_SUCH_USER = 0x525;
	public static final int ERROR_GROUP_EXISTS = 0x526;
	public static final int ERROR_NO_SUCH_GROUP = 0x527;
	public static final int ERROR_MEMBER_IN_GROUP = 0x528;
	public static final int ERROR_MEMBER_NOT_IN_GROUP = 0x529;
	public static final int ERROR_LAST_ADMIN = 0x52A;
	public static final int ERROR_WRONG_PASSWORD = 0x52B;
	public static final int ERROR_ILL_FORMED_PASSWORD = 0x52C;
	public static final int ERROR_PASSWORD_RESTRICTION = 0x52D;
	public static final int ERROR_LOGON_FAILURE = 0x52E;
	public static final int ERROR_ACCOUNT_RESTRICTION = 0x52F;
	public static final int ERROR_INVALID_LOGON_HOURS = 0x530;
	public static final int ERROR_INVALID_WORKSTATION = 0x531;
	public static final int ERROR_PASSWORD_EXPIRED = 0x532;
	public static final int ERROR_ACCOUNT_DISABLED = 0x533;
	public static final int ERROR_NONE_MAPPED = 0x534;
	public static final int ERROR_TOO_MANY_LUIDS_REQUESTED = 0x535;
	public static final int ERROR_LUIDS_EXHAUSTED = 0x536;
	public static final int ERROR_INVALID_SUB_AUTHORITY = 0x537;
	public static final int ERROR_INVALID_ACL = 0x538;
	public static final int ERROR_INVALID_SID = 0x539;
	public static final int ERROR_INVALID_SECURITY_DESCR = 0x53A;
	public static final int ERROR_BAD_INHERITANCE_ACL = 0x53C;
	public static final int ERROR_SERVER_DISABLED = 0x53D;
	public static final int ERROR_SERVER_NOT_DISABLED = 0x53E;
	public static final int ERROR_INVALID_ID_AUTHORITY = 0x53F;
	public static final int ERROR_ALLOTTED_SPACE_EXCEEDED = 0x540;
	public static final int ERROR_INVALID_GROUP_ATTRIBUTES = 0x541;
	public static final int ERROR_BAD_IMPERSONATION_LEVEL = 0x542;
	public static final int ERROR_CANT_OPEN_ANONYMOUS = 0x543;
	public static final int ERROR_BAD_VALIDATION_CLASS = 0x544;
	public static final int ERROR_BAD_TOKEN_TYPE = 0x545;
	public static final int ERROR_NO_SECURITY_ON_OBJECT = 0x546;
	public static final int ERROR_CANT_ACCESS_DOMAIN_INFO = 0x547;
	public static final int ERROR_INVALID_SERVER_STATE = 0x548;
	public static final int ERROR_INVALID_DOMAIN_STATE = 0x549;
	public static final int ERROR_INVALID_DOMAIN_ROLE = 0x54A;
	public static final int ERROR_NO_SUCH_DOMAIN = 0x54B;
	public static final int ERROR_DOMAIN_EXISTS = 0x54C;
	public static final int ERROR_DOMAIN_LIMIT_EXCEEDED = 0x54D;
	public static final int ERROR_INTERNAL_DB_CORRUPTION = 0x54E;
	public static final int ERROR_INTERNAL_ERROR = 0x54F;
	public static final int ERROR_GENERIC_NOT_MAPPED = 0x550;
	public static final int ERROR_BAD_DESCRIPTOR_FORMAT = 0x551;
	public static final int ERROR_NOT_LOGON_PROCESS = 0x552;
	public static final int ERROR_LOGON_SESSION_EXISTS = 0x553;
	public static final int ERROR_NO_SUCH_PACKAGE = 0x554;
	public static final int ERROR_BAD_LOGON_SESSION_STATE = 0x555;
	public static final int ERROR_LOGON_SESSION_COLLISION = 0x556;
	public static final int ERROR_INVALID_LOGON_TYPE = 0x557;
	public static final int ERROR_CANNOT_IMPERSONATE = 0x558;
	public static final int ERROR_RXACT_INVALID_STATE = 0x559;
	public static final int ERROR_RXACT_COMMIT_FAILURE = 0x55A;
	public static final int ERROR_SPECIAL_ACCOUNT = 0x55B;
	public static final int ERROR_SPECIAL_GROUP = 0x55C;
	public static final int ERROR_SPECIAL_USER = 0x55D;
	public static final int ERROR_MEMBERS_PRIMARY_GROUP = 0x55E;
	public static final int ERROR_TOKEN_ALREADY_IN_USE = 0x55F;
	public static final int ERROR_NO_SUCH_ALIAS = 0x560;
	public static final int ERROR_MEMBER_NOT_IN_ALIAS = 0x561;
	public static final int ERROR_MEMBER_IN_ALIAS = 0x562;
	public static final int ERROR_ALIAS_EXISTS = 0x563;
	public static final int ERROR_LOGON_NOT_GRANTED = 0x564;
	public static final int ERROR_TOO_MANY_SECRETS = 0x565;
	public static final int ERROR_SECRET_TOO_LONG = 0x566;
	public static final int ERROR_INTERNAL_DB_ERROR = 0x567;
	public static final int ERROR_TOO_MANY_CONTEXT_IDS = 0x568;
	public static final int ERROR_LOGON_TYPE_NOT_GRANTED = 0x569;
	public static final int ERROR_NT_CROSS_ENCRYPTION_REQUIRED = 0x56A;
	public static final int ERROR_NO_SUCH_MEMBER = 0x56B;
	public static final int ERROR_INVALID_MEMBER = 0x56C;
	public static final int ERROR_TOO_MANY_SIDS = 0x56D;
	public static final int ERROR_LM_CROSS_ENCRYPTION_REQUIRED = 0x56E;
	public static final int ERROR_NO_INHERITANCE = 0x56F;
	public static final int ERROR_FILE_CORRUPT = 0x570;
	public static final int ERROR_DISK_CORRUPT = 0x571;
	public static final int ERROR_NO_USER_SESSION_KEY = 0x572;
	public static final int ERROR_LICENSE_QUOTA_EXCEEDED = 0x573;
	public static final int ERROR_WRONG_TARGET_NAME = 0x574;
	public static final int ERROR_MUTUAL_AUTH_FAILED = 0x575;
	public static final int ERROR_TIME_SKEW = 0x576;
	public static final int ERROR_CURRENT_DOMAIN_NOT_ALLOWED = 0x577;
	public static final int ERROR_INVALID_WINDOW_HANDLE = 0x578;
	public static final int ERROR_INVALID_MENU_HANDLE = 0x579;
	public static final int ERROR_INVALID_CURSOR_HANDLE = 0x57A;
	public static final int ERROR_INVALID_ACCEL_HANDLE = 0x57B;
	public static final int ERROR_INVALID_HOOK_HANDLE = 0x57C;
	public static final int ERROR_INVALID_DWP_HANDLE = 0x57D;
	public static final int ERROR_TLW_WITH_WSCHILD = 0x57E;
	public static final int ERROR_CANNOT_FIND_WND_CLASS = 0x57F;
	public static final int ERROR_WINDOW_OF_OTHER_THREAD = 0x580;
	public static final int ERROR_HOTKEY_ALREADY_REGISTERED = 0x581;
	public static final int ERROR_CLASS_ALREADY_EXISTS = 0x582;
	public static final int ERROR_CLASS_DOES_NOT_EXIST = 0x583;
	public static final int ERROR_CLASS_HAS_WINDOWS = 0x584;
	public static final int ERROR_INVALID_INDEX = 0x585;
	public static final int ERROR_INVALID_ICON_HANDLE = 0x586;
	public static final int ERROR_PRIVATE_DIALOG_INDEX = 0x587;
	public static final int ERROR_LISTBOX_ID_NOT_FOUND = 0x588;
	public static final int ERROR_NO_WILDCARD_CHARACTERS = 0x589;
	public static final int ERROR_CLIPBOARD_NOT_OPEN = 0x58A;
	public static final int ERROR_HOTKEY_NOT_REGISTERED = 0x58B;
	public static final int ERROR_WINDOW_NOT_DIALOG = 0x58C;
	public static final int ERROR_CONTROL_ID_NOT_FOUND = 0x58D;
	public static final int ERROR_INVALID_COMBOBOX_MESSAGE = 0x58E;
	public static final int ERROR_WINDOW_NOT_COMBOBOX = 0x58F;
	public static final int ERROR_INVALID_EDIT_HEIGHT = 0x590;
	public static final int ERROR_DC_NOT_FOUND = 0x591;
	public static final int ERROR_INVALID_HOOK_FILTER = 0x592;
	public static final int ERROR_INVALID_FILTER_PROC = 0x593;
	public static final int ERROR_HOOK_NEEDS_HMOD = 0x594;
	public static final int ERROR_GLOBAL_ONLY_HOOK = 0x595;
	public static final int ERROR_JOURNAL_HOOK_SET = 0x596;
	public static final int ERROR_HOOK_NOT_INSTALLED = 0x597;
	public static final int ERROR_INVALID_LB_MESSAGE = 0x598;
	public static final int ERROR_SETCOUNT_ON_BAD_LB = 0x599;
	public static final int ERROR_LB_WITHOUT_TABSTOPS = 0x59A;
	public static final int ERROR_DESTROY_OBJECT_OF_OTHER_THREAD = 0x59B;
	public static final int ERROR_CHILD_WINDOW_MENU = 0x59C;
	public static final int ERROR_NO_SYSTEM_MENU = 0x59D;
	public static final int ERROR_INVALID_MSGBOX_STYLE = 0x59E;
	public static final int ERROR_INVALID_SPI_VALUE = 0x59F;
	public static final int ERROR_SCREEN_ALREADY_LOCKED = 0x5A0;
	public static final int ERROR_HWNDS_HAVE_DIFF_PARENT = 0x5A1;
	public static final int ERROR_NOT_CHILD_WINDOW = 0x5A2;
	public static final int ERROR_INVALID_GW_COMMAND = 0x5A3;
	public static final int ERROR_INVALID_THREAD_ID = 0x5A4;
	public static final int ERROR_NON_MDICHILD_WINDOW = 0x5A5;
	public static final int ERROR_POPUP_ALREADY_ACTIVE = 0x5A6;
	public static final int ERROR_NO_SCROLLBARS = 0x5A7;
	public static final int ERROR_INVALID_SCROLLBAR_RANGE = 0x5A8;
	public static final int ERROR_INVALID_SHOWWIN_COMMAND = 0x5A9;
	public static final int ERROR_NO_SYSTEM_RESOURCES = 0x5AA;
	public static final int ERROR_NONPAGED_SYSTEM_RESOURCES = 0x5AB;
	public static final int ERROR_PAGED_SYSTEM_RESOURCES = 0x5AC;
	public static final int ERROR_WORKING_SET_QUOTA = 0x5AD;
	public static final int ERROR_PAGEFILE_QUOTA = 0x5AE;
	public static final int ERROR_COMMITMENT_LIMIT = 0x5AF;
	public static final int ERROR_MENU_ITEM_NOT_FOUND = 0x5B0;
	public static final int ERROR_INVALID_KEYBOARD_HANDLE = 0x5B1;
	public static final int ERROR_HOOK_TYPE_NOT_ALLOWED = 0x5B2;
	public static final int ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION = 0x5B3;
	public static final int ERROR_TIMEOUT = 0x5B4;
	public static final int ERROR_INVALID_MONITOR_HANDLE = 0x5B5;
	public static final int ERROR_INCORRECT_SIZE = 0x5B6;
	public static final int ERROR_SYMLINK_CLASS_DISABLED = 0x5B7;
	public static final int ERROR_SYMLINK_NOT_SUPPORTED = 0x5B8;
	public static final int ERROR_XML_PARSE_ERROR = 0x5B9;
	public static final int ERROR_XMLDSIG_ERROR = 0x5BA;
	public static final int ERROR_RESTART_APPLICATION = 0x5BB;
	public static final int ERROR_WRONG_COMPARTMENT = 0x5BC;
	public static final int ERROR_AUTHIP_FAILURE = 0x5BD;
	public static final int ERROR_NO_NVRAM_RESOURCES = 0x5BE;
	public static final int ERROR_NOT_GUI_PROCESS = 0x5BF;
	public static final int ERROR_EVENTLOG_FILE_CORRUPT = 0x5DC;
	public static final int ERROR_EVENTLOG_CANT_START = 0x5DD;
	public static final int ERROR_LOG_FILE_FULL = 0x5DE;
	public static final int ERROR_EVENTLOG_FILE_CHANGED = 0x5DF;
	public static final int ERROR_INVALID_TASK_NAME = 0x60E;
	public static final int ERROR_INVALID_TASK_INDEX = 0x60F;
	public static final int ERROR_THREAD_ALREADY_IN_TASK = 0x610;
	public static final int ERROR_INSTALL_SERVICE_FAILURE = 0x641;
	public static final int ERROR_INSTALL_USEREXIT = 0x642;
	public static final int ERROR_INSTALL_FAILURE = 0x643;
	public static final int ERROR_INSTALL_SUSPEND = 0x644;
	public static final int ERROR_UNKNOWN_PRODUCT = 0x645;
	public static final int ERROR_UNKNOWN_FEATURE = 0x646;
	public static final int ERROR_UNKNOWN_COMPONENT = 0x647;
	public static final int ERROR_UNKNOWN_PROPERTY = 0x648;
	public static final int ERROR_INVALID_HANDLE_STATE = 0x649;
	public static final int ERROR_BAD_CONFIGURATION = 0x64A;
	public static final int ERROR_INDEX_ABSENT = 0x64B;
	public static final int ERROR_INSTALL_SOURCE_ABSENT = 0x64C;
	public static final int ERROR_INSTALL_PACKAGE_VERSION = 0x64D;
	public static final int ERROR_PRODUCT_UNINSTALLED = 0x64E;
	public static final int ERROR_BAD_QUERY_SYNTAX = 0x64F;
	public static final int ERROR_INVALID_FIELD = 0x650;
	public static final int ERROR_DEVICE_REMOVED = 0x651;
	public static final int ERROR_INSTALL_ALREADY_RUNNING = 0x652;
	public static final int ERROR_INSTALL_PACKAGE_OPEN_FAILED = 0x653;
	public static final int ERROR_INSTALL_PACKAGE_INVALID = 0x654;
	public static final int ERROR_INSTALL_UI_FAILURE = 0x655;
	public static final int ERROR_INSTALL_LOG_FAILURE = 0x656;
	public static final int ERROR_INSTALL_LANGUAGE_UNSUPPORTED = 0x657;
	public static final int ERROR_INSTALL_TRANSFORM_FAILURE = 0x658;
	public static final int ERROR_INSTALL_PACKAGE_REJECTED = 0x659;
	public static final int ERROR_FUNCTION_NOT_CALLED = 0x65A;
	public static final int ERROR_FUNCTION_FAILED = 0x65B;
	public static final int ERROR_INVALID_TABLE = 0x65C;
	public static final int ERROR_DATATYPE_MISMATCH = 0x65D;
	public static final int ERROR_UNSUPPORTED_TYPE = 0x65E;
	public static final int ERROR_CREATE_FAILED = 0x65F;
	public static final int ERROR_INSTALL_TEMP_UNWRITABLE = 0x660;
	public static final int ERROR_INSTALL_PLATFORM_UNSUPPORTED = 0x661;
	public static final int ERROR_INSTALL_NOTUSED = 0x662;
	public static final int ERROR_PATCH_PACKAGE_OPEN_FAILED = 0x663;
	public static final int ERROR_PATCH_PACKAGE_INVALID = 0x664;
	public static final int ERROR_PATCH_PACKAGE_UNSUPPORTED = 0x665;
	public static final int ERROR_PRODUCT_VERSION = 0x666;
	public static final int ERROR_INVALID_COMMAND_LINE = 0x667;
	public static final int ERROR_INSTALL_REMOTE_DISALLOWED = 0x668;
	public static final int ERROR_SUCCESS_REBOOT_INITIATED = 0x669;
	public static final int ERROR_PATCH_TARGET_NOT_FOUND = 0x66A;
	public static final int ERROR_PATCH_PACKAGE_REJECTED = 0x66B;
	public static final int ERROR_INSTALL_TRANSFORM_REJECTED = 0x66C;
	public static final int ERROR_INSTALL_REMOTE_PROHIBITED = 0x66D;
	public static final int ERROR_PATCH_REMOVAL_UNSUPPORTED = 0x66E;
	public static final int ERROR_UNKNOWN_PATCH = 0x66F;
	public static final int ERROR_PATCH_NO_SEQUENCE = 0x670;
	public static final int ERROR_PATCH_REMOVAL_DISALLOWED = 0x671;
	public static final int ERROR_INVALID_PATCH_XML = 0x672;
	public static final int ERROR_PATCH_MANAGED_ADVERTISED_PRODUCT = 0x673;
	public static final int ERROR_INSTALL_SERVICE_SAFEBOOT = 0x674;
	public static final int ERROR_FAIL_FAST_EXCEPTION = 0x675;
	public static final int ERROR_INSTALL_REJECTED = 0x676;
	public static final int RPC_S_INVALID_STRING_BINDING = 0x6A4;
	public static final int RPC_S_WRONG_KIND_OF_BINDING = 0x6A5;
	public static final int RPC_S_INVALID_BINDING = 0x6A6;
	public static final int RPC_S_PROTSEQ_NOT_SUPPORTED = 0x6A7;
	public static final int RPC_S_INVALID_RPC_PROTSEQ = 0x6A8;
	public static final int RPC_S_INVALID_STRING_UUID = 0x6A9;
	public static final int RPC_S_INVALID_ENDPOINT_FORMAT = 0x6AA;
	public static final int RPC_S_INVALID_NET_ADDR = 0x6AB;
	public static final int RPC_S_NO_ENDPOINT_FOUND = 0x6AC;
	public static final int RPC_S_INVALID_TIMEOUT = 0x6AD;
	public static final int RPC_S_OBJECT_NOT_FOUND = 0x6AE;
	public static final int RPC_S_ALREADY_REGISTERED = 0x6AF;
	public static final int RPC_S_TYPE_ALREADY_REGISTERED = 0x6B0;
	public static final int RPC_S_ALREADY_LISTENING = 0x6B1;
	public static final int RPC_S_NO_PROTSEQS_REGISTERED = 0x6B2;
	public static final int RPC_S_NOT_LISTENING = 0x6B3;
	public static final int RPC_S_UNKNOWN_MGR_TYPE = 0x6B4;
	public static final int RPC_S_UNKNOWN_IF = 0x6B5;
	public static final int RPC_S_NO_BINDINGS = 0x6B6;
	public static final int RPC_S_NO_PROTSEQS = 0x6B7;
	public static final int RPC_S_CANT_CREATE_ENDPOINT = 0x6B8;
	public static final int RPC_S_OUT_OF_RESOURCES = 0x6B9;
	public static final int RPC_S_SERVER_UNAVAILABLE = 0x6BA;
	public static final int RPC_S_SERVER_TOO_BUSY = 0x6BB;
	public static final int RPC_S_INVALID_NETWORK_OPTIONS = 0x6BC;
	public static final int RPC_S_NO_CALL_ACTIVE = 0x6BD;
	public static final int RPC_S_CALL_FAILED = 0x6BE;
	public static final int RPC_S_CALL_FAILED_DNE = 0x6BF;
	public static final int RPC_S_PROTOCOL_ERROR = 0x6C0;
	public static final int RPC_S_PROXY_ACCESS_DENIED = 0x6C1;
	public static final int RPC_S_UNSUPPORTED_TRANS_SYN = 0x6C2;
	public static final int RPC_S_UNSUPPORTED_TYPE = 0x6C4;
	public static final int RPC_S_INVALID_TAG = 0x6C5;
	public static final int RPC_S_INVALID_BOUND = 0x6C6;
	public static final int RPC_S_NO_ENTRY_NAME = 0x6C7;
	public static final int RPC_S_INVALID_NAME_SYNTAX = 0x6C8;
	public static final int RPC_S_UNSUPPORTED_NAME_SYNTAX = 0x6C9;
	public static final int RPC_S_UUID_NO_ADDRESS = 0x6CB;
	public static final int RPC_S_DUPLICATE_ENDPOINT = 0x6CC;
	public static final int RPC_S_UNKNOWN_AUTHN_TYPE = 0x6CD;
	public static final int RPC_S_MAX_CALLS_TOO_SMALL = 0x6CE;
	public static final int RPC_S_STRING_TOO_LONG = 0x6CF;
	public static final int RPC_S_PROTSEQ_NOT_FOUND = 0x6D0;
	public static final int RPC_S_PROCNUM_OUT_OF_RANGE = 0x6D1;
	public static final int RPC_S_BINDING_HAS_NO_AUTH = 0x6D2;
	public static final int RPC_S_UNKNOWN_AUTHN_SERVICE = 0x6D3;
	public static final int RPC_S_UNKNOWN_AUTHN_LEVEL = 0x6D4;
	public static final int RPC_S_INVALID_AUTH_IDENTITY = 0x6D5;
	public static final int RPC_S_UNKNOWN_AUTHZ_SERVICE = 0x6D6;
	public static final int EPT_S_INVALID_ENTRY = 0x6D7;
	public static final int EPT_S_CANT_PERFORM_OP = 0x6D8;
	public static final int EPT_S_NOT_REGISTERED = 0x6D9;
	public static final int RPC_S_NOTHING_TO_EXPORT = 0x6DA;
	public static final int RPC_S_INCOMPLETE_NAME = 0x6DB;
	public static final int RPC_S_INVALID_VERS_OPTION = 0x6DC;
	public static final int RPC_S_NO_MORE_MEMBERS = 0x6DD;
	public static final int RPC_S_NOT_ALL_OBJS_UNEXPORTED = 0x6DE;
	public static final int RPC_S_INTERFACE_NOT_FOUND = 0x6DF;
	public static final int RPC_S_ENTRY_ALREADY_EXISTS = 0x6E0;
	public static final int RPC_S_ENTRY_NOT_FOUND = 0x6E1;
	public static final int RPC_S_NAME_SERVICE_UNAVAILABLE = 0x6E2;
	public static final int RPC_S_INVALID_NAF_ID = 0x6E3;
	public static final int RPC_S_CANNOT_SUPPORT = 0x6E4;
	public static final int RPC_S_NO_CONTEXT_AVAILABLE = 0x6E5;
	public static final int RPC_S_INTERNAL_ERROR = 0x6E6;
	public static final int RPC_S_ZERO_DIVIDE = 0x6E7;
	public static final int RPC_S_ADDRESS_ERROR = 0x6E8;
	public static final int RPC_S_FP_DIV_ZERO = 0x6E9;
	public static final int RPC_S_FP_UNDERFLOW = 0x6EA;
	public static final int RPC_S_FP_OVERFLOW = 0x6EB;
	public static final int RPC_X_NO_MORE_ENTRIES = 0x6EC;
	public static final int RPC_X_SS_CHAR_TRANS_OPEN_FAIL = 0x6ED;
	public static final int RPC_X_SS_CHAR_TRANS_SHORT_FILE = 0x6EE;
	public static final int RPC_X_SS_IN_NULL_CONTEXT = 0x6EF;
	public static final int RPC_X_SS_CONTEXT_DAMAGED = 0x6F1;
	public static final int RPC_X_SS_HANDLES_MISMATCH = 0x6F2;
	public static final int RPC_X_SS_CANNOT_GET_CALL_HANDLE = 0x6F3;
	public static final int RPC_X_NULL_REF_POINTER = 0x6F4;
	public static final int RPC_X_ENUM_VALUE_OUT_OF_RANGE = 0x6F5;
	public static final int RPC_X_BYTE_COUNT_TOO_SMALL = 0x6F6;
	public static final int RPC_X_BAD_STUB_DATA = 0x6F7;
	public static final int ERROR_INVALID_USER_BUFFER = 0x6F8;
	public static final int ERROR_UNRECOGNIZED_MEDIA = 0x6F9;
	public static final int ERROR_NO_TRUST_LSA_SECRET = 0x6FA;
	public static final int ERROR_NO_TRUST_SAM_ACCOUNT = 0x6FB;
	public static final int ERROR_TRUSTED_DOMAIN_FAILURE = 0x6FC;
	public static final int ERROR_TRUSTED_RELATIONSHIP_FAILURE = 0x6FD;
	public static final int ERROR_TRUST_FAILURE = 0x6FE;
	public static final int RPC_S_CALL_IN_PROGRESS = 0x6FF;
	public static final int ERROR_NETLOGON_NOT_STARTED = 0x700;
	public static final int ERROR_ACCOUNT_EXPIRED = 0x701;
	public static final int ERROR_REDIRECTOR_HAS_OPEN_HANDLES = 0x702;
	public static final int ERROR_PRINTER_DRIVER_ALREADY_INSTALLED = 0x703;
	public static final int ERROR_UNKNOWN_PORT = 0x704;
	public static final int ERROR_UNKNOWN_PRINTER_DRIVER = 0x705;
	public static final int ERROR_UNKNOWN_PRINTPROCESSOR = 0x706;
	public static final int ERROR_INVALID_SEPARATOR_FILE = 0x707;
	public static final int ERROR_INVALID_PRIORITY = 0x708;
	public static final int ERROR_INVALID_PRINTER_NAME = 0x709;
	public static final int ERROR_PRINTER_ALREADY_EXISTS = 0x70A;
	public static final int ERROR_INVALID_PRINTER_COMMAND = 0x70B;
	public static final int ERROR_INVALID_DATATYPE = 0x70C;
	public static final int ERROR_INVALID_ENVIRONMENT = 0x70D;
	public static final int RPC_S_NO_MORE_BINDINGS = 0x70E;
	public static final int ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT = 0x70F;
	public static final int ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT = 0x710;
	public static final int ERROR_NOLOGON_SERVER_TRUST_ACCOUNT = 0x711;
	public static final int ERROR_DOMAIN_TRUST_INCONSISTENT = 0x712;
	public static final int ERROR_SERVER_HAS_OPEN_HANDLES = 0x713;
	public static final int ERROR_RESOURCE_DATA_NOT_FOUND = 0x714;
	public static final int ERROR_RESOURCE_TYPE_NOT_FOUND = 0x715;
	public static final int ERROR_RESOURCE_NAME_NOT_FOUND = 0x716;
	public static final int ERROR_RESOURCE_LANG_NOT_FOUND = 0x717;
	public static final int ERROR_NOT_ENOUGH_QUOTA = 0x718;
	public static final int RPC_S_NO_INTERFACES = 0x719;
	public static final int RPC_S_CALL_CANCELLED = 0x71A;
	public static final int RPC_S_BINDING_INCOMPLETE = 0x71B;
	public static final int RPC_S_COMM_FAILURE = 0x71C;
	public static final int RPC_S_UNSUPPORTED_AUTHN_LEVEL = 0x71D;
	public static final int RPC_S_NO_PRINC_NAME = 0x71E;
	public static final int RPC_S_NOT_RPC_ERROR = 0x71F;
	public static final int RPC_S_UUID_LOCAL_ONLY = 0x720;
	public static final int RPC_S_SEC_PKG_ERROR = 0x721;
	public static final int RPC_S_NOT_CANCELLED = 0x722;
	public static final int RPC_X_INVALID_ES_ACTION = 0x723;
	public static final int RPC_X_WRONG_ES_VERSION = 0x724;
	public static final int RPC_X_WRONG_STUB_VERSION = 0x725;
	public static final int RPC_X_INVALID_PIPE_OBJECT = 0x726;
	public static final int RPC_X_WRONG_PIPE_ORDER = 0x727;
	public static final int RPC_X_WRONG_PIPE_VERSION = 0x728;
	public static final int RPC_S_COOKIE_AUTH_FAILED = 0x729;
	public static final int RPC_S_GROUP_MEMBER_NOT_FOUND = 0x76A;
	public static final int EPT_S_CANT_CREATE = 0x76B;
	public static final int RPC_S_INVALID_OBJECT = 0x76C;
	public static final int ERROR_INVALID_TIME = 0x76D;
	public static final int ERROR_INVALID_FORM_NAME = 0x76E;
	public static final int ERROR_INVALID_FORM_SIZE = 0x76F;
	public static final int ERROR_ALREADY_WAITING = 0x770;
	public static final int ERROR_PRINTER_DELETED = 0x771;
	public static final int ERROR_INVALID_PRINTER_STATE = 0x772;
	public static final int ERROR_PASSWORD_MUST_CHANGE = 0x773;
	public static final int ERROR_DOMAIN_CONTROLLER_NOT_FOUND = 0x774;
	public static final int ERROR_ACCOUNT_LOCKED_OUT = 0x775;
	public static final int OR_INVALID_OXID = 0x776;
	public static final int OR_INVALID_OID = 0x777;
	public static final int OR_INVALID_SET = 0x778;
	public static final int RPC_S_SEND_INCOMPLETE = 0x779;
	public static final int RPC_S_INVALID_ASYNC_HANDLE = 0x77A;
	public static final int RPC_S_INVALID_ASYNC_CALL = 0x77B;
	public static final int RPC_X_PIPE_CLOSED = 0x77C;
	public static final int RPC_X_PIPE_DISCIPLINE_ERROR = 0x77D;
	public static final int RPC_X_PIPE_EMPTY = 0x77E;
	public static final int ERROR_NO_SITENAME = 0x77F;
	public static final int ERROR_CANT_ACCESS_FILE = 0x780;
	public static final int ERROR_CANT_RESOLVE_FILENAME = 0x781;
	public static final int RPC_S_ENTRY_TYPE_MISMATCH = 0x782;
	public static final int RPC_S_NOT_ALL_OBJS_EXPORTED = 0x783;
	public static final int RPC_S_INTERFACE_NOT_EXPORTED = 0x784;
	public static final int RPC_S_PROFILE_NOT_ADDED = 0x785;
	public static final int RPC_S_PRF_ELT_NOT_ADDED = 0x786;
	public static final int RPC_S_PRF_ELT_NOT_REMOVED = 0x787;
	public static final int RPC_S_GRP_ELT_NOT_ADDED = 0x788;
	public static final int RPC_S_GRP_ELT_NOT_REMOVED = 0x789;
	public static final int ERROR_KM_DRIVER_BLOCKED = 0x78A;
	public static final int ERROR_CONTEXT_EXPIRED = 0x78B;
	public static final int ERROR_PER_USER_TRUST_QUOTA_EXCEEDED = 0x78C;
	public static final int ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED = 0x78D;
	public static final int ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED = 0x78E;
	public static final int ERROR_AUTHENTICATION_FIREWALL_FAILED = 0x78F;
	public static final int ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED = 0x790;
	public static final int ERROR_NTLM_BLOCKED = 0x791;
	public static final int ERROR_PASSWORD_CHANGE_REQUIRED = 0x792;
	public static final int ERROR_INVALID_PIXEL_FORMAT = 0x7D0;
	public static final int ERROR_BAD_DRIVER = 0x7D1;
	public static final int ERROR_INVALID_WINDOW_STYLE = 0x7D2;
	public static final int ERROR_METAFILE_NOT_SUPPORTED = 0x7D3;
	public static final int ERROR_TRANSFORM_NOT_SUPPORTED = 0x7D4;
	public static final int ERROR_CLIPPING_NOT_SUPPORTED = 0x7D5;
	public static final int ERROR_INVALID_CMM = 0x7DA;
	public static final int ERROR_INVALID_PROFILE = 0x7DB;
	public static final int ERROR_TAG_NOT_FOUND = 0x7DC;
	public static final int ERROR_TAG_NOT_PRESENT = 0x7DD;
	public static final int ERROR_DUPLICATE_TAG = 0x7DE;
	public static final int ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE = 0x7DF;
	public static final int ERROR_PROFILE_NOT_FOUND = 0x7E0;
	public static final int ERROR_INVALID_COLORSPACE = 0x7E1;
	public static final int ERROR_ICM_NOT_ENABLED = 0x7E2;
	public static final int ERROR_DELETING_ICM_XFORM = 0x7E3;
	public static final int ERROR_INVALID_TRANSFORM = 0x7E4;
	public static final int ERROR_COLORSPACE_MISMATCH = 0x7E5;
	public static final int ERROR_INVALID_COLORINDEX = 0x7E6;
	public static final int ERROR_PROFILE_DOES_NOT_MATCH_DEVICE = 0x7E7;
	public static final int ERROR_CONNECTED_OTHER_PASSWORD = 0x83C;
	public static final int ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT = 0x83D;
	public static final int ERROR_BAD_USERNAME = 0x89A;
	public static final int ERROR_NOT_CONNECTED = 0x8CA;
	public static final int ERROR_OPEN_FILES = 0x961;
	public static final int ERROR_ACTIVE_CONNECTIONS = 0x962;
	public static final int ERROR_DEVICE_IN_USE = 0x964;
	public static final int ERROR_UNKNOWN_PRINT_MONITOR = 0xBB8;
	public static final int ERROR_PRINTER_DRIVER_IN_USE = 0xBB9;
	public static final int ERROR_SPOOL_FILE_NOT_FOUND = 0xBBA;
	public static final int ERROR_SPL_NO_STARTDOC = 0xBBB;
	public static final int ERROR_SPL_NO_ADDJOB = 0xBBC;
	public static final int ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED = 0xBBD;
	public static final int ERROR_PRINT_MONITOR_ALREADY_INSTALLED = 0xBBE;
	public static final int ERROR_INVALID_PRINT_MONITOR = 0xBBF;
	public static final int ERROR_PRINT_MONITOR_IN_USE = 0xBC0;
	public static final int ERROR_PRINTER_HAS_JOBS_QUEUED = 0xBC1;
	public static final int ERROR_SUCCESS_REBOOT_REQUIRED = 0xBC2;
	public static final int ERROR_SUCCESS_RESTART_REQUIRED = 0xBC3;
	public static final int ERROR_PRINTER_NOT_FOUND = 0xBC4;
	public static final int ERROR_PRINTER_DRIVER_WARNED = 0xBC5;
	public static final int ERROR_PRINTER_DRIVER_BLOCKED = 0xBC6;
	public static final int ERROR_PRINTER_DRIVER_PACKAGE_IN_USE = 0xBC7;
	public static final int ERROR_CORE_DRIVER_PACKAGE_NOT_FOUND = 0xBC8;
	public static final int ERROR_FAIL_REBOOT_REQUIRED = 0xBC9;
	public static final int ERROR_FAIL_REBOOT_INITIATED = 0xBCA;
	public static final int ERROR_PRINTER_DRIVER_DOWNLOAD_NEEDED = 0xBCB;
	public static final int ERROR_PRINT_JOB_RESTART_REQUIRED = 0xBCC;
	public static final int ERROR_INVALID_PRINTER_DRIVER_MANIFEST = 0xBCD;
	public static final int ERROR_PRINTER_NOT_SHAREABLE = 0xBCE;
	public static final int ERROR_REQUEST_PAUSED = 0xBEA;
	public static final int ERROR_IO_REISSUE_AS_CACHED = 0xF6E;
	public static final int ERROR_WINS_INTERNAL = 0xFA0;
	public static final int ERROR_CAN_NOT_DEL_LOCAL_WINS = 0xFA1;
	public static final int ERROR_STATIC_INIT = 0xFA2;
	public static final int ERROR_INC_BACKUP = 0xFA3;
	public static final int ERROR_FULL_BACKUP = 0xFA4;
	public static final int ERROR_REC_NON_EXISTENT = 0xFA5;
	public static final int ERROR_RPL_NOT_ALLOWED = 0xFA6;
	public static final int PEERDIST_ERROR_CONTENTINFO_VERSION_UNSUPPORTED = 0xFD2;
	public static final int PEERDIST_ERROR_CANNOT_PARSE_CONTENTINFO = 0xFD3;
	public static final int PEERDIST_ERROR_MISSING_DATA = 0xFD4;
	public static final int PEERDIST_ERROR_NO_MORE = 0xFD5;
	public static final int PEERDIST_ERROR_NOT_INITIALIZED = 0xFD6;
	public static final int PEERDIST_ERROR_ALREADY_INITIALIZED = 0xFD7;
	public static final int PEERDIST_ERROR_SHUTDOWN_IN_PROGRESS = 0xFD8;
	public static final int PEERDIST_ERROR_INVALIDATED = 0xFD9;
	public static final int PEERDIST_ERROR_ALREADY_EXISTS = 0xFDA;
	public static final int PEERDIST_ERROR_OPERATION_NOTFOUND = 0xFDB;
	public static final int PEERDIST_ERROR_ALREADY_COMPLETED = 0xFDC;
	public static final int PEERDIST_ERROR_OUT_OF_BOUNDS = 0xFDD;
	public static final int PEERDIST_ERROR_VERSION_UNSUPPORTED = 0xFDE;
	public static final int PEERDIST_ERROR_INVALID_CONFIGURATION = 0xFDF;
	public static final int PEERDIST_ERROR_NOT_LICENSED = 0xFE0;
	public static final int PEERDIST_ERROR_SERVICE_UNAVAILABLE = 0xFE1;
	public static final int PEERDIST_ERROR_TRUST_FAILURE = 0xFE2;
	public static final int ERROR_DHCP_ADDRESS_CONFLICT = 0x1004;
	public static final int ERROR_WMI_GUID_NOT_FOUND = 0x1068;
	public static final int ERROR_WMI_INSTANCE_NOT_FOUND = 0x1069;
	public static final int ERROR_WMI_ITEMID_NOT_FOUND = 0x106A;
	public static final int ERROR_WMI_TRY_AGAIN = 0x106B;
	public static final int ERROR_WMI_DP_NOT_FOUND = 0x106C;
	public static final int ERROR_WMI_UNRESOLVED_INSTANCE_REF = 0x106D;
	public static final int ERROR_WMI_ALREADY_ENABLED = 0x106E;
	public static final int ERROR_WMI_GUID_DISCONNECTED = 0x106F;
	public static final int ERROR_WMI_SERVER_UNAVAILABLE = 0x1070;
	public static final int ERROR_WMI_DP_FAILED = 0x1071;
	public static final int ERROR_WMI_INVALID_MOF = 0x1072;
	public static final int ERROR_WMI_INVALID_REGINFO = 0x1073;
	public static final int ERROR_WMI_ALREADY_DISABLED = 0x1074;
	public static final int ERROR_WMI_READ_ONLY = 0x1075;
	public static final int ERROR_WMI_SET_FAILURE = 0x1076;
	public static final int ERROR_NOT_APPCONTAINER = 0x109A;
	public static final int ERROR_APPCONTAINER_REQUIRED = 0x109B;
	public static final int ERROR_NOT_SUPPORTED_IN_APPCONTAINER = 0x109C;
	public static final int ERROR_INVALID_PACKAGE_SID_LENGTH = 0x109D;
	public static final int ERROR_INVALID_MEDIA = 0x10CC;
	public static final int ERROR_INVALID_LIBRARY = 0x10CD;
	public static final int ERROR_INVALID_MEDIA_POOL = 0x10CE;
	public static final int ERROR_DRIVE_MEDIA_MISMATCH = 0x10CF;
	public static final int ERROR_MEDIA_OFFLINE = 0x10D0;
	public static final int ERROR_LIBRARY_OFFLINE = 0x10D1;
	public static final int ERROR_EMPTY = 0x10D2;
	public static final int ERROR_NOT_EMPTY = 0x10D3;
	public static final int ERROR_MEDIA_UNAVAILABLE = 0x10D4;
	public static final int ERROR_RESOURCE_DISABLED = 0x10D5;
	public static final int ERROR_INVALID_CLEANER = 0x10D6;
	public static final int ERROR_UNABLE_TO_CLEAN = 0x10D7;
	public static final int ERROR_OBJECT_NOT_FOUND = 0x10D8;
	public static final int ERROR_DATABASE_FAILURE = 0x10D9;
	public static final int ERROR_DATABASE_FULL = 0x10DA;
	public static final int ERROR_MEDIA_INCOMPATIBLE = 0x10DB;
	public static final int ERROR_RESOURCE_NOT_PRESENT = 0x10DC;
	public static final int ERROR_INVALID_OPERATION = 0x10DD;
	public static final int ERROR_MEDIA_NOT_AVAILABLE = 0x10DE;
	public static final int ERROR_DEVICE_NOT_AVAILABLE = 0x10DF;
	public static final int ERROR_REQUEST_REFUSED = 0x10E0;
	public static final int ERROR_INVALID_DRIVE_OBJECT = 0x10E1;
	public static final int ERROR_LIBRARY_FULL = 0x10E2;
	public static final int ERROR_MEDIUM_NOT_ACCESSIBLE = 0x10E3;
	public static final int ERROR_UNABLE_TO_LOAD_MEDIUM = 0x10E4;
	public static final int ERROR_UNABLE_TO_INVENTORY_DRIVE = 0x10E5;
	public static final int ERROR_UNABLE_TO_INVENTORY_SLOT = 0x10E6;
	public static final int ERROR_UNABLE_TO_INVENTORY_TRANSPORT = 0x10E7;
	public static final int ERROR_TRANSPORT_FULL = 0x10E8;
	public static final int ERROR_CONTROLLING_IEPORT = 0x10E9;
	public static final int ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA = 0x10EA;
	public static final int ERROR_CLEANER_SLOT_SET = 0x10EB;
	public static final int ERROR_CLEANER_SLOT_NOT_SET = 0x10EC;
	public static final int ERROR_CLEANER_CARTRIDGE_SPENT = 0x10ED;
	public static final int ERROR_UNEXPECTED_OMID = 0x10EE;
	public static final int ERROR_CANT_DELETE_LAST_ITEM = 0x10EF;
	public static final int ERROR_MESSAGE_EXCEEDS_MAX_SIZE = 0x10F0;
	public static final int ERROR_VOLUME_CONTAINS_SYS_FILES = 0x10F1;
	public static final int ERROR_INDIGENOUS_TYPE = 0x10F2;
	public static final int ERROR_NO_SUPPORTING_DRIVES = 0x10F3;
	public static final int ERROR_CLEANER_CARTRIDGE_INSTALLED = 0x10F4;
	public static final int ERROR_IEPORT_FULL = 0x10F5;
	public static final int ERROR_FILE_OFFLINE = 0x10FE;
	public static final int ERROR_REMOTE_STORAGE_NOT_ACTIVE = 0x10FF;
	public static final int ERROR_REMOTE_STORAGE_MEDIA_ERROR = 0x1100;
	public static final int ERROR_NOT_A_REPARSE_POINT = 0x1126;
	public static final int ERROR_REPARSE_ATTRIBUTE_CONFLICT = 0x1127;
	public static final int ERROR_INVALID_REPARSE_DATA = 0x1128;
	public static final int ERROR_REPARSE_TAG_INVALID = 0x1129;
	public static final int ERROR_REPARSE_TAG_MISMATCH = 0x112A;
	public static final int ERROR_APP_DATA_NOT_FOUND = 0x1130;
	public static final int ERROR_APP_DATA_EXPIRED = 0x1131;
	public static final int ERROR_APP_DATA_CORRUPT = 0x1132;
	public static final int ERROR_APP_DATA_LIMIT_EXCEEDED = 0x1133;
	public static final int ERROR_APP_DATA_REBOOT_REQUIRED = 0x1134;
	public static final int ERROR_SECUREBOOT_ROLLBACK_DETECTED = 0x1144;
	public static final int ERROR_SECUREBOOT_POLICY_VIOLATION = 0x1145;
	public static final int ERROR_SECUREBOOT_INVALID_POLICY = 0x1146;
	public static final int ERROR_SECUREBOOT_POLICY_PUBLISHER_NOT_FOUND = 0x1147;
	public static final int ERROR_SECUREBOOT_POLICY_NOT_SIGNED = 0x1148;
	public static final int ERROR_SECUREBOOT_NOT_ENABLED = 0x1149;
	public static final int ERROR_SECUREBOOT_FILE_REPLACED = 0x114A;
	public static final int ERROR_OFFLOAD_READ_FLT_NOT_SUPPORTED = 0x1158;
	public static final int ERROR_OFFLOAD_WRITE_FLT_NOT_SUPPORTED = 0x1159;
	public static final int ERROR_OFFLOAD_READ_FILE_NOT_SUPPORTED = 0x115A;
	public static final int ERROR_OFFLOAD_WRITE_FILE_NOT_SUPPORTED = 0x115B;
	public static final int ERROR_VOLUME_NOT_SIS_ENABLED = 0x1194;
	public static final int ERROR_DEPENDENT_RESOURCE_EXISTS = 0x1389;
	public static final int ERROR_DEPENDENCY_NOT_FOUND = 0x138A;
	public static final int ERROR_DEPENDENCY_ALREADY_EXISTS = 0x138B;
	public static final int ERROR_RESOURCE_NOT_ONLINE = 0x138C;
	public static final int ERROR_HOST_NODE_NOT_AVAILABLE = 0x138D;
	public static final int ERROR_RESOURCE_NOT_AVAILABLE = 0x138E;
	public static final int ERROR_RESOURCE_NOT_FOUND = 0x138F;
	public static final int ERROR_SHUTDOWN_CLUSTER = 0x1390;
	public static final int ERROR_CANT_EVICT_ACTIVE_NODE = 0x1391;
	public static final int ERROR_OBJECT_ALREADY_EXISTS = 0x1392;
	public static final int ERROR_OBJECT_IN_LIST = 0x1393;
	public static final int ERROR_GROUP_NOT_AVAILABLE = 0x1394;
	public static final int ERROR_GROUP_NOT_FOUND = 0x1395;
	public static final int ERROR_GROUP_NOT_ONLINE = 0x1396;
	public static final int ERROR_HOST_NODE_NOT_RESOURCE_OWNER = 0x1397;
	public static final int ERROR_HOST_NODE_NOT_GROUP_OWNER = 0x1398;
	public static final int ERROR_RESMON_CREATE_FAILED = 0x1399;
	public static final int ERROR_RESMON_ONLINE_FAILED = 0x139A;
	public static final int ERROR_RESOURCE_ONLINE = 0x139B;
	public static final int ERROR_QUORUM_RESOURCE = 0x139C;
	public static final int ERROR_NOT_QUORUM_CAPABLE = 0x139D;
	public static final int ERROR_CLUSTER_SHUTTING_DOWN = 0x139E;
	public static final int ERROR_INVALID_STATE = 0x139F;
	public static final int ERROR_RESOURCE_PROPERTIES_STORED = 0x13A0;
	public static final int ERROR_NOT_QUORUM_CLASS = 0x13A1;
	public static final int ERROR_CORE_RESOURCE = 0x13A2;
	public static final int ERROR_QUORUM_RESOURCE_ONLINE_FAILED = 0x13A3;
	public static final int ERROR_QUORUMLOG_OPEN_FAILED = 0x13A4;
	public static final int ERROR_CLUSTERLOG_CORRUPT = 0x13A5;
	public static final int ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE = 0x13A6;
	public static final int ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE = 0x13A7;
	public static final int ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND = 0x13A8;
	public static final int ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE = 0x13A9;
	public static final int ERROR_QUORUM_OWNER_ALIVE = 0x13AA;
	public static final int ERROR_NETWORK_NOT_AVAILABLE = 0x13AB;
	public static final int ERROR_NODE_NOT_AVAILABLE = 0x13AC;
	public static final int ERROR_ALL_NODES_NOT_AVAILABLE = 0x13AD;
	public static final int ERROR_RESOURCE_FAILED = 0x13AE;
	public static final int ERROR_CLUSTER_INVALID_NODE = 0x13AF;
	public static final int ERROR_CLUSTER_NODE_EXISTS = 0x13B0;
	public static final int ERROR_CLUSTER_JOIN_IN_PROGRESS = 0x13B1;
	public static final int ERROR_CLUSTER_NODE_NOT_FOUND = 0x13B2;
	public static final int ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND = 0x13B3;
	public static final int ERROR_CLUSTER_NETWORK_EXISTS = 0x13B4;
	public static final int ERROR_CLUSTER_NETWORK_NOT_FOUND = 0x13B5;
	public static final int ERROR_CLUSTER_NETINTERFACE_EXISTS = 0x13B6;
	public static final int ERROR_CLUSTER_NETINTERFACE_NOT_FOUND = 0x13B7;
	public static final int ERROR_CLUSTER_INVALID_REQUEST = 0x13B8;
	public static final int ERROR_CLUSTER_INVALID_NETWORK_PROVIDER = 0x13B9;
	public static final int ERROR_CLUSTER_NODE_DOWN = 0x13BA;
	public static final int ERROR_CLUSTER_NODE_UNREACHABLE = 0x13BB;
	public static final int ERROR_CLUSTER_NODE_NOT_MEMBER = 0x13BC;
	public static final int ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS = 0x13BD;
	public static final int ERROR_CLUSTER_INVALID_NETWORK = 0x13BE;
	public static final int ERROR_CLUSTER_NODE_UP = 0x13C0;
	public static final int ERROR_CLUSTER_IPADDR_IN_USE = 0x13C1;
	public static final int ERROR_CLUSTER_NODE_NOT_PAUSED = 0x13C2;
	public static final int ERROR_CLUSTER_NO_SECURITY_CONTEXT = 0x13C3;
	public static final int ERROR_CLUSTER_NETWORK_NOT_INTERNAL = 0x13C4;
	public static final int ERROR_CLUSTER_NODE_ALREADY_UP = 0x13C5;
	public static final int ERROR_CLUSTER_NODE_ALREADY_DOWN = 0x13C6;
	public static final int ERROR_CLUSTER_NETWORK_ALREADY_ONLINE = 0x13C7;
	public static final int ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE = 0x13C8;
	public static final int ERROR_CLUSTER_NODE_ALREADY_MEMBER = 0x13C9;
	public static final int ERROR_CLUSTER_LAST_INTERNAL_NETWORK = 0x13CA;
	public static final int ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS = 0x13CB;
	public static final int ERROR_INVALID_OPERATION_ON_QUORUM = 0x13CC;
	public static final int ERROR_DEPENDENCY_NOT_ALLOWED = 0x13CD;
	public static final int ERROR_CLUSTER_NODE_PAUSED = 0x13CE;
	public static final int ERROR_NODE_CANT_HOST_RESOURCE = 0x13CF;
	public static final int ERROR_CLUSTER_NODE_NOT_READY = 0x13D0;
	public static final int ERROR_CLUSTER_NODE_SHUTTING_DOWN = 0x13D1;
	public static final int ERROR_CLUSTER_JOIN_ABORTED = 0x13D2;
	public static final int ERROR_CLUSTER_INCOMPATIBLE_VERSIONS = 0x13D3;
	public static final int ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED = 0x13D4;
	public static final int ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED = 0x13D5;
	public static final int ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND = 0x13D6;
	public static final int ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED = 0x13D7;
	public static final int ERROR_CLUSTER_RESNAME_NOT_FOUND = 0x13D8;
	public static final int ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED = 0x13D9;
	public static final int ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST = 0x13DA;
	public static final int ERROR_CLUSTER_DATABASE_SEQMISMATCH = 0x13DB;
	public static final int ERROR_RESMON_INVALID_STATE = 0x13DC;
	public static final int ERROR_CLUSTER_GUM_NOT_LOCKER = 0x13DD;
	public static final int ERROR_QUORUM_DISK_NOT_FOUND = 0x13DE;
	public static final int ERROR_DATABASE_BACKUP_CORRUPT = 0x13DF;
	public static final int ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT = 0x13E0;
	public static final int ERROR_RESOURCE_PROPERTY_UNCHANGEABLE = 0x13E1;
	public static final int ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE = 0x1702;
	public static final int ERROR_CLUSTER_QUORUMLOG_NOT_FOUND = 0x1703;
	public static final int ERROR_CLUSTER_MEMBERSHIP_HALT = 0x1704;
	public static final int ERROR_CLUSTER_INSTANCE_ID_MISMATCH = 0x1705;
	public static final int ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP = 0x1706;
	public static final int ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH = 0x1707;
	public static final int ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP = 0x1708;
	public static final int ERROR_CLUSTER_PARAMETER_MISMATCH = 0x1709;
	public static final int ERROR_NODE_CANNOT_BE_CLUSTERED = 0x170A;
	public static final int ERROR_CLUSTER_WRONG_OS_VERSION = 0x170B;
	public static final int ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME = 0x170C;
	public static final int ERROR_CLUSCFG_ALREADY_COMMITTED = 0x170D;
	public static final int ERROR_CLUSCFG_ROLLBACK_FAILED = 0x170E;
	public static final int ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT = 0x170F;
	public static final int ERROR_CLUSTER_OLD_VERSION = 0x1710;
	public static final int ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME = 0x1711;
	public static final int ERROR_CLUSTER_NO_NET_ADAPTERS = 0x1712;
	public static final int ERROR_CLUSTER_POISONED = 0x1713;
	public static final int ERROR_CLUSTER_GROUP_MOVING = 0x1714;
	public static final int ERROR_CLUSTER_RESOURCE_TYPE_BUSY = 0x1715;
	public static final int ERROR_RESOURCE_CALL_TIMED_OUT = 0x1716;
	public static final int ERROR_INVALID_CLUSTER_IPV6_ADDRESS = 0x1717;
	public static final int ERROR_CLUSTER_INTERNAL_INVALID_FUNCTION = 0x1718;
	public static final int ERROR_CLUSTER_PARAMETER_OUT_OF_BOUNDS = 0x1719;
	public static final int ERROR_CLUSTER_PARTIAL_SEND = 0x171A;
	public static final int ERROR_CLUSTER_REGISTRY_INVALID_FUNCTION = 0x171B;
	public static final int ERROR_CLUSTER_INVALID_STRING_TERMINATION = 0x171C;
	public static final int ERROR_CLUSTER_INVALID_STRING_FORMAT = 0x171D;
	public static final int ERROR_CLUSTER_DATABASE_TRANSACTION_IN_PROGRESS = 0x171E;
	public static final int ERROR_CLUSTER_DATABASE_TRANSACTION_NOT_IN_PROGRESS = 0x171F;
	public static final int ERROR_CLUSTER_NULL_DATA = 0x1720;
	public static final int ERROR_CLUSTER_PARTIAL_READ = 0x1721;
	public static final int ERROR_CLUSTER_PARTIAL_WRITE = 0x1722;
	public static final int ERROR_CLUSTER_CANT_DESERIALIZE_DATA = 0x1723;
	public static final int ERROR_DEPENDENT_RESOURCE_PROPERTY_CONFLICT = 0x1724;
	public static final int ERROR_CLUSTER_NO_QUORUM = 0x1725;
	public static final int ERROR_CLUSTER_INVALID_IPV6_NETWORK = 0x1726;
	public static final int ERROR_CLUSTER_INVALID_IPV6_TUNNEL_NETWORK = 0x1727;
	public static final int ERROR_QUORUM_NOT_ALLOWED_IN_THIS_GROUP = 0x1728;
	public static final int ERROR_DEPENDENCY_TREE_TOO_COMPLEX = 0x1729;
	public static final int ERROR_EXCEPTION_IN_RESOURCE_CALL = 0x172A;
	public static final int ERROR_CLUSTER_RHS_FAILED_INITIALIZATION = 0x172B;
	public static final int ERROR_CLUSTER_NOT_INSTALLED = 0x172C;
	public static final int ERROR_CLUSTER_RESOURCES_MUST_BE_ONLINE_ON_THE_SAME_NODE = 0x172D;
	public static final int ERROR_CLUSTER_MAX_NODES_IN_CLUSTER = 0x172E;
	public static final int ERROR_CLUSTER_TOO_MANY_NODES = 0x172F;
	public static final int ERROR_CLUSTER_OBJECT_ALREADY_USED = 0x1730;
	public static final int ERROR_NONCORE_GROUPS_FOUND = 0x1731;
	public static final int ERROR_FILE_SHARE_RESOURCE_CONFLICT = 0x1732;
	public static final int ERROR_CLUSTER_EVICT_INVALID_REQUEST = 0x1733;
	public static final int ERROR_CLUSTER_SINGLETON_RESOURCE = 0x1734;
	public static final int ERROR_CLUSTER_GROUP_SINGLETON_RESOURCE = 0x1735;
	public static final int ERROR_CLUSTER_RESOURCE_PROVIDER_FAILED = 0x1736;
	public static final int ERROR_CLUSTER_RESOURCE_CONFIGURATION_ERROR = 0x1737;
	public static final int ERROR_CLUSTER_GROUP_BUSY = 0x1738;
	public static final int ERROR_CLUSTER_NOT_SHARED_VOLUME = 0x1739;
	public static final int ERROR_CLUSTER_INVALID_SECURITY_DESCRIPTOR = 0x173A;
	public static final int ERROR_CLUSTER_SHARED_VOLUMES_IN_USE = 0x173B;
	public static final int ERROR_CLUSTER_USE_SHARED_VOLUMES_API = 0x173C;
	public static final int ERROR_CLUSTER_BACKUP_IN_PROGRESS = 0x173D;
	public static final int ERROR_NON_CSV_PATH = 0x173E;
	public static final int ERROR_CSV_VOLUME_NOT_LOCAL = 0x173F;
	public static final int ERROR_CLUSTER_WATCHDOG_TERMINATING = 0x1740;
	public static final int ERROR_CLUSTER_RESOURCE_VETOED_MOVE_INCOMPATIBLE_NODES = 0x1741;
	public static final int ERROR_CLUSTER_INVALID_NODE_WEIGHT = 0x1742;
	public static final int ERROR_CLUSTER_RESOURCE_VETOED_CALL = 0x1743;
	public static final int ERROR_RESMON_SYSTEM_RESOURCES_LACKING = 0x1744;
	public static final int ERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_DESTINATION = 0x1745;
	public static final int ERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_SOURCE = 0x1746;
	public static final int ERROR_CLUSTER_GROUP_QUEUED = 0x1747;
	public static final int ERROR_CLUSTER_RESOURCE_LOCKED_STATUS = 0x1748;
	public static final int ERROR_CLUSTER_SHARED_VOLUME_FAILOVER_NOT_ALLOWED = 0x1749;
	public static final int ERROR_CLUSTER_NODE_DRAIN_IN_PROGRESS = 0x174A;
	public static final int ERROR_CLUSTER_DISK_NOT_CONNECTED = 0x174B;
	public static final int ERROR_DISK_NOT_CSV_CAPABLE = 0x174C;
	public static final int ERROR_RESOURCE_NOT_IN_AVAILABLE_STORAGE = 0x174D;
	public static final int ERROR_CLUSTER_SHARED_VOLUME_REDIRECTED = 0x174E;
	public static final int ERROR_CLUSTER_SHARED_VOLUME_NOT_REDIRECTED = 0x174F;
	public static final int ERROR_CLUSTER_CANNOT_RETURN_PROPERTIES = 0x1750;
	public static final int ERROR_CLUSTER_RESOURCE_CONTAINS_UNSUPPORTED_DIFF_AREA_FOR_SHARED_VOLUMES = 0x1751;
	public static final int ERROR_CLUSTER_RESOURCE_IS_IN_MAINTENANCE_MODE = 0x1752;
	public static final int ERROR_CLUSTER_AFFINITY_CONFLICT = 0x1753;
	public static final int ERROR_CLUSTER_RESOURCE_IS_REPLICA_VIRTUAL_MACHINE = 0x1754;
	public static final int ERROR_ENCRYPTION_FAILED = 0x1770;
	public static final int ERROR_DECRYPTION_FAILED = 0x1771;
	public static final int ERROR_FILE_ENCRYPTED = 0x1772;
	public static final int ERROR_NO_RECOVERY_POLICY = 0x1773;
	public static final int ERROR_NO_EFS = 0x1774;
	public static final int ERROR_WRONG_EFS = 0x1775;
	public static final int ERROR_NO_USER_KEYS = 0x1776;
	public static final int ERROR_FILE_NOT_ENCRYPTED = 0x1777;
	public static final int ERROR_NOT_EXPORT_FORMAT = 0x1778;
	public static final int ERROR_FILE_READ_ONLY = 0x1779;
	public static final int ERROR_DIR_EFS_DISALLOWED = 0x177A;
	public static final int ERROR_EFS_SERVER_NOT_TRUSTED = 0x177B;
	public static final int ERROR_BAD_RECOVERY_POLICY = 0x177C;
	public static final int ERROR_EFS_ALG_BLOB_TOO_BIG = 0x177D;
	public static final int ERROR_VOLUME_NOT_SUPPORT_EFS = 0x177E;
	public static final int ERROR_EFS_DISABLED = 0x177F;
	public static final int ERROR_EFS_VERSION_NOT_SUPPORT = 0x1780;
	public static final int ERROR_CS_ENCRYPTION_INVALID_SERVER_RESPONSE = 0x1781;
	public static final int ERROR_CS_ENCRYPTION_UNSUPPORTED_SERVER = 0x1782;
	public static final int ERROR_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE = 0x1783;
	public static final int ERROR_CS_ENCRYPTION_NEW_ENCRYPTED_FILE = 0x1784;
	public static final int ERROR_CS_ENCRYPTION_FILE_NOT_CSE = 0x1785;
	public static final int ERROR_ENCRYPTION_POLICY_DENIES_OPERATION = 0x1786;
	public static final int ERROR_NO_BROWSER_SERVERS_FOUND = 0x17E6;
	public static final int SCHED_E_SERVICE_NOT_LOCALSYSTEM = 0x1838;
	public static final int ERROR_LOG_SECTOR_INVALID = 0x19C8;
	public static final int ERROR_LOG_SECTOR_PARITY_INVALID = 0x19C9;
	public static final int ERROR_LOG_SECTOR_REMAPPED = 0x19CA;
	public static final int ERROR_LOG_BLOCK_INCOMPLETE = 0x19CB;
	public static final int ERROR_LOG_INVALID_RANGE = 0x19CC;
	public static final int ERROR_LOG_BLOCKS_EXHAUSTED = 0x19CD;
	public static final int ERROR_LOG_READ_CONTEXT_INVALID = 0x19CE;
	public static final int ERROR_LOG_RESTART_INVALID = 0x19CF;
	public static final int ERROR_LOG_BLOCK_VERSION = 0x19D0;
	public static final int ERROR_LOG_BLOCK_INVALID = 0x19D1;
	public static final int ERROR_LOG_READ_MODE_INVALID = 0x19D2;
	public static final int ERROR_LOG_NO_RESTART = 0x19D3;
	public static final int ERROR_LOG_METADATA_CORRUPT = 0x19D4;
	public static final int ERROR_LOG_METADATA_INVALID = 0x19D5;
	public static final int ERROR_LOG_METADATA_INCONSISTENT = 0x19D6;
	public static final int ERROR_LOG_RESERVATION_INVALID = 0x19D7;
	public static final int ERROR_LOG_CANT_DELETE = 0x19D8;
	public static final int ERROR_LOG_CONTAINER_LIMIT_EXCEEDED = 0x19D9;
	public static final int ERROR_LOG_START_OF_LOG = 0x19DA;
	public static final int ERROR_LOG_POLICY_ALREADY_INSTALLED = 0x19DB;
	public static final int ERROR_LOG_POLICY_NOT_INSTALLED = 0x19DC;
	public static final int ERROR_LOG_POLICY_INVALID = 0x19DD;
	public static final int ERROR_LOG_POLICY_CONFLICT = 0x19DE;
	public static final int ERROR_LOG_PINNED_ARCHIVE_TAIL = 0x19DF;
	public static final int ERROR_LOG_RECORD_NONEXISTENT = 0x19E0;
	public static final int ERROR_LOG_RECORDS_RESERVED_INVALID = 0x19E1;
	public static final int ERROR_LOG_SPACE_RESERVED_INVALID = 0x19E2;
	public static final int ERROR_LOG_TAIL_INVALID = 0x19E3;
	public static final int ERROR_LOG_FULL = 0x19E4;
	public static final int ERROR_COULD_NOT_RESIZE_LOG = 0x19E5;
	public static final int ERROR_LOG_MULTIPLEXED = 0x19E6;
	public static final int ERROR_LOG_DEDICATED = 0x19E7;
	public static final int ERROR_LOG_ARCHIVE_NOT_IN_PROGRESS = 0x19E8;
	public static final int ERROR_LOG_ARCHIVE_IN_PROGRESS = 0x19E9;
	public static final int ERROR_LOG_EPHEMERAL = 0x19EA;
	public static final int ERROR_LOG_NOT_ENOUGH_CONTAINERS = 0x19EB;
	public static final int ERROR_LOG_CLIENT_ALREADY_REGISTERED = 0x19EC;
	public static final int ERROR_LOG_CLIENT_NOT_REGISTERED = 0x19ED;
	public static final int ERROR_LOG_FULL_HANDLER_IN_PROGRESS = 0x19EE;
	public static final int ERROR_LOG_CONTAINER_READ_FAILED = 0x19EF;
	public static final int ERROR_LOG_CONTAINER_WRITE_FAILED = 0x19F0;
	public static final int ERROR_LOG_CONTAINER_OPEN_FAILED = 0x19F1;
	public static final int ERROR_LOG_CONTAINER_STATE_INVALID = 0x19F2;
	public static final int ERROR_LOG_STATE_INVALID = 0x19F3;
	public static final int ERROR_LOG_PINNED = 0x19F4;
	public static final int ERROR_LOG_METADATA_FLUSH_FAILED = 0x19F5;
	public static final int ERROR_LOG_INCONSISTENT_SECURITY = 0x19F6;
	public static final int ERROR_LOG_APPENDED_FLUSH_FAILED = 0x19F7;
	public static final int ERROR_LOG_PINNED_RESERVATION = 0x19F8;
	public static final int ERROR_INVALID_TRANSACTION = 0x1A2C;
	public static final int ERROR_TRANSACTION_NOT_ACTIVE = 0x1A2D;
	public static final int ERROR_TRANSACTION_REQUEST_NOT_VALID = 0x1A2E;
	public static final int ERROR_TRANSACTION_NOT_REQUESTED = 0x1A2F;
	public static final int ERROR_TRANSACTION_ALREADY_ABORTED = 0x1A30;
	public static final int ERROR_TRANSACTION_ALREADY_COMMITTED = 0x1A31;
	public static final int ERROR_TM_INITIALIZATION_FAILED = 0x1A32;
	public static final int ERROR_RESOURCEMANAGER_READ_ONLY = 0x1A33;
	public static final int ERROR_TRANSACTION_NOT_JOINED = 0x1A34;
	public static final int ERROR_TRANSACTION_SUPERIOR_EXISTS = 0x1A35;
	public static final int ERROR_CRM_PROTOCOL_ALREADY_EXISTS = 0x1A36;
	public static final int ERROR_TRANSACTION_PROPAGATION_FAILED = 0x1A37;
	public static final int ERROR_CRM_PROTOCOL_NOT_FOUND = 0x1A38;
	public static final int ERROR_TRANSACTION_INVALID_MARSHALL_BUFFER = 0x1A39;
	public static final int ERROR_CURRENT_TRANSACTION_NOT_VALID = 0x1A3A;
	public static final int ERROR_TRANSACTION_NOT_FOUND = 0x1A3B;
	public static final int ERROR_RESOURCEMANAGER_NOT_FOUND = 0x1A3C;
	public static final int ERROR_ENLISTMENT_NOT_FOUND = 0x1A3D;
	public static final int ERROR_TRANSACTIONMANAGER_NOT_FOUND = 0x1A3E;
	public static final int ERROR_TRANSACTIONMANAGER_NOT_ONLINE = 0x1A3F;
	public static final int ERROR_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION = 0x1A40;
	public static final int ERROR_TRANSACTION_NOT_ROOT = 0x1A41;
	public static final int ERROR_TRANSACTION_OBJECT_EXPIRED = 0x1A42;
	public static final int ERROR_TRANSACTION_RESPONSE_NOT_ENLISTED = 0x1A43;
	public static final int ERROR_TRANSACTION_RECORD_TOO_LONG = 0x1A44;
	public static final int ERROR_IMPLICIT_TRANSACTION_NOT_SUPPORTED = 0x1A45;
	public static final int ERROR_TRANSACTION_INTEGRITY_VIOLATED = 0x1A46;
	public static final int ERROR_TRANSACTIONMANAGER_IDENTITY_MISMATCH = 0x1A47;
	public static final int ERROR_RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT = 0x1A48;
	public static final int ERROR_TRANSACTION_MUST_WRITETHROUGH = 0x1A49;
	public static final int ERROR_TRANSACTION_NO_SUPERIOR = 0x1A4A;
	public static final int ERROR_HEURISTIC_DAMAGE_POSSIBLE = 0x1A4B;
	public static final int ERROR_TRANSACTIONAL_CONFLICT = 0x1A90;
	public static final int ERROR_RM_NOT_ACTIVE = 0x1A91;
	public static final int ERROR_RM_METADATA_CORRUPT = 0x1A92;
	public static final int ERROR_DIRECTORY_NOT_RM = 0x1A93;
	public static final int ERROR_TRANSACTIONS_UNSUPPORTED_REMOTE = 0x1A95;
	public static final int ERROR_LOG_RESIZE_INVALID_SIZE = 0x1A96;
	public static final int ERROR_OBJECT_NO_LONGER_EXISTS = 0x1A97;
	public static final int ERROR_STREAM_MINIVERSION_NOT_FOUND = 0x1A98;
	public static final int ERROR_STREAM_MINIVERSION_NOT_VALID = 0x1A99;
	public static final int ERROR_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION = 0x1A9A;
	public static final int ERROR_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT = 0x1A9B;
	public static final int ERROR_CANT_CREATE_MORE_STREAM_MINIVERSIONS = 0x1A9C;
	public static final int ERROR_REMOTE_FILE_VERSION_MISMATCH = 0x1A9E;
	public static final int ERROR_HANDLE_NO_LONGER_VALID = 0x1A9F;
	public static final int ERROR_NO_TXF_METADATA = 0x1AA0;
	public static final int ERROR_LOG_CORRUPTION_DETECTED = 0x1AA1;
	public static final int ERROR_CANT_RECOVER_WITH_HANDLE_OPEN = 0x1AA2;
	public static final int ERROR_RM_DISCONNECTED = 0x1AA3;
	public static final int ERROR_ENLISTMENT_NOT_SUPERIOR = 0x1AA4;
	public static final int ERROR_RECOVERY_NOT_NEEDED = 0x1AA5;
	public static final int ERROR_RM_ALREADY_STARTED = 0x1AA6;
	public static final int ERROR_FILE_IDENTITY_NOT_PERSISTENT = 0x1AA7;
	public static final int ERROR_CANT_BREAK_TRANSACTIONAL_DEPENDENCY = 0x1AA8;
	public static final int ERROR_CANT_CROSS_RM_BOUNDARY = 0x1AA9;
	public static final int ERROR_TXF_DIR_NOT_EMPTY = 0x1AAA;
	public static final int ERROR_INDOUBT_TRANSACTIONS_EXIST = 0x1AAB;
	public static final int ERROR_TM_VOLATILE = 0x1AAC;
	public static final int ERROR_ROLLBACK_TIMER_EXPIRED = 0x1AAD;
	public static final int ERROR_TXF_ATTRIBUTE_CORRUPT = 0x1AAE;
	public static final int ERROR_EFS_NOT_ALLOWED_IN_TRANSACTION = 0x1AAF;
	public static final int ERROR_TRANSACTIONAL_OPEN_NOT_ALLOWED = 0x1AB0;
	public static final int ERROR_LOG_GROWTH_FAILED = 0x1AB1;
	public static final int ERROR_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE = 0x1AB2;
	public static final int ERROR_TXF_METADATA_ALREADY_PRESENT = 0x1AB3;
	public static final int ERROR_TRANSACTION_SCOPE_CALLBACKS_NOT_SET = 0x1AB4;
	public static final int ERROR_TRANSACTION_REQUIRED_PROMOTION = 0x1AB5;
	public static final int ERROR_CANNOT_EXECUTE_FILE_IN_TRANSACTION = 0x1AB6;
	public static final int ERROR_TRANSACTIONS_NOT_FROZEN = 0x1AB7;
	public static final int ERROR_TRANSACTION_FREEZE_IN_PROGRESS = 0x1AB8;
	public static final int ERROR_NOT_SNAPSHOT_VOLUME = 0x1AB9;
	public static final int ERROR_NO_SAVEPOINT_WITH_OPEN_FILES = 0x1ABA;
	public static final int ERROR_DATA_LOST_REPAIR = 0x1ABB;
	public static final int ERROR_SPARSE_NOT_ALLOWED_IN_TRANSACTION = 0x1ABC;
	public static final int ERROR_TM_IDENTITY_MISMATCH = 0x1ABD;
	public static final int ERROR_FLOATED_SECTION = 0x1ABE;
	public static final int ERROR_CANNOT_ACCEPT_TRANSACTED_WORK = 0x1ABF;
	public static final int ERROR_CANNOT_ABORT_TRANSACTIONS = 0x1AC0;
	public static final int ERROR_BAD_CLUSTERS = 0x1AC1;
	public static final int ERROR_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION = 0x1AC2;
	public static final int ERROR_VOLUME_DIRTY = 0x1AC3;
	public static final int ERROR_NO_LINK_TRACKING_IN_TRANSACTION = 0x1AC4;
	public static final int ERROR_OPERATION_NOT_SUPPORTED_IN_TRANSACTION = 0x1AC5;
	public static final int ERROR_EXPIRED_HANDLE = 0x1AC6;
	public static final int ERROR_TRANSACTION_NOT_ENLISTED = 0x1AC7;
	public static final int ERROR_CTX_WINSTATION_NAME_INVALID = 0x1B59;
	public static final int ERROR_CTX_INVALID_PD = 0x1B5A;
	public static final int ERROR_CTX_PD_NOT_FOUND = 0x1B5B;
	public static final int ERROR_CTX_WD_NOT_FOUND = 0x1B5C;
	public static final int ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY = 0x1B5D;
	public static final int ERROR_CTX_SERVICE_NAME_COLLISION = 0x1B5E;
	public static final int ERROR_CTX_CLOSE_PENDING = 0x1B5F;
	public static final int ERROR_CTX_NO_OUTBUF = 0x1B60;
	public static final int ERROR_CTX_MODEM_INF_NOT_FOUND = 0x1B61;
	public static final int ERROR_CTX_INVALID_MODEMNAME = 0x1B62;
	public static final int ERROR_CTX_MODEM_RESPONSE_ERROR = 0x1B63;
	public static final int ERROR_CTX_MODEM_RESPONSE_TIMEOUT = 0x1B64;
	public static final int ERROR_CTX_MODEM_RESPONSE_NO_CARRIER = 0x1B65;
	public static final int ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE = 0x1B66;
	public static final int ERROR_CTX_MODEM_RESPONSE_BUSY = 0x1B67;
	public static final int ERROR_CTX_MODEM_RESPONSE_VOICE = 0x1B68;
	public static final int ERROR_CTX_TD_ERROR = 0x1B69;
	public static final int ERROR_CTX_WINSTATION_NOT_FOUND = 0x1B6E;
	public static final int ERROR_CTX_WINSTATION_ALREADY_EXISTS = 0x1B6F;
	public static final int ERROR_CTX_WINSTATION_BUSY = 0x1B70;
	public static final int ERROR_CTX_BAD_VIDEO_MODE = 0x1B71;
	public static final int ERROR_CTX_GRAPHICS_INVALID = 0x1B7B;
	public static final int ERROR_CTX_LOGON_DISABLED = 0x1B7D;
	public static final int ERROR_CTX_NOT_CONSOLE = 0x1B7E;
	public static final int ERROR_CTX_CLIENT_QUERY_TIMEOUT = 0x1B80;
	public static final int ERROR_CTX_CONSOLE_DISCONNECT = 0x1B81;
	public static final int ERROR_CTX_CONSOLE_CONNECT = 0x1B82;
	public static final int ERROR_CTX_SHADOW_DENIED = 0x1B84;
	public static final int ERROR_CTX_WINSTATION_ACCESS_DENIED = 0x1B85;
	public static final int ERROR_CTX_INVALID_WD = 0x1B89;
	public static final int ERROR_CTX_SHADOW_INVALID = 0x1B8A;
	public static final int ERROR_CTX_SHADOW_DISABLED = 0x1B8B;
	public static final int ERROR_CTX_CLIENT_LICENSE_IN_USE = 0x1B8C;
	public static final int ERROR_CTX_CLIENT_LICENSE_NOT_SET = 0x1B8D;
	public static final int ERROR_CTX_LICENSE_NOT_AVAILABLE = 0x1B8E;
	public static final int ERROR_CTX_LICENSE_CLIENT_INVALID = 0x1B8F;
	public static final int ERROR_CTX_LICENSE_EXPIRED = 0x1B90;
	public static final int ERROR_CTX_SHADOW_NOT_RUNNING = 0x1B91;
	public static final int ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE = 0x1B92;
	public static final int ERROR_ACTIVATION_COUNT_EXCEEDED = 0x1B93;
	public static final int ERROR_CTX_WINSTATIONS_DISABLED = 0x1B94;
	public static final int ERROR_CTX_ENCRYPTION_LEVEL_REQUIRED = 0x1B95;
	public static final int ERROR_CTX_SESSION_IN_USE = 0x1B96;
	public static final int ERROR_CTX_NO_FORCE_LOGOFF = 0x1B97;
	public static final int ERROR_CTX_ACCOUNT_RESTRICTION = 0x1B98;
	public static final int ERROR_RDP_PROTOCOL_ERROR = 0x1B99;
	public static final int ERROR_CTX_CDM_CONNECT = 0x1B9A;
	public static final int ERROR_CTX_CDM_DISCONNECT = 0x1B9B;
	public static final int ERROR_CTX_SECURITY_LAYER_ERROR = 0x1B9C;
	public static final int ERROR_TS_INCOMPATIBLE_SESSIONS = 0x1B9D;
	public static final int ERROR_TS_VIDEO_SUBSYSTEM_ERROR = 0x1B9E;
	public static final int FRS_ERR_INVALID_API_SEQUENCE = 0x1F41;
	public static final int FRS_ERR_STARTING_SERVICE = 0x1F42;
	public static final int FRS_ERR_STOPPING_SERVICE = 0x1F43;
	public static final int FRS_ERR_INTERNAL_API = 0x1F44;
	public static final int FRS_ERR_INTERNAL = 0x1F45;
	public static final int FRS_ERR_SERVICE_COMM = 0x1F46;
	public static final int FRS_ERR_INSUFFICIENT_PRIV = 0x1F47;
	public static final int FRS_ERR_AUTHENTICATION = 0x1F48;
	public static final int FRS_ERR_PARENT_INSUFFICIENT_PRIV = 0x1F49;
	public static final int FRS_ERR_PARENT_AUTHENTICATION = 0x1F4A;
	public static final int FRS_ERR_CHILD_TO_PARENT_COMM = 0x1F4B;
	public static final int FRS_ERR_PARENT_TO_CHILD_COMM = 0x1F4C;
	public static final int FRS_ERR_SYSVOL_POPULATE = 0x1F4D;
	public static final int FRS_ERR_SYSVOL_POPULATE_TIMEOUT = 0x1F4E;
	public static final int FRS_ERR_SYSVOL_IS_BUSY = 0x1F4F;
	public static final int FRS_ERR_SYSVOL_DEMOTE = 0x1F50;
	public static final int FRS_ERR_INVALID_SERVICE_PARAMETER = 0x1F51;
	public static final int ERROR_DS_NOT_INSTALLED = 0x2008;
	public static final int ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY = 0x2009;
	public static final int ERROR_DS_NO_ATTRIBUTE_OR_VALUE = 0x200A;
	public static final int ERROR_DS_INVALID_ATTRIBUTE_SYNTAX = 0x200B;
	public static final int ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED = 0x200C;
	public static final int ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS = 0x200D;
	public static final int ERROR_DS_BUSY = 0x200E;
	public static final int ERROR_DS_UNAVAILABLE = 0x200F;
	public static final int ERROR_DS_NO_RIDS_ALLOCATED = 0x2010;
	public static final int ERROR_DS_NO_MORE_RIDS = 0x2011;
	public static final int ERROR_DS_INCORRECT_ROLE_OWNER = 0x2012;
	public static final int ERROR_DS_RIDMGR_INIT_ERROR = 0x2013;
	public static final int ERROR_DS_OBJ_CLASS_VIOLATION = 0x2014;
	public static final int ERROR_DS_CANT_ON_NON_LEAF = 0x2015;
	public static final int ERROR_DS_CANT_ON_RDN = 0x2016;
	public static final int ERROR_DS_CANT_MOD_OBJ_CLASS = 0x2017;
	public static final int ERROR_DS_CROSS_DOM_MOVE_ERROR = 0x2018;
	public static final int ERROR_DS_GC_NOT_AVAILABLE = 0x2019;
	public static final int ERROR_SHARED_POLICY = 0x201A;
	public static final int ERROR_POLICY_OBJECT_NOT_FOUND = 0x201B;
	public static final int ERROR_POLICY_ONLY_IN_DS = 0x201C;
	public static final int ERROR_PROMOTION_ACTIVE = 0x201D;
	public static final int ERROR_NO_PROMOTION_ACTIVE = 0x201E;
	public static final int ERROR_DS_OPERATIONS_ERROR = 0x2020;
	public static final int ERROR_DS_PROTOCOL_ERROR = 0x2021;
	public static final int ERROR_DS_TIMELIMIT_EXCEEDED = 0x2022;
	public static final int ERROR_DS_SIZELIMIT_EXCEEDED = 0x2023;
	public static final int ERROR_DS_ADMIN_LIMIT_EXCEEDED = 0x2024;
	public static final int ERROR_DS_COMPARE_FALSE = 0x2025;
	public static final int ERROR_DS_COMPARE_TRUE = 0x2026;
	public static final int ERROR_DS_AUTH_METHOD_NOT_SUPPORTED = 0x2027;
	public static final int ERROR_DS_STRONG_AUTH_REQUIRED = 0x2028;
	public static final int ERROR_DS_INAPPROPRIATE_AUTH = 0x2029;
	public static final int ERROR_DS_AUTH_UNKNOWN = 0x202A;
	public static final int ERROR_DS_REFERRAL = 0x202B;
	public static final int ERROR_DS_UNAVAILABLE_CRIT_EXTENSION = 0x202C;
	public static final int ERROR_DS_CONFIDENTIALITY_REQUIRED = 0x202D;
	public static final int ERROR_DS_INAPPROPRIATE_MATCHING = 0x202E;
	public static final int ERROR_DS_CONSTRAINT_VIOLATION = 0x202F;
	public static final int ERROR_DS_NO_SUCH_OBJECT = 0x2030;
	public static final int ERROR_DS_ALIAS_PROBLEM = 0x2031;
	public static final int ERROR_DS_INVALID_DN_SYNTAX = 0x2032;
	public static final int ERROR_DS_IS_LEAF = 0x2033;
	public static final int ERROR_DS_ALIAS_DEREF_PROBLEM = 0x2034;
	public static final int ERROR_DS_UNWILLING_TO_PERFORM = 0x2035;
	public static final int ERROR_DS_LOOP_DETECT = 0x2036;
	public static final int ERROR_DS_NAMING_VIOLATION = 0x2037;
	public static final int ERROR_DS_OBJECT_RESULTS_TOO_LARGE = 0x2038;
	public static final int ERROR_DS_AFFECTS_MULTIPLE_DSAS = 0x2039;
	public static final int ERROR_DS_SERVER_DOWN = 0x203A;
	public static final int ERROR_DS_LOCAL_ERROR = 0x203B;
	public static final int ERROR_DS_ENCODING_ERROR = 0x203C;
	public static final int ERROR_DS_DECODING_ERROR = 0x203D;
	public static final int ERROR_DS_FILTER_UNKNOWN = 0x203E;
	public static final int ERROR_DS_PARAM_ERROR = 0x203F;
	public static final int ERROR_DS_NOT_SUPPORTED = 0x2040;
	public static final int ERROR_DS_NO_RESULTS_RETURNED = 0x2041;
	public static final int ERROR_DS_CONTROL_NOT_FOUND = 0x2042;
	public static final int ERROR_DS_CLIENT_LOOP = 0x2043;
	public static final int ERROR_DS_REFERRAL_LIMIT_EXCEEDED = 0x2044;
	public static final int ERROR_DS_SORT_CONTROL_MISSING = 0x2045;
	public static final int ERROR_DS_OFFSET_RANGE_ERROR = 0x2046;
	public static final int ERROR_DS_RIDMGR_DISABLED = 0x2047;
	public static final int ERROR_DS_ROOT_MUST_BE_NC = 0x206D;
	public static final int ERROR_DS_ADD_REPLICA_INHIBITED = 0x206E;
	public static final int ERROR_DS_ATT_NOT_DEF_IN_SCHEMA = 0x206F;
	public static final int ERROR_DS_MAX_OBJ_SIZE_EXCEEDED = 0x2070;
	public static final int ERROR_DS_OBJ_STRING_NAME_EXISTS = 0x2071;
	public static final int ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA = 0x2072;
	public static final int ERROR_DS_RDN_DOESNT_MATCH_SCHEMA = 0x2073;
	public static final int ERROR_DS_NO_REQUESTED_ATTS_FOUND = 0x2074;
	public static final int ERROR_DS_USER_BUFFER_TO_SMALL = 0x2075;
	public static final int ERROR_DS_ATT_IS_NOT_ON_OBJ = 0x2076;
	public static final int ERROR_DS_ILLEGAL_MOD_OPERATION = 0x2077;
	public static final int ERROR_DS_OBJ_TOO_LARGE = 0x2078;
	public static final int ERROR_DS_BAD_INSTANCE_TYPE = 0x2079;
	public static final int ERROR_DS_MASTERDSA_REQUIRED = 0x207A;
	public static final int ERROR_DS_OBJECT_CLASS_REQUIRED = 0x207B;
	public static final int ERROR_DS_MISSING_REQUIRED_ATT = 0x207C;
	public static final int ERROR_DS_ATT_NOT_DEF_FOR_CLASS = 0x207D;
	public static final int ERROR_DS_ATT_ALREADY_EXISTS = 0x207E;
	public static final int ERROR_DS_CANT_ADD_ATT_VALUES = 0x2080;
	public static final int ERROR_DS_SINGLE_VALUE_CONSTRAINT = 0x2081;
	public static final int ERROR_DS_RANGE_CONSTRAINT = 0x2082;
	public static final int ERROR_DS_ATT_VAL_ALREADY_EXISTS = 0x2083;
	public static final int ERROR_DS_CANT_REM_MISSING_ATT = 0x2084;
	public static final int ERROR_DS_CANT_REM_MISSING_ATT_VAL = 0x2085;
	public static final int ERROR_DS_ROOT_CANT_BE_SUBREF = 0x2086;
	public static final int ERROR_DS_NO_CHAINING = 0x2087;
	public static final int ERROR_DS_NO_CHAINED_EVAL = 0x2088;
	public static final int ERROR_DS_NO_PARENT_OBJECT = 0x2089;
	public static final int ERROR_DS_PARENT_IS_AN_ALIAS = 0x208A;
	public static final int ERROR_DS_CANT_MIX_MASTER_AND_REPS = 0x208B;
	public static final int ERROR_DS_CHILDREN_EXIST = 0x208C;
	public static final int ERROR_DS_OBJ_NOT_FOUND = 0x208D;
	public static final int ERROR_DS_ALIASED_OBJ_MISSING = 0x208E;
	public static final int ERROR_DS_BAD_NAME_SYNTAX = 0x208F;
	public static final int ERROR_DS_ALIAS_POINTS_TO_ALIAS = 0x2090;
	public static final int ERROR_DS_CANT_DEREF_ALIAS = 0x2091;
	public static final int ERROR_DS_OUT_OF_SCOPE = 0x2092;
	public static final int ERROR_DS_OBJECT_BEING_REMOVED = 0x2093;
	public static final int ERROR_DS_CANT_DELETE_DSA_OBJ = 0x2094;
	public static final int ERROR_DS_GENERIC_ERROR = 0x2095;
	public static final int ERROR_DS_DSA_MUST_BE_INT_MASTER = 0x2096;
	public static final int ERROR_DS_CLASS_NOT_DSA = 0x2097;
	public static final int ERROR_DS_INSUFF_ACCESS_RIGHTS = 0x2098;
	public static final int ERROR_DS_ILLEGAL_SUPERIOR = 0x2099;
	public static final int ERROR_DS_ATTRIBUTE_OWNED_BY_SAM = 0x209A;
	public static final int ERROR_DS_NAME_TOO_MANY_PARTS = 0x209B;
	public static final int ERROR_DS_NAME_TOO_LONG = 0x209C;
	public static final int ERROR_DS_NAME_VALUE_TOO_LONG = 0x209D;
	public static final int ERROR_DS_NAME_UNPARSEABLE = 0x209E;
	public static final int ERROR_DS_NAME_TYPE_UNKNOWN = 0x209F;
	public static final int ERROR_DS_NOT_AN_OBJECT = 0x20A0;
	public static final int ERROR_DS_SEC_DESC_TOO_SHORT = 0x20A1;
	public static final int ERROR_DS_SEC_DESC_INVALID = 0x20A2;
	public static final int ERROR_DS_NO_DELETED_NAME = 0x20A3;
	public static final int ERROR_DS_SUBREF_MUST_HAVE_PARENT = 0x20A4;
	public static final int ERROR_DS_NCNAME_MUST_BE_NC = 0x20A5;
	public static final int ERROR_DS_CANT_ADD_SYSTEM_ONLY = 0x20A6;
	public static final int ERROR_DS_CLASS_MUST_BE_CONCRETE = 0x20A7;
	public static final int ERROR_DS_INVALID_DMD = 0x20A8;
	public static final int ERROR_DS_OBJ_GUID_EXISTS = 0x20A9;
	public static final int ERROR_DS_NOT_ON_BACKLINK = 0x20AA;
	public static final int ERROR_DS_NO_CROSSREF_FOR_NC = 0x20AB;
	public static final int ERROR_DS_SHUTTING_DOWN = 0x20AC;
	public static final int ERROR_DS_UNKNOWN_OPERATION = 0x20AD;
	public static final int ERROR_DS_INVALID_ROLE_OWNER = 0x20AE;
	public static final int ERROR_DS_COULDNT_CONTACT_FSMO = 0x20AF;
	public static final int ERROR_DS_CROSS_NC_DN_RENAME = 0x20B0;
	public static final int ERROR_DS_CANT_MOD_SYSTEM_ONLY = 0x20B1;
	public static final int ERROR_DS_REPLICATOR_ONLY = 0x20B2;
	public static final int ERROR_DS_OBJ_CLASS_NOT_DEFINED = 0x20B3;
	public static final int ERROR_DS_OBJ_CLASS_NOT_SUBCLASS = 0x20B4;
	public static final int ERROR_DS_NAME_REFERENCE_INVALID = 0x20B5;
	public static final int ERROR_DS_CROSS_REF_EXISTS = 0x20B6;
	public static final int ERROR_DS_CANT_DEL_MASTER_CROSSREF = 0x20B7;
	public static final int ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD = 0x20B8;
	public static final int ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX = 0x20B9;
	public static final int ERROR_DS_DUP_RDN = 0x20BA;
	public static final int ERROR_DS_DUP_OID = 0x20BB;
	public static final int ERROR_DS_DUP_MAPI_ID = 0x20BC;
	public static final int ERROR_DS_DUP_SCHEMA_ID_GUID = 0x20BD;
	public static final int ERROR_DS_DUP_LDAP_DISPLAY_NAME = 0x20BE;
	public static final int ERROR_DS_SEMANTIC_ATT_TEST = 0x20BF;
	public static final int ERROR_DS_SYNTAX_MISMATCH = 0x20C0;
	public static final int ERROR_DS_EXISTS_IN_MUST_HAVE = 0x20C1;
	public static final int ERROR_DS_EXISTS_IN_MAY_HAVE = 0x20C2;
	public static final int ERROR_DS_NONEXISTENT_MAY_HAVE = 0x20C3;
	public static final int ERROR_DS_NONEXISTENT_MUST_HAVE = 0x20C4;
	public static final int ERROR_DS_AUX_CLS_TEST_FAIL = 0x20C5;
	public static final int ERROR_DS_NONEXISTENT_POSS_SUP = 0x20C6;
	public static final int ERROR_DS_SUB_CLS_TEST_FAIL = 0x20C7;
	public static final int ERROR_DS_BAD_RDN_ATT_ID_SYNTAX = 0x20C8;
	public static final int ERROR_DS_EXISTS_IN_AUX_CLS = 0x20C9;
	public static final int ERROR_DS_EXISTS_IN_SUB_CLS = 0x20CA;
	public static final int ERROR_DS_EXISTS_IN_POSS_SUP = 0x20CB;
	public static final int ERROR_DS_RECALCSCHEMA_FAILED = 0x20CC;
	public static final int ERROR_DS_TREE_DELETE_NOT_FINISHED = 0x20CD;
	public static final int ERROR_DS_CANT_DELETE = 0x20CE;
	public static final int ERROR_DS_ATT_SCHEMA_REQ_ID = 0x20CF;
	public static final int ERROR_DS_BAD_ATT_SCHEMA_SYNTAX = 0x20D0;
	public static final int ERROR_DS_CANT_CACHE_ATT = 0x20D1;
	public static final int ERROR_DS_CANT_CACHE_CLASS = 0x20D2;
	public static final int ERROR_DS_CANT_REMOVE_ATT_CACHE = 0x20D3;
	public static final int ERROR_DS_CANT_REMOVE_CLASS_CACHE = 0x20D4;
	public static final int ERROR_DS_CANT_RETRIEVE_DN = 0x20D5;
	public static final int ERROR_DS_MISSING_SUPREF = 0x20D6;
	public static final int ERROR_DS_CANT_RETRIEVE_INSTANCE = 0x20D7;
	public static final int ERROR_DS_CODE_INCONSISTENCY = 0x20D8;
	public static final int ERROR_DS_DATABASE_ERROR = 0x20D9;
	public static final int ERROR_DS_GOVERNSID_MISSING = 0x20DA;
	public static final int ERROR_DS_MISSING_EXPECTED_ATT = 0x20DB;
	public static final int ERROR_DS_NCNAME_MISSING_CR_REF = 0x20DC;
	public static final int ERROR_DS_SECURITY_CHECKING_ERROR = 0x20DD;
	public static final int ERROR_DS_SCHEMA_NOT_LOADED = 0x20DE;
	public static final int ERROR_DS_SCHEMA_ALLOC_FAILED = 0x20DF;
	public static final int ERROR_DS_ATT_SCHEMA_REQ_SYNTAX = 0x20E0;
	public static final int ERROR_DS_GCVERIFY_ERROR = 0x20E1;
	public static final int ERROR_DS_DRA_SCHEMA_MISMATCH = 0x20E2;
	public static final int ERROR_DS_CANT_FIND_DSA_OBJ = 0x20E3;
	public static final int ERROR_DS_CANT_FIND_EXPECTED_NC = 0x20E4;
	public static final int ERROR_DS_CANT_FIND_NC_IN_CACHE = 0x20E5;
	public static final int ERROR_DS_CANT_RETRIEVE_CHILD = 0x20E6;
	public static final int ERROR_DS_SECURITY_ILLEGAL_MODIFY = 0x20E7;
	public static final int ERROR_DS_CANT_REPLACE_HIDDEN_REC = 0x20E8;
	public static final int ERROR_DS_BAD_HIERARCHY_FILE = 0x20E9;
	public static final int ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED = 0x20EA;
	public static final int ERROR_DS_CONFIG_PARAM_MISSING = 0x20EB;
	public static final int ERROR_DS_COUNTING_AB_INDICES_FAILED = 0x20EC;
	public static final int ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED = 0x20ED;
	public static final int ERROR_DS_INTERNAL_FAILURE = 0x20EE;
	public static final int ERROR_DS_UNKNOWN_ERROR = 0x20EF;
	public static final int ERROR_DS_ROOT_REQUIRES_CLASS_TOP = 0x20F0;
	public static final int ERROR_DS_REFUSING_FSMO_ROLES = 0x20F1;
	public static final int ERROR_DS_MISSING_FSMO_SETTINGS = 0x20F2;
	public static final int ERROR_DS_UNABLE_TO_SURRENDER_ROLES = 0x20F3;
	public static final int ERROR_DS_DRA_GENERIC = 0x20F4;
	public static final int ERROR_DS_DRA_INVALID_PARAMETER = 0x20F5;
	public static final int ERROR_DS_DRA_BUSY = 0x20F6;
	public static final int ERROR_DS_DRA_BAD_DN = 0x20F7;
	public static final int ERROR_DS_DRA_BAD_NC = 0x20F8;
	public static final int ERROR_DS_DRA_DN_EXISTS = 0x20F9;
	public static final int ERROR_DS_DRA_INTERNAL_ERROR = 0x20FA;
	public static final int ERROR_DS_DRA_INCONSISTENT_DIT = 0x20FB;
	public static final int ERROR_DS_DRA_CONNECTION_FAILED = 0x20FC;
	public static final int ERROR_DS_DRA_BAD_INSTANCE_TYPE = 0x20FD;
	public static final int ERROR_DS_DRA_OUT_OF_MEM = 0x20FE;
	public static final int ERROR_DS_DRA_MAIL_PROBLEM = 0x20FF;
	public static final int ERROR_DS_DRA_REF_ALREADY_EXISTS = 0x2100;
	public static final int ERROR_DS_DRA_REF_NOT_FOUND = 0x2101;
	public static final int ERROR_DS_DRA_OBJ_IS_REP_SOURCE = 0x2102;
	public static final int ERROR_DS_DRA_DB_ERROR = 0x2103;
	public static final int ERROR_DS_DRA_NO_REPLICA = 0x2104;
	public static final int ERROR_DS_DRA_ACCESS_DENIED = 0x2105;
	public static final int ERROR_DS_DRA_NOT_SUPPORTED = 0x2106;
	public static final int ERROR_DS_DRA_RPC_CANCELLED = 0x2107;
	public static final int ERROR_DS_DRA_SOURCE_DISABLED = 0x2108;
	public static final int ERROR_DS_DRA_SINK_DISABLED = 0x2109;
	public static final int ERROR_DS_DRA_NAME_COLLISION = 0x210A;
	public static final int ERROR_DS_DRA_SOURCE_REINSTALLED = 0x210B;
	public static final int ERROR_DS_DRA_MISSING_PARENT = 0x210C;
	public static final int ERROR_DS_DRA_PREEMPTED = 0x210D;
	public static final int ERROR_DS_DRA_ABANDON_SYNC = 0x210E;
	public static final int ERROR_DS_DRA_SHUTDOWN = 0x210F;
	public static final int ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET = 0x2110;
	public static final int ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA = 0x2111;
	public static final int ERROR_DS_DRA_EXTN_CONNECTION_FAILED = 0x2112;
	public static final int ERROR_DS_INSTALL_SCHEMA_MISMATCH = 0x2113;
	public static final int ERROR_DS_DUP_LINK_ID = 0x2114;
	public static final int ERROR_DS_NAME_ERROR_RESOLVING = 0x2115;
	public static final int ERROR_DS_NAME_ERROR_NOT_FOUND = 0x2116;
	public static final int ERROR_DS_NAME_ERROR_NOT_UNIQUE = 0x2117;
	public static final int ERROR_DS_NAME_ERROR_NO_MAPPING = 0x2118;
	public static final int ERROR_DS_NAME_ERROR_DOMAIN_ONLY = 0x2119;
	public static final int ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING = 0x211A;
	public static final int ERROR_DS_CONSTRUCTED_ATT_MOD = 0x211B;
	public static final int ERROR_DS_WRONG_OM_OBJ_CLASS = 0x211C;
	public static final int ERROR_DS_DRA_REPL_PENDING = 0x211D;
	public static final int ERROR_DS_DS_REQUIRED = 0x211E;
	public static final int ERROR_DS_INVALID_LDAP_DISPLAY_NAME = 0x211F;
	public static final int ERROR_DS_NON_BASE_SEARCH = 0x2120;
	public static final int ERROR_DS_CANT_RETRIEVE_ATTS = 0x2121;
	public static final int ERROR_DS_BACKLINK_WITHOUT_LINK = 0x2122;
	public static final int ERROR_DS_EPOCH_MISMATCH = 0x2123;
	public static final int ERROR_DS_SRC_NAME_MISMATCH = 0x2124;
	public static final int ERROR_DS_SRC_AND_DST_NC_IDENTICAL = 0x2125;
	public static final int ERROR_DS_DST_NC_MISMATCH = 0x2126;
	public static final int ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC = 0x2127;
	public static final int ERROR_DS_SRC_GUID_MISMATCH = 0x2128;
	public static final int ERROR_DS_CANT_MOVE_DELETED_OBJECT = 0x2129;
	public static final int ERROR_DS_PDC_OPERATION_IN_PROGRESS = 0x212A;
	public static final int ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD = 0x212B;
	public static final int ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION = 0x212C;
	public static final int ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS = 0x212D;
	public static final int ERROR_DS_NC_MUST_HAVE_NC_PARENT = 0x212E;
	public static final int ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE = 0x212F;
	public static final int ERROR_DS_DST_DOMAIN_NOT_NATIVE = 0x2130;
	public static final int ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER = 0x2131;
	public static final int ERROR_DS_CANT_MOVE_ACCOUNT_GROUP = 0x2132;
	public static final int ERROR_DS_CANT_MOVE_RESOURCE_GROUP = 0x2133;
	public static final int ERROR_DS_INVALID_SEARCH_FLAG = 0x2134;
	public static final int ERROR_DS_NO_TREE_DELETE_ABOVE_NC = 0x2135;
	public static final int ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE = 0x2136;
	public static final int ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE = 0x2137;
	public static final int ERROR_DS_SAM_INIT_FAILURE = 0x2138;
	public static final int ERROR_DS_SENSITIVE_GROUP_VIOLATION = 0x2139;
	public static final int ERROR_DS_CANT_MOD_PRIMARYGROUPID = 0x213A;
	public static final int ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD = 0x213B;
	public static final int ERROR_DS_NONSAFE_SCHEMA_CHANGE = 0x213C;
	public static final int ERROR_DS_SCHEMA_UPDATE_DISALLOWED = 0x213D;
	public static final int ERROR_DS_CANT_CREATE_UNDER_SCHEMA = 0x213E;
	public static final int ERROR_DS_INSTALL_NO_SRC_SCH_VERSION = 0x213F;
	public static final int ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE = 0x2140;
	public static final int ERROR_DS_INVALID_GROUP_TYPE = 0x2141;
	public static final int ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN = 0x2142;
	public static final int ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN = 0x2143;
	public static final int ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER = 0x2144;
	public static final int ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER = 0x2145;
	public static final int ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER = 0x2146;
	public static final int ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER = 0x2147;
	public static final int ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER = 0x2148;
	public static final int ERROR_DS_HAVE_PRIMARY_MEMBERS = 0x2149;
	public static final int ERROR_DS_STRING_SD_CONVERSION_FAILED = 0x214A;
	public static final int ERROR_DS_NAMING_MASTER_GC = 0x214B;
	public static final int ERROR_DS_DNS_LOOKUP_FAILURE = 0x214C;
	public static final int ERROR_DS_COULDNT_UPDATE_SPNS = 0x214D;
	public static final int ERROR_DS_CANT_RETRIEVE_SD = 0x214E;
	public static final int ERROR_DS_KEY_NOT_UNIQUE = 0x214F;
	public static final int ERROR_DS_WRONG_LINKED_ATT_SYNTAX = 0x2150;
	public static final int ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD = 0x2151;
	public static final int ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY = 0x2152;
	public static final int ERROR_DS_CANT_START = 0x2153;
	public static final int ERROR_DS_INIT_FAILURE = 0x2154;
	public static final int ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION = 0x2155;
	public static final int ERROR_DS_SOURCE_DOMAIN_IN_FOREST = 0x2156;
	public static final int ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST = 0x2157;
	public static final int ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED = 0x2158;
	public static final int ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN = 0x2159;
	public static final int ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER = 0x215A;
	public static final int ERROR_DS_SRC_SID_EXISTS_IN_FOREST = 0x215B;
	public static final int ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH = 0x215C;
	public static final int ERROR_SAM_INIT_FAILURE = 0x215D;
	public static final int ERROR_DS_DRA_SCHEMA_INFO_SHIP = 0x215E;
	public static final int ERROR_DS_DRA_SCHEMA_CONFLICT = 0x215F;
	public static final int ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT = 0x2160;
	public static final int ERROR_DS_DRA_OBJ_NC_MISMATCH = 0x2161;
	public static final int ERROR_DS_NC_STILL_HAS_DSAS = 0x2162;
	public static final int ERROR_DS_GC_REQUIRED = 0x2163;
	public static final int ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY = 0x2164;
	public static final int ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS = 0x2165;
	public static final int ERROR_DS_CANT_ADD_TO_GC = 0x2166;
	public static final int ERROR_DS_NO_CHECKPOINT_WITH_PDC = 0x2167;
	public static final int ERROR_DS_SOURCE_AUDITING_NOT_ENABLED = 0x2168;
	public static final int ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC = 0x2169;
	public static final int ERROR_DS_INVALID_NAME_FOR_SPN = 0x216A;
	public static final int ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS = 0x216B;
	public static final int ERROR_DS_UNICODEPWD_NOT_IN_QUOTES = 0x216C;
	public static final int ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED = 0x216D;
	public static final int ERROR_DS_MUST_BE_RUN_ON_DST_DC = 0x216E;
	public static final int ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER = 0x216F;
	public static final int ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ = 0x2170;
	public static final int ERROR_DS_INIT_FAILURE_CONSOLE = 0x2171;
	public static final int ERROR_DS_SAM_INIT_FAILURE_CONSOLE = 0x2172;
	public static final int ERROR_DS_FOREST_VERSION_TOO_HIGH = 0x2173;
	public static final int ERROR_DS_DOMAIN_VERSION_TOO_HIGH = 0x2174;
	public static final int ERROR_DS_FOREST_VERSION_TOO_LOW = 0x2175;
	public static final int ERROR_DS_DOMAIN_VERSION_TOO_LOW = 0x2176;
	public static final int ERROR_DS_INCOMPATIBLE_VERSION = 0x2177;
	public static final int ERROR_DS_LOW_DSA_VERSION = 0x2178;
	public static final int ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN = 0x2179;
	public static final int ERROR_DS_NOT_SUPPORTED_SORT_ORDER = 0x217A;
	public static final int ERROR_DS_NAME_NOT_UNIQUE = 0x217B;
	public static final int ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4 = 0x217C;
	public static final int ERROR_DS_OUT_OF_VERSION_STORE = 0x217D;
	public static final int ERROR_DS_INCOMPATIBLE_CONTROLS_USED = 0x217E;
	public static final int ERROR_DS_NO_REF_DOMAIN = 0x217F;
	public static final int ERROR_DS_RESERVED_LINK_ID = 0x2180;
	public static final int ERROR_DS_LINK_ID_NOT_AVAILABLE = 0x2181;
	public static final int ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER = 0x2182;
	public static final int ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE = 0x2183;
	public static final int ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC = 0x2184;
	public static final int ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG = 0x2185;
	public static final int ERROR_DS_MODIFYDN_WRONG_GRANDPARENT = 0x2186;
	public static final int ERROR_DS_NAME_ERROR_TRUST_REFERRAL = 0x2187;
	public static final int ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER = 0x2188;
	public static final int ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD = 0x2189;
	public static final int ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2 = 0x218A;
	public static final int ERROR_DS_THREAD_LIMIT_EXCEEDED = 0x218B;
	public static final int ERROR_DS_NOT_CLOSEST = 0x218C;
	public static final int ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF = 0x218D;
	public static final int ERROR_DS_SINGLE_USER_MODE_FAILED = 0x218E;
	public static final int ERROR_DS_NTDSCRIPT_SYNTAX_ERROR = 0x218F;
	public static final int ERROR_DS_NTDSCRIPT_PROCESS_ERROR = 0x2190;
	public static final int ERROR_DS_DIFFERENT_REPL_EPOCHS = 0x2191;
	public static final int ERROR_DS_DRS_EXTENSIONS_CHANGED = 0x2192;
	public static final int ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR = 0x2193;
	public static final int ERROR_DS_NO_MSDS_INTID = 0x2194;
	public static final int ERROR_DS_DUP_MSDS_INTID = 0x2195;
	public static final int ERROR_DS_EXISTS_IN_RDNATTID = 0x2196;
	public static final int ERROR_DS_AUTHORIZATION_FAILED = 0x2197;
	public static final int ERROR_DS_INVALID_SCRIPT = 0x2198;
	public static final int ERROR_DS_REMOTE_CROSSREF_OP_FAILED = 0x2199;
	public static final int ERROR_DS_CROSS_REF_BUSY = 0x219A;
	public static final int ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN = 0x219B;
	public static final int ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC = 0x219C;
	public static final int ERROR_DS_DUPLICATE_ID_FOUND = 0x219D;
	public static final int ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT = 0x219E;
	public static final int ERROR_DS_GROUP_CONVERSION_ERROR = 0x219F;
	public static final int ERROR_DS_CANT_MOVE_APP_BASIC_GROUP = 0x21A0;
	public static final int ERROR_DS_CANT_MOVE_APP_QUERY_GROUP = 0x21A1;
	public static final int ERROR_DS_ROLE_NOT_VERIFIED = 0x21A2;
	public static final int ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL = 0x21A3;
	public static final int ERROR_DS_DOMAIN_RENAME_IN_PROGRESS = 0x21A4;
	public static final int ERROR_DS_EXISTING_AD_CHILD_NC = 0x21A5;
	public static final int ERROR_DS_REPL_LIFETIME_EXCEEDED = 0x21A6;
	public static final int ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER = 0x21A7;
	public static final int ERROR_DS_LDAP_SEND_QUEUE_FULL = 0x21A8;
	public static final int ERROR_DS_DRA_OUT_SCHEDULE_WINDOW = 0x21A9;
	public static final int ERROR_DS_POLICY_NOT_KNOWN = 0x21AA;
	public static final int ERROR_NO_SITE_SETTINGS_OBJECT = 0x21AB;
	public static final int ERROR_NO_SECRETS = 0x21AC;
	public static final int ERROR_NO_WRITABLE_DC_FOUND = 0x21AD;
	public static final int ERROR_DS_NO_SERVER_OBJECT = 0x21AE;
	public static final int ERROR_DS_NO_NTDSA_OBJECT = 0x21AF;
	public static final int ERROR_DS_NON_ASQ_SEARCH = 0x21B0;
	public static final int ERROR_DS_AUDIT_FAILURE = 0x21B1;
	public static final int ERROR_DS_INVALID_SEARCH_FLAG_SUBTREE = 0x21B2;
	public static final int ERROR_DS_INVALID_SEARCH_FLAG_TUPLE = 0x21B3;
	public static final int ERROR_DS_HIERARCHY_TABLE_TOO_DEEP = 0x21B4;
	public static final int ERROR_DS_DRA_CORRUPT_UTD_VECTOR = 0x21B5;
	public static final int ERROR_DS_DRA_SECRETS_DENIED = 0x21B6;
	public static final int ERROR_DS_RESERVED_MAPI_ID = 0x21B7;
	public static final int ERROR_DS_MAPI_ID_NOT_AVAILABLE = 0x21B8;
	public static final int ERROR_DS_DRA_MISSING_KRBTGT_SECRET = 0x21B9;
	public static final int ERROR_DS_DOMAIN_NAME_EXISTS_IN_FOREST = 0x21BA;
	public static final int ERROR_DS_FLAT_NAME_EXISTS_IN_FOREST = 0x21BB;
	public static final int ERROR_INVALID_USER_PRINCIPAL_NAME = 0x21BC;
	public static final int ERROR_DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS = 0x21BD;
	public static final int ERROR_DS_OID_NOT_FOUND = 0x21BE;
	public static final int ERROR_DS_DRA_RECYCLED_TARGET = 0x21BF;
	public static final int ERROR_DS_DISALLOWED_NC_REDIRECT = 0x21C0;
	public static final int ERROR_DS_HIGH_ADLDS_FFL = 0x21C1;
	public static final int ERROR_DS_HIGH_DSA_VERSION = 0x21C2;
	public static final int ERROR_DS_LOW_ADLDS_FFL = 0x21C3;
	public static final int ERROR_DOMAIN_SID_SAME_AS_LOCAL_WORKSTATION = 0x21C4;
	public static final int ERROR_DS_UNDELETE_SAM_VALIDATION_FAILED = 0x21C5;
	public static final int ERROR_INCORRECT_ACCOUNT_TYPE = 0x21C6;
	public static final int DNS_ERROR_RCODE_FORMAT_ERROR = 0x2329;
	public static final int DNS_ERROR_RCODE_SERVER_FAILURE = 0x232A;
	public static final int DNS_ERROR_RCODE_NAME_ERROR = 0x232B;
	public static final int DNS_ERROR_RCODE_NOT_IMPLEMENTED = 0x232C;
	public static final int DNS_ERROR_RCODE_REFUSED = 0x232D;
	public static final int DNS_ERROR_RCODE_YXDOMAIN = 0x232E;
	public static final int DNS_ERROR_RCODE_YXRRSET = 0x232F;
	public static final int DNS_ERROR_RCODE_NXRRSET = 0x2330;
	public static final int DNS_ERROR_RCODE_NOTAUTH = 0x2331;
	public static final int DNS_ERROR_RCODE_NOTZONE = 0x2332;
	public static final int DNS_ERROR_RCODE_BADSIG = 0x2338;
	public static final int DNS_ERROR_RCODE_BADKEY = 0x2339;
	public static final int DNS_ERROR_RCODE_BADTIME = 0x233A;
	public static final int DNS_ERROR_KEYMASTER_REQUIRED = 0x238D;
	public static final int DNS_ERROR_NOT_ALLOWED_ON_SIGNED_ZONE = 0x238E;
	public static final int DNS_ERROR_NSEC3_INCOMPATIBLE_WITH_RSA_SHA1 = 0x238F;
	public static final int DNS_ERROR_NOT_ENOUGH_SIGNING_KEY_DESCRIPTORS = 0x2390;
	public static final int DNS_ERROR_UNSUPPORTED_ALGORITHM = 0x2391;
	public static final int DNS_ERROR_INVALID_KEY_SIZE = 0x2392;
	public static final int DNS_ERROR_SIGNING_KEY_NOT_ACCESSIBLE = 0x2393;
	public static final int DNS_ERROR_KSP_DOES_NOT_SUPPORT_PROTECTION = 0x2394;
	public static final int DNS_ERROR_UNEXPECTED_DATA_PROTECTION_ERROR = 0x2395;
	public static final int DNS_ERROR_UNEXPECTED_CNG_ERROR = 0x2396;
	public static final int DNS_ERROR_UNKNOWN_SIGNING_PARAMETER_VERSION = 0x2397;
	public static final int DNS_ERROR_KSP_NOT_ACCESSIBLE = 0x2398;
	public static final int DNS_ERROR_TOO_MANY_SKDS = 0x2399;
	public static final int DNS_ERROR_INVALID_ROLLOVER_PERIOD = 0x239A;
	public static final int DNS_ERROR_INVALID_INITIAL_ROLLOVER_OFFSET = 0x239B;
	public static final int DNS_ERROR_ROLLOVER_IN_PROGRESS = 0x239C;
	public static final int DNS_ERROR_STANDBY_KEY_NOT_PRESENT = 0x239D;
	public static final int DNS_ERROR_NOT_ALLOWED_ON_ZSK = 0x239E;
	public static final int DNS_ERROR_NOT_ALLOWED_ON_ACTIVE_SKD = 0x239F;
	public static final int DNS_ERROR_ROLLOVER_ALREADY_QUEUED = 0x23A0;
	public static final int DNS_ERROR_NOT_ALLOWED_ON_UNSIGNED_ZONE = 0x23A1;
	public static final int DNS_ERROR_BAD_KEYMASTER = 0x23A2;
	public static final int DNS_ERROR_INVALID_SIGNATURE_VALIDITY_PERIOD = 0x23A3;
	public static final int DNS_ERROR_INVALID_NSEC3_ITERATION_COUNT = 0x23A4;
	public static final int DNS_ERROR_DNSSEC_IS_DISABLED = 0x23A5;
	public static final int DNS_ERROR_INVALID_XML = 0x23A6;
	public static final int DNS_ERROR_NO_VALID_TRUST_ANCHORS = 0x23A7;
	public static final int DNS_ERROR_ROLLOVER_NOT_POKEABLE = 0x23A8;
	public static final int DNS_ERROR_NSEC3_NAME_COLLISION = 0x23A9;
	public static final int DNS_ERROR_NSEC_INCOMPATIBLE_WITH_NSEC3_RSA_SHA1 = 0x23AA;
	public static final int DNS_INFO_NO_RECORDS = 0x251D;
	public static final int DNS_ERROR_BAD_PACKET = 0x251E;
	public static final int DNS_ERROR_NO_PACKET = 0x251F;
	public static final int DNS_ERROR_RCODE = 0x2520;
	public static final int DNS_ERROR_UNSECURE_PACKET = 0x2521;
	public static final int DNS_REQUEST_PENDING = 0x2522;
	public static final int DNS_ERROR_INVALID_TYPE = 0x254F;
	public static final int DNS_ERROR_INVALID_IP_ADDRESS = 0x2550;
	public static final int DNS_ERROR_INVALID_PROPERTY = 0x2551;
	public static final int DNS_ERROR_TRY_AGAIN_LATER = 0x2552;
	public static final int DNS_ERROR_NOT_UNIQUE = 0x2553;
	public static final int DNS_ERROR_NON_RFC_NAME = 0x2554;
	public static final int DNS_STATUS_FQDN = 0x2555;
	public static final int DNS_STATUS_DOTTED_NAME = 0x2556;
	public static final int DNS_STATUS_SINGLE_PART_NAME = 0x2557;
	public static final int DNS_ERROR_INVALID_NAME_CHAR = 0x2558;
	public static final int DNS_ERROR_NUMERIC_NAME = 0x2559;
	public static final int DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER = 0x255A;
	public static final int DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION = 0x255B;
	public static final int DNS_ERROR_CANNOT_FIND_ROOT_HINTS = 0x255C;
	public static final int DNS_ERROR_INCONSISTENT_ROOT_HINTS = 0x255D;
	public static final int DNS_ERROR_DWORD_VALUE_TOO_SMALL = 0x255E;
	public static final int DNS_ERROR_DWORD_VALUE_TOO_LARGE = 0x255F;
	public static final int DNS_ERROR_BACKGROUND_LOADING = 0x2560;
	public static final int DNS_ERROR_NOT_ALLOWED_ON_RODC = 0x2561;
	public static final int DNS_ERROR_NOT_ALLOWED_UNDER_DNAME = 0x2562;
	public static final int DNS_ERROR_DELEGATION_REQUIRED = 0x2563;
	public static final int DNS_ERROR_INVALID_POLICY_TABLE = 0x2564;
	public static final int DNS_ERROR_ZONE_DOES_NOT_EXIST = 0x2581;
	public static final int DNS_ERROR_NO_ZONE_INFO = 0x2582;
	public static final int DNS_ERROR_INVALID_ZONE_OPERATION = 0x2583;
	public static final int DNS_ERROR_ZONE_CONFIGURATION_ERROR = 0x2584;
	public static final int DNS_ERROR_ZONE_HAS_NO_SOA_RECORD = 0x2585;
	public static final int DNS_ERROR_ZONE_HAS_NO_NS_RECORDS = 0x2586;
	public static final int DNS_ERROR_ZONE_LOCKED = 0x2587;
	public static final int DNS_ERROR_ZONE_CREATION_FAILED = 0x2588;
	public static final int DNS_ERROR_ZONE_ALREADY_EXISTS = 0x2589;
	public static final int DNS_ERROR_AUTOZONE_ALREADY_EXISTS = 0x258A;
	public static final int DNS_ERROR_INVALID_ZONE_TYPE = 0x258B;
	public static final int DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP = 0x258C;
	public static final int DNS_ERROR_ZONE_NOT_SECONDARY = 0x258D;
	public static final int DNS_ERROR_NEED_SECONDARY_ADDRESSES = 0x258E;
	public static final int DNS_ERROR_WINS_INIT_FAILED = 0x258F;
	public static final int DNS_ERROR_NEED_WINS_SERVERS = 0x2590;
	public static final int DNS_ERROR_NBSTAT_INIT_FAILED = 0x2591;
	public static final int DNS_ERROR_SOA_DELETE_INVALID = 0x2592;
	public static final int DNS_ERROR_FORWARDER_ALREADY_EXISTS = 0x2593;
	public static final int DNS_ERROR_ZONE_REQUIRES_MASTER_IP = 0x2594;
	public static final int DNS_ERROR_ZONE_IS_SHUTDOWN = 0x2595;
	public static final int DNS_ERROR_ZONE_LOCKED_FOR_SIGNING = 0x2596;
	public static final int DNS_ERROR_PRIMARY_REQUIRES_DATAFILE = 0x25B3;
	public static final int DNS_ERROR_INVALID_DATAFILE_NAME = 0x25B4;
	public static final int DNS_ERROR_DATAFILE_OPEN_FAILURE = 0x25B5;
	public static final int DNS_ERROR_FILE_WRITEBACK_FAILED = 0x25B6;
	public static final int DNS_ERROR_DATAFILE_PARSING = 0x25B7;
	public static final int DNS_ERROR_RECORD_DOES_NOT_EXIST = 0x25E5;
	public static final int DNS_ERROR_RECORD_FORMAT = 0x25E6;
	public static final int DNS_ERROR_NODE_CREATION_FAILED = 0x25E7;
	public static final int DNS_ERROR_UNKNOWN_RECORD_TYPE = 0x25E8;
	public static final int DNS_ERROR_RECORD_TIMED_OUT = 0x25E9;
	public static final int DNS_ERROR_NAME_NOT_IN_ZONE = 0x25EA;
	public static final int DNS_ERROR_CNAME_LOOP = 0x25EB;
	public static final int DNS_ERROR_NODE_IS_CNAME = 0x25EC;
	public static final int DNS_ERROR_CNAME_COLLISION = 0x25ED;
	public static final int DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT = 0x25EE;
	public static final int DNS_ERROR_RECORD_ALREADY_EXISTS = 0x25EF;
	public static final int DNS_ERROR_SECONDARY_DATA = 0x25F0;
	public static final int DNS_ERROR_NO_CREATE_CACHE_DATA = 0x25F1;
	public static final int DNS_ERROR_NAME_DOES_NOT_EXIST = 0x25F2;
	public static final int DNS_WARNING_PTR_CREATE_FAILED = 0x25F3;
	public static final int DNS_WARNING_DOMAIN_UNDELETED = 0x25F4;
	public static final int DNS_ERROR_DS_UNAVAILABLE = 0x25F5;
	public static final int DNS_ERROR_DS_ZONE_ALREADY_EXISTS = 0x25F6;
	public static final int DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE = 0x25F7;
	public static final int DNS_ERROR_NODE_IS_DNAME = 0x25F8;
	public static final int DNS_ERROR_DNAME_COLLISION = 0x25F9;
	public static final int DNS_ERROR_ALIAS_LOOP = 0x25FA;
	public static final int DNS_INFO_AXFR_COMPLETE = 0x2617;
	public static final int DNS_ERROR_AXFR = 0x2618;
	public static final int DNS_INFO_ADDED_LOCAL_WINS = 0x2619;
	public static final int DNS_STATUS_CONTINUE_NEEDED = 0x2649;
	public static final int DNS_ERROR_NO_TCPIP = 0x267B;
	public static final int DNS_ERROR_NO_DNS_SERVERS = 0x267C;
	public static final int DNS_ERROR_DP_DOES_NOT_EXIST = 0x26AD;
	public static final int DNS_ERROR_DP_ALREADY_EXISTS = 0x26AE;
	public static final int DNS_ERROR_DP_NOT_ENLISTED = 0x26AF;
	public static final int DNS_ERROR_DP_ALREADY_ENLISTED = 0x26B0;
	public static final int DNS_ERROR_DP_NOT_AVAILABLE = 0x26B1;
	public static final int DNS_ERROR_DP_FSMO_ERROR = 0x26B2;
	public static final int WSAEINTR = 0x2714;
	public static final int WSAEBADF = 0x2719;
	public static final int WSAEACCES = 0x271D;
	public static final int WSAEFAULT = 0x271E;
	public static final int WSAEINVAL = 0x2726;
	public static final int WSAEMFILE = 0x2728;
	public static final int WSAEWOULDBLOCK = 0x2733;
	public static final int WSAEINPROGRESS = 0x2734;
	public static final int WSAEALREADY = 0x2735;
	public static final int WSAENOTSOCK = 0x2736;
	public static final int WSAEDESTADDRREQ = 0x2737;
	public static final int WSAEMSGSIZE = 0x2738;
	public static final int WSAEPROTOTYPE = 0x2739;
	public static final int WSAENOPROTOOPT = 0x273A;
	public static final int WSAEPROTONOSUPPORT = 0x273B;
	public static final int WSAESOCKTNOSUPPORT = 0x273C;
	public static final int WSAEOPNOTSUPP = 0x273D;
	public static final int WSAEPFNOSUPPORT = 0x273E;
	public static final int WSAEAFNOSUPPORT = 0x273F;
	public static final int WSAEADDRINUSE = 0x2740;
	public static final int WSAEADDRNOTAVAIL = 0x2741;
	public static final int WSAENETDOWN = 0x2742;
	public static final int WSAENETUNREACH = 0x2743;
	public static final int WSAENETRESET = 0x2744;
	public static final int WSAECONNABORTED = 0x2745;
	public static final int WSAECONNRESET = 0x2746;
	public static final int WSAENOBUFS = 0x2747;
	public static final int WSAEISCONN = 0x2748;
	public static final int WSAENOTCONN = 0x2749;
	public static final int WSAESHUTDOWN = 0x274A;
	public static final int WSAETOOMANYREFS = 0x274B;
	public static final int WSAETIMEDOUT = 0x274C;
	public static final int WSAECONNREFUSED = 0x274D;
	public static final int WSAELOOP = 0x274E;
	public static final int WSAENAMETOOLONG = 0x274F;
	public static final int WSAEHOSTDOWN = 0x2750;
	public static final int WSAEHOSTUNREACH = 0x2751;
	public static final int WSAENOTEMPTY = 0x2752;
	public static final int WSAEPROCLIM = 0x2753;
	public static final int WSAEUSERS = 0x2754;
	public static final int WSAEDQUOT = 0x2755;
	public static final int WSAESTALE = 0x2756;
	public static final int WSAEREMOTE = 0x2757;
	public static final int WSASYSNOTREADY = 0x276B;
	public static final int WSAVERNOTSUPPORTED = 0x276C;
	public static final int WSANOTINITIALISED = 0x276D;
	public static final int WSAEDISCON = 0x2775;
	public static final int WSAENOMORE = 0x2776;
	public static final int WSAECANCELLED = 0x2777;
	public static final int WSAEINVALIDPROCTABLE = 0x2778;
	public static final int WSAEINVALIDPROVIDER = 0x2779;
	public static final int WSAEPROVIDERFAILEDINIT = 0x277A;
	public static final int WSASYSCALLFAILURE = 0x277B;
	public static final int WSASERVICE_NOT_FOUND = 0x277C;
	public static final int WSATYPE_NOT_FOUND = 0x277D;
	public static final int WSA_E_NO_MORE = 0x277E;
	public static final int WSA_E_CANCELLED = 0x277F;
	public static final int WSAEREFUSED = 0x2780;
	public static final int WSAHOST_NOT_FOUND = 0x2AF9;
	public static final int WSATRY_AGAIN = 0x2AFA;
	public static final int WSANO_RECOVERY = 0x2AFB;
	public static final int WSANO_DATA = 0x2AFC;
	public static final int WSA_QOS_RECEIVERS = 0x2AFD;
	public static final int WSA_QOS_SENDERS = 0x2AFE;
	public static final int WSA_QOS_NO_SENDERS = 0x2AFF;
	public static final int WSA_QOS_NO_RECEIVERS = 0x2B00;
	public static final int WSA_QOS_REQUEST_CONFIRMED = 0x2B01;
	public static final int WSA_QOS_ADMISSION_FAILURE = 0x2B02;
	public static final int WSA_QOS_POLICY_FAILURE = 0x2B03;
	public static final int WSA_QOS_BAD_STYLE = 0x2B04;
	public static final int WSA_QOS_BAD_OBJECT = 0x2B05;
	public static final int WSA_QOS_TRAFFIC_CTRL_ERROR = 0x2B06;
	public static final int WSA_QOS_GENERIC_ERROR = 0x2B07;
	public static final int WSA_QOS_ESERVICETYPE = 0x2B08;
	public static final int WSA_QOS_EFLOWSPEC = 0x2B09;
	public static final int WSA_QOS_EPROVSPECBUF = 0x2B0A;
	public static final int WSA_QOS_EFILTERSTYLE = 0x2B0B;
	public static final int WSA_QOS_EFILTERTYPE = 0x2B0C;
	public static final int WSA_QOS_EFILTERCOUNT = 0x2B0D;
	public static final int WSA_QOS_EOBJLENGTH = 0x2B0E;
	public static final int WSA_QOS_EFLOWCOUNT = 0x2B0F;
	public static final int WSA_QOS_EUNKOWNPSOBJ = 0x2B10;
	public static final int WSA_QOS_EPOLICYOBJ = 0x2B11;
	public static final int WSA_QOS_EFLOWDESC = 0x2B12;
	public static final int WSA_QOS_EPSFLOWSPEC = 0x2B13;
	public static final int WSA_QOS_EPSFILTERSPEC = 0x2B14;
	public static final int WSA_QOS_ESDMODEOBJ = 0x2B15;
	public static final int WSA_QOS_ESHAPERATEOBJ = 0x2B16;
	public static final int WSA_QOS_RESERVED_PETYPE = 0x2B17;
	public static final int WSA_SECURE_HOST_NOT_FOUND = 0x2B18;
	public static final int WSA_IPSEC_NAME_POLICY_ERROR = 0x2B19;
	public static final int ERROR_INTERNET_X = 0x2EE0;
	public static final int ERROR_IPSEC_QM_POLICY_EXISTS = 0x32C8;
	public static final int ERROR_IPSEC_QM_POLICY_NOT_FOUND = 0x32C9;
	public static final int ERROR_IPSEC_QM_POLICY_IN_USE = 0x32CA;
	public static final int ERROR_IPSEC_MM_POLICY_EXISTS = 0x32CB;
	public static final int ERROR_IPSEC_MM_POLICY_NOT_FOUND = 0x32CC;
	public static final int ERROR_IPSEC_MM_POLICY_IN_USE = 0x32CD;
	public static final int ERROR_IPSEC_MM_FILTER_EXISTS = 0x32CE;
	public static final int ERROR_IPSEC_MM_FILTER_NOT_FOUND = 0x32CF;
	public static final int ERROR_IPSEC_TRANSPORT_FILTER_EXISTS = 0x32D0;
	public static final int ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND = 0x32D1;
	public static final int ERROR_IPSEC_MM_AUTH_EXISTS = 0x32D2;
	public static final int ERROR_IPSEC_MM_AUTH_NOT_FOUND = 0x32D3;
	public static final int ERROR_IPSEC_MM_AUTH_IN_USE = 0x32D4;
	public static final int ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND = 0x32D5;
	public static final int ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND = 0x32D6;
	public static final int ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND = 0x32D7;
	public static final int ERROR_IPSEC_TUNNEL_FILTER_EXISTS = 0x32D8;
	public static final int ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND = 0x32D9;
	public static final int ERROR_IPSEC_MM_FILTER_PENDING_DELETION = 0x32DA;
	public static final int ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION = 0x32DB;
	public static final int ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION = 0x32DC;
	public static final int ERROR_IPSEC_MM_POLICY_PENDING_DELETION = 0x32DD;
	public static final int ERROR_IPSEC_MM_AUTH_PENDING_DELETION = 0x32DE;
	public static final int ERROR_IPSEC_QM_POLICY_PENDING_DELETION = 0x32DF;
	public static final int WARNING_IPSEC_MM_POLICY_PRUNED = 0x32E0;
	public static final int WARNING_IPSEC_QM_POLICY_PRUNED = 0x32E1;
	public static final int ERROR_IPSEC_IKE_NEG_STATUS_BEGIN = 0x35E8;
	public static final int ERROR_IPSEC_IKE_AUTH_FAIL = 0x35E9;
	public static final int ERROR_IPSEC_IKE_ATTRIB_FAIL = 0x35EA;
	public static final int ERROR_IPSEC_IKE_NEGOTIATION_PENDING = 0x35EB;
	public static final int ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR = 0x35EC;
	public static final int ERROR_IPSEC_IKE_TIMED_OUT = 0x35ED;
	public static final int ERROR_IPSEC_IKE_NO_CERT = 0x35EE;
	public static final int ERROR_IPSEC_IKE_SA_DELETED = 0x35EF;
	public static final int ERROR_IPSEC_IKE_SA_REAPED = 0x35F0;
	public static final int ERROR_IPSEC_IKE_MM_ACQUIRE_DROP = 0x35F1;
	public static final int ERROR_IPSEC_IKE_QM_ACQUIRE_DROP = 0x35F2;
	public static final int ERROR_IPSEC_IKE_QUEUE_DROP_MM = 0x35F3;
	public static final int ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM = 0x35F4;
	public static final int ERROR_IPSEC_IKE_DROP_NO_RESPONSE = 0x35F5;
	public static final int ERROR_IPSEC_IKE_MM_DELAY_DROP = 0x35F6;
	public static final int ERROR_IPSEC_IKE_QM_DELAY_DROP = 0x35F7;
	public static final int ERROR_IPSEC_IKE_ERROR = 0x35F8;
	public static final int ERROR_IPSEC_IKE_CRL_FAILED = 0x35F9;
	public static final int ERROR_IPSEC_IKE_INVALID_KEY_USAGE = 0x35FA;
	public static final int ERROR_IPSEC_IKE_INVALID_CERT_TYPE = 0x35FB;
	public static final int ERROR_IPSEC_IKE_NO_PRIVATE_KEY = 0x35FC;
	public static final int ERROR_IPSEC_IKE_SIMULTANEOUS_REKEY = 0x35FD;
	public static final int ERROR_IPSEC_IKE_DH_FAIL = 0x35FE;
	public static final int ERROR_IPSEC_IKE_CRITICAL_PAYLOAD_NOT_RECOGNIZED = 0x35FF;
	public static final int ERROR_IPSEC_IKE_INVALID_HEADER = 0x3600;
	public static final int ERROR_IPSEC_IKE_NO_POLICY = 0x3601;
	public static final int ERROR_IPSEC_IKE_INVALID_SIGNATURE = 0x3602;
	public static final int ERROR_IPSEC_IKE_KERBEROS_ERROR = 0x3603;
	public static final int ERROR_IPSEC_IKE_NO_PUBLIC_KEY = 0x3604;
	public static final int ERROR_IPSEC_IKE_PROCESS_ERR = 0x3605;
	public static final int ERROR_IPSEC_IKE_PROCESS_ERR_SA = 0x3606;
	public static final int ERROR_IPSEC_IKE_PROCESS_ERR_PROP = 0x3607;
	public static final int ERROR_IPSEC_IKE_PROCESS_ERR_TRANS = 0x3608;
	public static final int ERROR_IPSEC_IKE_PROCESS_ERR_KE = 0x3609;
	public static final int ERROR_IPSEC_IKE_PROCESS_ERR_ID = 0x360A;
	public static final int ERROR_IPSEC_IKE_PROCESS_ERR_CERT = 0x360B;
	public static final int ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ = 0x360C;
	public static final int ERROR_IPSEC_IKE_PROCESS_ERR_HASH = 0x360D;
	public static final int ERROR_IPSEC_IKE_PROCESS_ERR_SIG = 0x360E;
	public static final int ERROR_IPSEC_IKE_PROCESS_ERR_NONCE = 0x360F;
	public static final int ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY = 0x3610;
	public static final int ERROR_IPSEC_IKE_PROCESS_ERR_DELETE = 0x3611;
	public static final int ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR = 0x3612;
	public static final int ERROR_IPSEC_IKE_INVALID_PAYLOAD = 0x3613;
	public static final int ERROR_IPSEC_IKE_LOAD_SOFT_SA = 0x3614;
	public static final int ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN = 0x3615;
	public static final int ERROR_IPSEC_IKE_INVALID_COOKIE = 0x3616;
	public static final int ERROR_IPSEC_IKE_NO_PEER_CERT = 0x3617;
	public static final int ERROR_IPSEC_IKE_PEER_CRL_FAILED = 0x3618;
	public static final int ERROR_IPSEC_IKE_POLICY_CHANGE = 0x3619;
	public static final int ERROR_IPSEC_IKE_NO_MM_POLICY = 0x361A;
	public static final int ERROR_IPSEC_IKE_NOTCBPRIV = 0x361B;
	public static final int ERROR_IPSEC_IKE_SECLOADFAIL = 0x361C;
	public static final int ERROR_IPSEC_IKE_FAILSSPINIT = 0x361D;
	public static final int ERROR_IPSEC_IKE_FAILQUERYSSP = 0x361E;
	public static final int ERROR_IPSEC_IKE_SRVACQFAIL = 0x361F;
	public static final int ERROR_IPSEC_IKE_SRVQUERYCRED = 0x3620;
	public static final int ERROR_IPSEC_IKE_GETSPIFAIL = 0x3621;
	public static final int ERROR_IPSEC_IKE_INVALID_FILTER = 0x3622;
	public static final int ERROR_IPSEC_IKE_OUT_OF_MEMORY = 0x3623;
	public static final int ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED = 0x3624;
	public static final int ERROR_IPSEC_IKE_INVALID_POLICY = 0x3625;
	public static final int ERROR_IPSEC_IKE_UNKNOWN_DOI = 0x3626;
	public static final int ERROR_IPSEC_IKE_INVALID_SITUATION = 0x3627;
	public static final int ERROR_IPSEC_IKE_DH_FAILURE = 0x3628;
	public static final int ERROR_IPSEC_IKE_INVALID_GROUP = 0x3629;
	public static final int ERROR_IPSEC_IKE_ENCRYPT = 0x362A;
	public static final int ERROR_IPSEC_IKE_DECRYPT = 0x362B;
	public static final int ERROR_IPSEC_IKE_POLICY_MATCH = 0x362C;
	public static final int ERROR_IPSEC_IKE_UNSUPPORTED_ID = 0x362D;
	public static final int ERROR_IPSEC_IKE_INVALID_HASH = 0x362E;
	public static final int ERROR_IPSEC_IKE_INVALID_HASH_ALG = 0x362F;
	public static final int ERROR_IPSEC_IKE_INVALID_HASH_SIZE = 0x3630;
	public static final int ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG = 0x3631;
	public static final int ERROR_IPSEC_IKE_INVALID_AUTH_ALG = 0x3632;
	public static final int ERROR_IPSEC_IKE_INVALID_SIG = 0x3633;
	public static final int ERROR_IPSEC_IKE_LOAD_FAILED = 0x3634;
	public static final int ERROR_IPSEC_IKE_RPC_DELETE = 0x3635;
	public static final int ERROR_IPSEC_IKE_BENIGN_REINIT = 0x3636;
	public static final int ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY = 0x3637;
	public static final int ERROR_IPSEC_IKE_INVALID_MAJOR_VERSION = 0x3638;
	public static final int ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN = 0x3639;
	public static final int ERROR_IPSEC_IKE_MM_LIMIT = 0x363A;
	public static final int ERROR_IPSEC_IKE_NEGOTIATION_DISABLED = 0x363B;
	public static final int ERROR_IPSEC_IKE_QM_LIMIT = 0x363C;
	public static final int ERROR_IPSEC_IKE_MM_EXPIRED = 0x363D;
	public static final int ERROR_IPSEC_IKE_PEER_MM_ASSUMED_INVALID = 0x363E;
	public static final int ERROR_IPSEC_IKE_CERT_CHAIN_POLICY_MISMATCH = 0x363F;
	public static final int ERROR_IPSEC_IKE_UNEXPECTED_MESSAGE_ID = 0x3640;
	public static final int ERROR_IPSEC_IKE_INVALID_AUTH_PAYLOAD = 0x3641;
	public static final int ERROR_IPSEC_IKE_DOS_COOKIE_SENT = 0x3642;
	public static final int ERROR_IPSEC_IKE_SHUTTING_DOWN = 0x3643;
	public static final int ERROR_IPSEC_IKE_CGA_AUTH_FAILED = 0x3644;
	public static final int ERROR_IPSEC_IKE_PROCESS_ERR_NATOA = 0x3645;
	public static final int ERROR_IPSEC_IKE_INVALID_MM_FOR_QM = 0x3646;
	public static final int ERROR_IPSEC_IKE_QM_EXPIRED = 0x3647;
	public static final int ERROR_IPSEC_IKE_TOO_MANY_FILTERS = 0x3648;
	public static final int ERROR_IPSEC_IKE_NEG_STATUS_END = 0x3649;
	public static final int ERROR_IPSEC_IKE_KILL_DUMMY_NAP_TUNNEL = 0x364A;
	public static final int ERROR_IPSEC_IKE_INNER_IP_ASSIGNMENT_FAILURE = 0x364B;
	public static final int ERROR_IPSEC_IKE_REQUIRE_CP_PAYLOAD_MISSING = 0x364C;
	public static final int ERROR_IPSEC_KEY_MODULE_IMPERSONATION_NEGOTIATION_PENDING = 0x364D;
	public static final int ERROR_IPSEC_IKE_COEXISTENCE_SUPPRESS = 0x364E;
	public static final int ERROR_IPSEC_IKE_RATELIMIT_DROP = 0x364F;
	public static final int ERROR_IPSEC_IKE_PEER_DOESNT_SUPPORT_MOBIKE = 0x3650;
	public static final int ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE = 0x3651;
	public static final int ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_FAILURE = 0x3652;
	public static final int ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE_WITH_OPTIONAL_RETRY = 0x3653;
	public static final int ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_AND_CERTMAP_FAILURE = 0x3654;
	public static final int ERROR_IPSEC_IKE_NEG_STATUS_EXTENDED_END = 0x3655;
	public static final int ERROR_IPSEC_BAD_SPI = 0x3656;
	public static final int ERROR_IPSEC_SA_LIFETIME_EXPIRED = 0x3657;
	public static final int ERROR_IPSEC_WRONG_SA = 0x3658;
	public static final int ERROR_IPSEC_REPLAY_CHECK_FAILED = 0x3659;
	public static final int ERROR_IPSEC_INVALID_PACKET = 0x365A;
	public static final int ERROR_IPSEC_INTEGRITY_CHECK_FAILED = 0x365B;
	public static final int ERROR_IPSEC_CLEAR_TEXT_DROP = 0x365C;
	public static final int ERROR_IPSEC_AUTH_FIREWALL_DROP = 0x365D;
	public static final int ERROR_IPSEC_THROTTLE_DROP = 0x365E;
	public static final int ERROR_IPSEC_DOSP_BLOCK = 0x3665;
	public static final int ERROR_IPSEC_DOSP_RECEIVED_MULTICAST = 0x3666;
	public static final int ERROR_IPSEC_DOSP_INVALID_PACKET = 0x3667;
	public static final int ERROR_IPSEC_DOSP_STATE_LOOKUP_FAILED = 0x3668;
	public static final int ERROR_IPSEC_DOSP_MAX_ENTRIES = 0x3669;
	public static final int ERROR_IPSEC_DOSP_KEYMOD_NOT_ALLOWED = 0x366A;
	public static final int ERROR_IPSEC_DOSP_NOT_INSTALLED = 0x366B;
	public static final int ERROR_IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES = 0x366C;
	public static final int ERROR_SXS_SECTION_NOT_FOUND = 0x36B0;
	public static final int ERROR_SXS_CANT_GEN_ACTCTX = 0x36B1;
	public static final int ERROR_SXS_INVALID_ACTCTXDATA_FORMAT = 0x36B2;
	public static final int ERROR_SXS_ASSEMBLY_NOT_FOUND = 0x36B3;
	public static final int ERROR_SXS_MANIFEST_FORMAT_ERROR = 0x36B4;
	public static final int ERROR_SXS_MANIFEST_PARSE_ERROR = 0x36B5;
	public static final int ERROR_SXS_ACTIVATION_CONTEXT_DISABLED = 0x36B6;
	public static final int ERROR_SXS_KEY_NOT_FOUND = 0x36B7;
	public static final int ERROR_SXS_VERSION_CONFLICT = 0x36B8;
	public static final int ERROR_SXS_WRONG_SECTION_TYPE = 0x36B9;
	public static final int ERROR_SXS_THREAD_QUERIES_DISABLED = 0x36BA;
	public static final int ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET = 0x36BB;
	public static final int ERROR_SXS_UNKNOWN_ENCODING_GROUP = 0x36BC;
	public static final int ERROR_SXS_UNKNOWN_ENCODING = 0x36BD;
	public static final int ERROR_SXS_INVALID_XML_NAMESPACE_URI = 0x36BE;
	public static final int ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED = 0x36BF;
	public static final int ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED = 0x36C0;
	public static final int ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE = 0x36C1;
	public static final int ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE = 0x36C2;
	public static final int ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE = 0x36C3;
	public static final int ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT = 0x36C4;
	public static final int ERROR_SXS_DUPLICATE_DLL_NAME = 0x36C5;
	public static final int ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME = 0x36C6;
	public static final int ERROR_SXS_DUPLICATE_CLSID = 0x36C7;
	public static final int ERROR_SXS_DUPLICATE_IID = 0x36C8;
	public static final int ERROR_SXS_DUPLICATE_TLBID = 0x36C9;
	public static final int ERROR_SXS_DUPLICATE_PROGID = 0x36CA;
	public static final int ERROR_SXS_DUPLICATE_ASSEMBLY_NAME = 0x36CB;
	public static final int ERROR_SXS_FILE_HASH_MISMATCH = 0x36CC;
	public static final int ERROR_SXS_POLICY_PARSE_ERROR = 0x36CD;
	public static final int ERROR_SXS_XML_E_MISSINGQUOTE = 0x36CE;
	public static final int ERROR_SXS_XML_E_COMMENTSYNTAX = 0x36CF;
	public static final int ERROR_SXS_XML_E_BADSTARTNAMECHAR = 0x36D0;
	public static final int ERROR_SXS_XML_E_BADNAMECHAR = 0x36D1;
	public static final int ERROR_SXS_XML_E_BADCHARINSTRING = 0x36D2;
	public static final int ERROR_SXS_XML_E_XMLDECLSYNTAX = 0x36D3;
	public static final int ERROR_SXS_XML_E_BADCHARDATA = 0x36D4;
	public static final int ERROR_SXS_XML_E_MISSINGWHITESPACE = 0x36D5;
	public static final int ERROR_SXS_XML_E_EXPECTINGTAGEND = 0x36D6;
	public static final int ERROR_SXS_XML_E_MISSINGSEMICOLON = 0x36D7;
	public static final int ERROR_SXS_XML_E_UNBALANCEDPAREN = 0x36D8;
	public static final int ERROR_SXS_XML_E_INTERNALERROR = 0x36D9;
	public static final int ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE = 0x36DA;
	public static final int ERROR_SXS_XML_E_INCOMPLETE_ENCODING = 0x36DB;
	public static final int ERROR_SXS_XML_E_MISSING_PAREN = 0x36DC;
	public static final int ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE = 0x36DD;
	public static final int ERROR_SXS_XML_E_MULTIPLE_COLONS = 0x36DE;
	public static final int ERROR_SXS_XML_E_INVALID_DECIMAL = 0x36DF;
	public static final int ERROR_SXS_XML_E_INVALID_HEXIDECIMAL = 0x36E0;
	public static final int ERROR_SXS_XML_E_INVALID_UNICODE = 0x36E1;
	public static final int ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK = 0x36E2;
	public static final int ERROR_SXS_XML_E_UNEXPECTEDENDTAG = 0x36E3;
	public static final int ERROR_SXS_XML_E_UNCLOSEDTAG = 0x36E4;
	public static final int ERROR_SXS_XML_E_DUPLICATEATTRIBUTE = 0x36E5;
	public static final int ERROR_SXS_XML_E_MULTIPLEROOTS = 0x36E6;
	public static final int ERROR_SXS_XML_E_INVALIDATROOTLEVEL = 0x36E7;
	public static final int ERROR_SXS_XML_E_BADXMLDECL = 0x36E8;
	public static final int ERROR_SXS_XML_E_MISSINGROOT = 0x36E9;
	public static final int ERROR_SXS_XML_E_UNEXPECTEDEOF = 0x36EA;
	public static final int ERROR_SXS_XML_E_BADPEREFINSUBSET = 0x36EB;
	public static final int ERROR_SXS_XML_E_UNCLOSEDSTARTTAG = 0x36EC;
	public static final int ERROR_SXS_XML_E_UNCLOSEDENDTAG = 0x36ED;
	public static final int ERROR_SXS_XML_E_UNCLOSEDSTRING = 0x36EE;
	public static final int ERROR_SXS_XML_E_UNCLOSEDCOMMENT = 0x36EF;
	public static final int ERROR_SXS_XML_E_UNCLOSEDDECL = 0x36F0;
	public static final int ERROR_SXS_XML_E_UNCLOSEDCDATA = 0x36F1;
	public static final int ERROR_SXS_XML_E_RESERVEDNAMESPACE = 0x36F2;
	public static final int ERROR_SXS_XML_E_INVALIDENCODING = 0x36F3;
	public static final int ERROR_SXS_XML_E_INVALIDSWITCH = 0x36F4;
	public static final int ERROR_SXS_XML_E_BADXMLCASE = 0x36F5;
	public static final int ERROR_SXS_XML_E_INVALID_STANDALONE = 0x36F6;
	public static final int ERROR_SXS_XML_E_UNEXPECTED_STANDALONE = 0x36F7;
	public static final int ERROR_SXS_XML_E_INVALID_VERSION = 0x36F8;
	public static final int ERROR_SXS_XML_E_MISSINGEQUALS = 0x36F9;
	public static final int ERROR_SXS_PROTECTION_RECOVERY_FAILED = 0x36FA;
	public static final int ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT = 0x36FB;
	public static final int ERROR_SXS_PROTECTION_CATALOG_NOT_VALID = 0x36FC;
	public static final int ERROR_SXS_UNTRANSLATABLE_HRESULT = 0x36FD;
	public static final int ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING = 0x36FE;
	public static final int ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE = 0x36FF;
	public static final int ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME = 0x3700;
	public static final int ERROR_SXS_ASSEMBLY_MISSING = 0x3701;
	public static final int ERROR_SXS_CORRUPT_ACTIVATION_STACK = 0x3702;
	public static final int ERROR_SXS_CORRUPTION = 0x3703;
	public static final int ERROR_SXS_EARLY_DEACTIVATION = 0x3704;
	public static final int ERROR_SXS_INVALID_DEACTIVATION = 0x3705;
	public static final int ERROR_SXS_MULTIPLE_DEACTIVATION = 0x3706;
	public static final int ERROR_SXS_PROCESS_TERMINATION_REQUESTED = 0x3707;
	public static final int ERROR_SXS_RELEASE_ACTIVATION_CONTEXT = 0x3708;
	public static final int ERROR_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY = 0x3709;
	public static final int ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE = 0x370A;
	public static final int ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME = 0x370B;
	public static final int ERROR_SXS_IDENTITY_DUPLICATE_ATTRIBUTE = 0x370C;
	public static final int ERROR_SXS_IDENTITY_PARSE_ERROR = 0x370D;
	public static final int ERROR_MALFORMED_SUBSTITUTION_STRING = 0x370E;
	public static final int ERROR_SXS_INCORRECT_PUBLIC_KEY_TOKEN = 0x370F;
	public static final int ERROR_UNMAPPED_SUBSTITUTION_STRING = 0x3710;
	public static final int ERROR_SXS_ASSEMBLY_NOT_LOCKED = 0x3711;
	public static final int ERROR_SXS_COMPONENT_STORE_CORRUPT = 0x3712;
	public static final int ERROR_ADVANCED_INSTALLER_FAILED = 0x3713;
	public static final int ERROR_XML_ENCODING_MISMATCH = 0x3714;
	public static final int ERROR_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT = 0x3715;
	public static final int ERROR_SXS_IDENTITIES_DIFFERENT = 0x3716;
	public static final int ERROR_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT = 0x3717;
	public static final int ERROR_SXS_FILE_NOT_PART_OF_ASSEMBLY = 0x3718;
	public static final int ERROR_SXS_MANIFEST_TOO_BIG = 0x3719;
	public static final int ERROR_SXS_SETTING_NOT_REGISTERED = 0x371A;
	public static final int ERROR_SXS_TRANSACTION_CLOSURE_INCOMPLETE = 0x371B;
	public static final int ERROR_SMI_PRIMITIVE_INSTALLER_FAILED = 0x371C;
	public static final int ERROR_GENERIC_COMMAND_FAILED = 0x371D;
	public static final int ERROR_SXS_FILE_HASH_MISSING = 0x371E;
	public static final int ERROR_EVT_INVALID_CHANNEL_PATH = 0x3A98;
	public static final int ERROR_EVT_INVALID_QUERY = 0x3A99;
	public static final int ERROR_EVT_PUBLISHER_METADATA_NOT_FOUND = 0x3A9A;
	public static final int ERROR_EVT_EVENT_TEMPLATE_NOT_FOUND = 0x3A9B;
	public static final int ERROR_EVT_INVALID_PUBLISHER_NAME = 0x3A9C;
	public static final int ERROR_EVT_INVALID_EVENT_DATA = 0x3A9D;
	public static final int ERROR_EVT_CHANNEL_NOT_FOUND = 0x3A9F;
	public static final int ERROR_EVT_MALFORMED_XML_TEXT = 0x3AA0;
	public static final int ERROR_EVT_SUBSCRIPTION_TO_DIRECT_CHANNEL = 0x3AA1;
	public static final int ERROR_EVT_CONFIGURATION_ERROR = 0x3AA2;
	public static final int ERROR_EVT_QUERY_RESULT_STALE = 0x3AA3;
	public static final int ERROR_EVT_QUERY_RESULT_INVALID_POSITION = 0x3AA4;
	public static final int ERROR_EVT_NON_VALIDATING_MSXML = 0x3AA5;
	public static final int ERROR_EVT_FILTER_ALREADYSCOPED = 0x3AA6;
	public static final int ERROR_EVT_FILTER_NOTELTSET = 0x3AA7;
	public static final int ERROR_EVT_FILTER_INVARG = 0x3AA8;
	public static final int ERROR_EVT_FILTER_INVTEST = 0x3AA9;
	public static final int ERROR_EVT_FILTER_INVTYPE = 0x3AAA;
	public static final int ERROR_EVT_FILTER_PARSEERR = 0x3AAB;
	public static final int ERROR_EVT_FILTER_UNSUPPORTEDOP = 0x3AAC;
	public static final int ERROR_EVT_FILTER_UNEXPECTEDTOKEN = 0x3AAD;
	public static final int ERROR_EVT_INVALID_OPERATION_OVER_ENABLED_DIRECT_CHANNEL = 0x3AAE;
	public static final int ERROR_EVT_INVALID_CHANNEL_PROPERTY_VALUE = 0x3AAF;
	public static final int ERROR_EVT_INVALID_PUBLISHER_PROPERTY_VALUE = 0x3AB0;
	public static final int ERROR_EVT_CHANNEL_CANNOT_ACTIVATE = 0x3AB1;
	public static final int ERROR_EVT_FILTER_TOO_COMPLEX = 0x3AB2;
	public static final int ERROR_EVT_MESSAGE_NOT_FOUND = 0x3AB3;
	public static final int ERROR_EVT_MESSAGE_ID_NOT_FOUND = 0x3AB4;
	public static final int ERROR_EVT_UNRESOLVED_VALUE_INSERT = 0x3AB5;
	public static final int ERROR_EVT_UNRESOLVED_PARAMETER_INSERT = 0x3AB6;
	public static final int ERROR_EVT_MAX_INSERTS_REACHED = 0x3AB7;
	public static final int ERROR_EVT_EVENT_DEFINITION_NOT_FOUND = 0x3AB8;
	public static final int ERROR_EVT_MESSAGE_LOCALE_NOT_FOUND = 0x3AB9;
	public static final int ERROR_EVT_VERSION_TOO_OLD = 0x3ABA;
	public static final int ERROR_EVT_VERSION_TOO_NEW = 0x3ABB;
	public static final int ERROR_EVT_CANNOT_OPEN_CHANNEL_OF_QUERY = 0x3ABC;
	public static final int ERROR_EVT_PUBLISHER_DISABLED = 0x3ABD;
	public static final int ERROR_EVT_FILTER_OUT_OF_RANGE = 0x3ABE;
	public static final int ERROR_EC_SUBSCRIPTION_CANNOT_ACTIVATE = 0x3AE8;
	public static final int ERROR_EC_LOG_DISABLED = 0x3AE9;
	public static final int ERROR_EC_CIRCULAR_FORWARDING = 0x3AEA;
	public static final int ERROR_EC_CREDSTORE_FULL = 0x3AEB;
	public static final int ERROR_EC_CRED_NOT_FOUND = 0x3AEC;
	public static final int ERROR_EC_NO_ACTIVE_CHANNEL = 0x3AED;
	public static final int ERROR_MUI_FILE_NOT_FOUND = 0x3AFC;
	public static final int ERROR_MUI_INVALID_FILE = 0x3AFD;
	public static final int ERROR_MUI_INVALID_RC_CONFIG = 0x3AFE;
	public static final int ERROR_MUI_INVALID_LOCALE_NAME = 0x3AFF;
	public static final int ERROR_MUI_INVALID_ULTIMATEFALLBACK_NAME = 0x3B00;
	public static final int ERROR_MUI_FILE_NOT_LOADED = 0x3B01;
	public static final int ERROR_RESOURCE_ENUM_USER_STOP = 0x3B02;
	public static final int ERROR_MUI_INTLSETTINGS_UILANG_NOT_INSTALLED = 0x3B03;
	public static final int ERROR_MUI_INTLSETTINGS_INVALID_LOCALE_NAME = 0x3B04;
	public static final int ERROR_MRM_RUNTIME_NO_DEFAULT_OR_NEUTRAL_RESOURCE = 0x3B06;
	public static final int ERROR_MRM_INVALID_PRICONFIG = 0x3B07;
	public static final int ERROR_MRM_INVALID_FILE_TYPE = 0x3B08;
	public static final int ERROR_MRM_UNKNOWN_QUALIFIER = 0x3B09;
	public static final int ERROR_MRM_INVALID_QUALIFIER_VALUE = 0x3B0A;
	public static final int ERROR_MRM_NO_CANDIDATE = 0x3B0B;
	public static final int ERROR_MRM_NO_MATCH_OR_DEFAULT_CANDIDATE = 0x3B0C;
	public static final int ERROR_MRM_RESOURCE_TYPE_MISMATCH = 0x3B0D;
	public static final int ERROR_MRM_DUPLICATE_MAP_NAME = 0x3B0E;
	public static final int ERROR_MRM_DUPLICATE_ENTRY = 0x3B0F;
	public static final int ERROR_MRM_INVALID_RESOURCE_IDENTIFIER = 0x3B10;
	public static final int ERROR_MRM_FILEPATH_TOO_LONG = 0x3B11;
	public static final int ERROR_MRM_UNSUPPORTED_DIRECTORY_TYPE = 0x3B12;
	public static final int ERROR_MRM_INVALID_PRI_FILE = 0x3B16;
	public static final int ERROR_MRM_NAMED_RESOURCE_NOT_FOUND = 0x3B17;
	public static final int ERROR_MRM_MAP_NOT_FOUND = 0x3B1F;
	public static final int ERROR_MRM_UNSUPPORTED_PROFILE_TYPE = 0x3B20;
	public static final int ERROR_MRM_INVALID_QUALIFIER_OPERATOR = 0x3B21;
	public static final int ERROR_MRM_INDETERMINATE_QUALIFIER_VALUE = 0x3B22;
	public static final int ERROR_MRM_AUTOMERGE_ENABLED = 0x3B23;
	public static final int ERROR_MRM_TOO_MANY_RESOURCES = 0x3B24;
	public static final int ERROR_MCA_INVALID_CAPABILITIES_STRING = 0x3B60;
	public static final int ERROR_MCA_INVALID_VCP_VERSION = 0x3B61;
	public static final int ERROR_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION = 0x3B62;
	public static final int ERROR_MCA_MCCS_VERSION_MISMATCH = 0x3B63;
	public static final int ERROR_MCA_UNSUPPORTED_MCCS_VERSION = 0x3B64;
	public static final int ERROR_MCA_INTERNAL_ERROR = 0x3B65;
	public static final int ERROR_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED = 0x3B66;
	public static final int ERROR_MCA_UNSUPPORTED_COLOR_TEMPERATURE = 0x3B67;
	public static final int ERROR_AMBIGUOUS_SYSTEM_DEVICE = 0x3B92;
	public static final int ERROR_SYSTEM_DEVICE_NOT_FOUND = 0x3BC3;
	public static final int ERROR_HASH_NOT_SUPPORTED = 0x3BC4;
	public static final int ERROR_HASH_NOT_PRESENT = 0x3BC5;
	public static final int ERROR_SECONDARY_IC_PROVIDER_NOT_REGISTERED = 0x3BD9;
	public static final int ERROR_GPIO_CLIENT_INFORMATION_INVALID = 0x3BDA;
	public static final int ERROR_GPIO_VERSION_NOT_SUPPORTED = 0x3BDB;
	public static final int ERROR_GPIO_INVALID_REGISTRATION_PACKET = 0x3BDC;
	public static final int ERROR_GPIO_OPERATION_DENIED = 0x3BDD;
	public static final int ERROR_GPIO_INCOMPATIBLE_CONNECT_MODE = 0x3BDE;
	public static final int ERROR_GPIO_INTERRUPT_ALREADY_UNMASKED = 0x3BDF;
	public static final int ERROR_CANNOT_SWITCH_RUNLEVEL = 0x3C28;
	public static final int ERROR_INVALID_RUNLEVEL_SETTING = 0x3C29;
	public static final int ERROR_RUNLEVEL_SWITCH_TIMEOUT = 0x3C2A;
	public static final int ERROR_RUNLEVEL_SWITCH_AGENT_TIMEOUT = 0x3C2B;
	public static final int ERROR_RUNLEVEL_SWITCH_IN_PROGRESS = 0x3C2C;
	public static final int ERROR_SERVICES_FAILED_AUTOSTART = 0x3C2D;
	public static final int ERROR_COM_TASK_STOP_PENDING = 0x3C8D;
	public static final int ERROR_INSTALL_OPEN_PACKAGE_FAILED = 0x3CF0;
	public static final int ERROR_INSTALL_PACKAGE_NOT_FOUND = 0x3CF1;
	public static final int ERROR_INSTALL_INVALID_PACKAGE = 0x3CF2;
	public static final int ERROR_INSTALL_RESOLVE_DEPENDENCY_FAILED = 0x3CF3;
	public static final int ERROR_INSTALL_OUT_OF_DISK_SPACE = 0x3CF4;
	public static final int ERROR_INSTALL_NETWORK_FAILURE = 0x3CF5;
	public static final int ERROR_INSTALL_REGISTRATION_FAILURE = 0x3CF6;
	public static final int ERROR_INSTALL_DEREGISTRATION_FAILURE = 0x3CF7;
	public static final int ERROR_INSTALL_CANCEL = 0x3CF8;
	public static final int ERROR_INSTALL_FAILED = 0x3CF9;
	public static final int ERROR_REMOVE_FAILED = 0x3CFA;
	public static final int ERROR_PACKAGE_ALREADY_EXISTS = 0x3CFB;
	public static final int ERROR_NEEDS_REMEDIATION = 0x3CFC;
	public static final int ERROR_INSTALL_PREREQUISITE_FAILED = 0x3CFD;
	public static final int ERROR_PACKAGE_REPOSITORY_CORRUPTED = 0x3CFE;
	public static final int ERROR_INSTALL_POLICY_FAILURE = 0x3CFF;
	public static final int ERROR_PACKAGE_UPDATING = 0x3D00;
	public static final int ERROR_DEPLOYMENT_BLOCKED_BY_POLICY = 0x3D01;
	public static final int ERROR_PACKAGES_IN_USE = 0x3D02;
	public static final int ERROR_RECOVERY_FILE_CORRUPT = 0x3D03;
	public static final int ERROR_INVALID_STAGED_SIGNATURE = 0x3D04;
	public static final int ERROR_DELETING_EXISTING_APPLICATIONDATA_STORE_FAILED = 0x3D05;
	public static final int ERROR_INSTALL_PACKAGE_DOWNGRADE = 0x3D06;
	public static final int ERROR_SYSTEM_NEEDS_REMEDIATION = 0x3D07;
	public static final int ERROR_APPX_INTEGRITY_FAILURE_CLR_NGEN = 0x3D08;
	public static final int ERROR_RESILIENCY_FILE_CORRUPT = 0x3D09;
	public static final int ERROR_INSTALL_FIREWALL_SERVICE_NOT_RUNNING = 0x3D0A;
	public static final int APPMODEL_ERROR_NO_PACKAGE = 0x3D54;
	public static final int APPMODEL_ERROR_PACKAGE_RUNTIME_CORRUPT = 0x3D55;
	public static final int APPMODEL_ERROR_PACKAGE_IDENTITY_CORRUPT = 0x3D56;
	public static final int APPMODEL_ERROR_NO_APPLICATION = 0x3D57;
	public static final int ERROR_STATE_LOAD_STORE_FAILED = 0x3DB8;
	public static final int ERROR_STATE_GET_VERSION_FAILED = 0x3DB9;
	public static final int ERROR_STATE_SET_VERSION_FAILED = 0x3DBA;
	public static final int ERROR_STATE_STRUCTURED_RESET_FAILED = 0x3DBB;
	public static final int ERROR_STATE_OPEN_CONTAINER_FAILED = 0x3DBC;
	public static final int ERROR_STATE_CREATE_CONTAINER_FAILED = 0x3DBD;
	public static final int ERROR_STATE_DELETE_CONTAINER_FAILED = 0x3DBE;
	public static final int ERROR_STATE_READ_SETTING_FAILED = 0x3DBF;
	public static final int ERROR_STATE_WRITE_SETTING_FAILED = 0x3DC0;
	public static final int ERROR_STATE_DELETE_SETTING_FAILED = 0x3DC1;
	public static final int ERROR_STATE_QUERY_SETTING_FAILED = 0x3DC2;
	public static final int ERROR_STATE_READ_COMPOSITE_SETTING_FAILED = 0x3DC3;
	public static final int ERROR_STATE_WRITE_COMPOSITE_SETTING_FAILED = 0x3DC4;
	public static final int ERROR_STATE_ENUMERATE_CONTAINER_FAILED = 0x3DC5;
	public static final int ERROR_STATE_ENUMERATE_SETTINGS_FAILED = 0x3DC6;
	public static final int ERROR_STATE_COMPOSITE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED = 0x3DC7;
	public static final int ERROR_STATE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED = 0x3DC8;
	public static final int ERROR_STATE_SETTING_NAME_SIZE_LIMIT_EXCEEDED = 0x3DC9;
	public static final int ERROR_STATE_CONTAINER_NAME_SIZE_LIMIT_EXCEEDED = 0x3DCA;
	public static final int ERROR_API_UNAVAILABLE = 0x3DE1;

	public String toString(int Err) {
		switch (Err) {

		case ERROR_SUCCESS:
			return "The operation completed successfully.";
		case ERROR_INVALID_FUNCTION:
			return "Incorrect function.";
		case ERROR_FILE_NOT_FOUND:
			return "The system cannot find the file specified.";
		case ERROR_PATH_NOT_FOUND:
			return "The system cannot find the path specified.";
		case ERROR_TOO_MANY_OPEN_FILES:
			return "The system cannot open the file.";
		case ERROR_ACCESS_DENIED:
			return "Access is denied.";
		case ERROR_INVALID_HANDLE:
			return "The handle is invalid.";
		case ERROR_ARENA_TRASHED:
			return "The storage control blocks were destroyed.";
		case ERROR_NOT_ENOUGH_MEMORY:
			return "Not enough storage is available to process this command.";
		case ERROR_INVALID_BLOCK:
			return "The storage control block address is invalid.";
		case ERROR_BAD_ENVIRONMENT:
			return "The environment is incorrect.";
		case ERROR_BAD_FORMAT:
			return "An attempt was made to load a program with an incorrect format.";
		case ERROR_INVALID_ACCESS:
			return "The access code is invalid.";
		case ERROR_INVALID_DATA:
			return "The data is invalid.";
		case ERROR_OUTOFMEMORY:
			return "Not enough storage is available to complete this operation.";
		case ERROR_INVALID_DRIVE:
			return "The system cannot find the drive specified.";
		case ERROR_CURRENT_DIRECTORY:
			return "The directory cannot be removed.";
		case ERROR_NOT_SAME_DEVICE:
			return "The system cannot move the file to a different disk drive.";
		case ERROR_NO_MORE_FILES:
			return "There are no more files.";
		case ERROR_WRITE_PROTECT:
			return "The media is write protected.";
		case ERROR_BAD_UNIT:
			return "The system cannot find the device specified.";
		case ERROR_NOT_READY:
			return "The device is not ready.";
		case ERROR_BAD_COMMAND:
			return "The device does not recognize the command.";
		case ERROR_CRC:
			return "Data error (cyclic redundancy check).";
		case ERROR_BAD_LENGTH:
			return "The program issued a command but the command length is incorrect.";
		case ERROR_SEEK:
			return "The drive cannot locate a specific area or track on the disk.";
		case ERROR_NOT_DOS_DISK:
			return "The specified disk or diskette cannot be accessed.";
		case ERROR_SECTOR_NOT_FOUND:
			return "The drive cannot find the sector requested.";
		case ERROR_OUT_OF_PAPER:
			return "The printer is out of paper.";
		case ERROR_WRITE_FAULT:
			return "The system cannot write to the specified device.";
		case ERROR_READ_FAULT:
			return "The system cannot read from the specified device.";
		case ERROR_GEN_FAILURE:
			return "A device attached to the system is not functioning.";
		case ERROR_SHARING_VIOLATION:
			return "The process cannot access the file because it is being used by another process.";
		case ERROR_LOCK_VIOLATION:
			return "The process cannot access the file because another process has locked a portion of the file.";
		case ERROR_WRONG_DISK:
			return "The wrong diskette is in the drive.Insert %2 (Volume Serial Number: %3) into drive %1.";
		case ERROR_SHARING_BUFFER_EXCEEDED:
			return "Too many files opened for sharing.";
		case ERROR_HANDLE_EOF:
			return "Reached the end of the file.";
		case ERROR_HANDLE_DISK_FULL:
			return "The disk is full.";
		case ERROR_NOT_SUPPORTED:
			return "The request is not supported.";
		case ERROR_REM_NOT_LIST:
			return "Windows cannot find the network path.Verify that the network path is correct and the destination computer is not busy or turned off.If Windows still cannot find the network path, contact your network administrator.";
		case ERROR_DUP_NAME:
			return "You were not connected because a duplicate name exists on the network.If joining a domain, go to System in Control Panel to change the computer name and try again.If joining a workgroup, choose another workgroup name.";
		case ERROR_BAD_NETPATH:
			return "The network path was not found.";
		case ERROR_NETWORK_BUSY:
			return "The network is busy.";
		case ERROR_DEV_NOT_EXIST:
			return "The specified network resource or device is no longer available.";
		case ERROR_TOO_MANY_CMDS:
			return "The network BIOS command limit has been reached.";
		case ERROR_ADAP_HDW_ERR:
			return "A network adapter hardware error occurred.";
		case ERROR_BAD_NET_RESP:
			return "The specified server cannot perform the requested operation.";
		case ERROR_UNEXP_NET_ERR:
			return "An unexpected network error occurred.";
		case ERROR_BAD_REM_ADAP:
			return "The remote adapter is not compatible.";
		case ERROR_PRINTQ_FULL:
			return "The printer queue is full.";
		case ERROR_NO_SPOOL_SPACE:
			return "Space to store the file waiting to be printed is not available on the server.";
		case ERROR_PRINT_CANCELLED:
			return "Your file waiting to be printed was deleted.";
		case ERROR_NETNAME_DELETED:
			return "The specified network name is no longer available.";
		case ERROR_NETWORK_ACCESS_DENIED:
			return "Network access is denied.";
		case ERROR_BAD_DEV_TYPE:
			return "The network resource type is not correct.";
		case ERROR_BAD_NET_NAME:
			return "The network name cannot be found.";
		case ERROR_TOO_MANY_NAMES:
			return "The name limit for the local computer network adapter card was exceeded.";
		case ERROR_TOO_MANY_SESS:
			return "The network BIOS session limit was exceeded.";
		case ERROR_SHARING_PAUSED:
			return "The remote server has been paused or is in the process of being started.";
		case ERROR_REQ_NOT_ACCEP:
			return "No more connections can be made to this remote computer at this time because there are already as many connections as the computer can accept.";
		case ERROR_REDIR_PAUSED:
			return "The specified printer or disk device has been paused.";
		case ERROR_FILE_EXISTS:
			return "The file exists.";
		case ERROR_CANNOT_MAKE:
			return "The directory or file cannot be created.";
		case ERROR_FAIL_I24:
			return "Fail on INT 24.";
		case ERROR_OUT_OF_STRUCTURES:
			return "Storage to process this request is not available.";
		case ERROR_ALREADY_ASSIGNED:
			return "The local device name is already in use.";
		case ERROR_INVALID_PASSWORD:
			return "The specified network password is not correct.";
		case ERROR_INVALID_PARAMETER:
			return "The parameter is incorrect.";
		case ERROR_NET_WRITE_FAULT:
			return "A write fault occurred on the network.";
		case ERROR_NO_PROC_SLOTS:
			return "The system cannot start another process at this time.";
		case ERROR_TOO_MANY_SEMAPHORES:
			return "Cannot create another system semaphore.";
		case ERROR_EXCL_SEM_ALREADY_OWNED:
			return "The exclusive semaphore is owned by another process.";
		case ERROR_SEM_IS_SET:
			return "The semaphore is set and cannot be closed.";
		case ERROR_TOO_MANY_SEM_REQUESTS:
			return "The semaphore cannot be set again.";
		case ERROR_INVALID_AT_INTERRUPT_TIME:
			return "Cannot request exclusive semaphores at interrupt time.";
		case ERROR_SEM_OWNER_DIED:
			return "The previous ownership of this semaphore has ended.";
		case ERROR_SEM_USER_LIMIT:
			return "Insert the diskette for drive %1.";
		case ERROR_DISK_CHANGE:
			return "The program stopped because an alternate diskette was not inserted.";
		case ERROR_DRIVE_LOCKED:
			return "The disk is in use or locked by another process.";
		case ERROR_BROKEN_PIPE:
			return "The pipe has been ended.";
		case ERROR_OPEN_FAILED:
			return "The system cannot open the device or file specified.";
		case ERROR_BUFFER_OVERFLOW:
			return "The file name is too long.";
		case ERROR_DISK_FULL:
			return "There is not enough space on the disk.";
		case ERROR_NO_MORE_SEARCH_HANDLES:
			return "No more internal file identifiers available.";
		case ERROR_INVALID_TARGET_HANDLE:
			return "The target internal file identifier is incorrect.";
		case ERROR_INVALID_CATEGORY:
			return "The IOCTL call made by the application program is not correct.";
		case ERROR_INVALID_VERIFY_SWITCH:
			return "The verify-on-write switch parameter value is not correct.";
		case ERROR_BAD_DRIVER_LEVEL:
			return "The system does not support the command requested.";
		case ERROR_CALL_NOT_IMPLEMENTED:
			return "This function is not supported on this system.";
		case ERROR_SEM_TIMEOUT:
			return "The semaphore timeout period has expired.";
		case ERROR_INSUFFICIENT_BUFFER:
			return "The data area passed to a system call is too small.";
		case ERROR_INVALID_NAME:
			return "The filename, directory name, or volume label syntax is incorrect.";
		case ERROR_INVALID_LEVEL:
			return "The system call level is not correct.";
		case ERROR_NO_VOLUME_LABEL:
			return "The disk has no volume label.";
		case ERROR_MOD_NOT_FOUND:
			return "The specified module could not be found.";
		case ERROR_PROC_NOT_FOUND:
			return "The specified procedure could not be found.";
		case ERROR_WAIT_NO_CHILDREN:
			return "There are no child processes to wait for.";
		case ERROR_CHILD_NOT_COMPLETE:
			return "The %1 application cannot be run in Win32 mode.";
		case ERROR_DIRECT_ACCESS_HANDLE:
			return "Attempt to use a file handle to an open disk partition for an operation other than raw disk I/O.";
		case ERROR_NEGATIVE_SEEK:
			return "An attempt was made to move the file pointer before the beginning of the file.";
		case ERROR_SEEK_ON_DEVICE:
			return "The file pointer cannot be set on the specified device or file.";
		case ERROR_IS_JOIN_TARGET:
			return "A JOIN or SUBST command cannot be used for a drive that contains previously joined drives.";
		case ERROR_IS_JOINED:
			return "An attempt was made to use a JOIN or SUBST command on a drive that has already been joined.";
		case ERROR_IS_SUBSTED:
			return "An attempt was made to use a JOIN or SUBST command on a drive that has already been substituted.";
		case ERROR_NOT_JOINED:
			return "The system tried to delete the JOIN of a drive that is not joined.";
		case ERROR_NOT_SUBSTED:
			return "The system tried to delete the substitution of a drive that is not substituted.";
		case ERROR_JOIN_TO_JOIN:
			return "The system tried to join a drive to a directory on a joined drive.";
		case ERROR_SUBST_TO_SUBST:
			return "The system tried to substitute a drive to a directory on a substituted drive.";
		case ERROR_JOIN_TO_SUBST:
			return "The system tried to join a drive to a directory on a substituted drive.";
		case ERROR_SUBST_TO_JOIN:
			return "The system tried to SUBST a drive to a directory on a joined drive.";
		case ERROR_BUSY_DRIVE:
			return "The system cannot perform a JOIN or SUBST at this time.";
		case ERROR_SAME_DRIVE:
			return "The system cannot join or substitute a drive to or for a directory on the same drive.";
		case ERROR_DIR_NOT_ROOT:
			return "The directory is not a subdirectory of the root directory.";
		case ERROR_DIR_NOT_EMPTY:
			return "The directory is not empty.";
		case ERROR_IS_SUBST_PATH:
			return "The path specified is being used in a substitute.";
		case ERROR_IS_JOIN_PATH:
			return "Not enough resources are available to process this command.";
		case ERROR_PATH_BUSY:
			return "The path specified cannot be used at this time.";
		case ERROR_IS_SUBST_TARGET:
			return "An attempt was made to join or substitute a drive for which a directory on the drive is the target of a previous substitute.";
		case ERROR_SYSTEM_TRACE:
			return "System trace information was not specified in your CONFIG.SYS file, or tracing is disallowed.";
		case ERROR_INVALID_EVENT_COUNT:
			return "The number of specified semaphore events for DosMuxSemWait is not correct.";
		case ERROR_TOO_MANY_MUXWAITERS:
			return "DosMuxSemWait did not execute; too many semaphores are already set.";
		case ERROR_INVALID_LIST_FORMAT:
			return "The DosMuxSemWait list is not correct.";
		case ERROR_LABEL_TOO_LONG:
			return "The volume label you entered exceeds the label character limit of the target file system.";
		case ERROR_TOO_MANY_TCBS:
			return "Cannot create another thread.";
		case ERROR_SIGNAL_REFUSED:
			return "The recipient process has refused the signal.";
		case ERROR_DISCARDED:
			return "The segment is already discarded and cannot be locked.";
		case ERROR_NOT_LOCKED:
			return "The segment is already unlocked.";
		case ERROR_BAD_THREADID_ADDR:
			return "The address for the thread ID is not correct.";
		case ERROR_BAD_ARGUMENTS:
			return "One or more arguments are not correct.";
		case ERROR_BAD_PATHNAME:
			return "The specified path is invalid.";
		case ERROR_SIGNAL_PENDING:
			return "A signal is already pending.";
		case ERROR_MAX_THRDS_REACHED:
			return "No more threads can be created in the system.";
		case ERROR_LOCK_FAILED:
			return "Unable to lock a region of a file.";
		case ERROR_BUSY:
			return "The requested resource is in use.";
		case ERROR_DEVICE_SUPPORT_IN_PROGRESS:
			return "Device's command support detection is in progress.";
		case ERROR_CANCEL_VIOLATION:
			return "A lock request was not outstanding for the supplied cancel region.";
		case ERROR_ATOMIC_LOCKS_NOT_SUPPORTED:
			return "The file system does not support atomic changes to the lock type.";
		case ERROR_INVALID_SEGMENT_NUMBER:
			return "The system detected a segment number that was not correct.";
		case ERROR_INVALID_ORDINAL:
			return "The operating system cannot run %1.";
		case ERROR_ALREADY_EXISTS:
			return "Cannot create a file when that file already exists.";
		case ERROR_INVALID_FLAG_NUMBER:
			return "The flag passed is not correct.";
		case ERROR_SEM_NOT_FOUND:
			return "The specified system semaphore name was not found.";
		case ERROR_INVALID_STARTING_CODESEG:
			return "The operating system cannot run %1.";
		case ERROR_INVALID_STACKSEG:
			return "The operating system cannot run %1.";
		case ERROR_INVALID_MODULETYPE:
			return "The operating system cannot run %1.";
		case ERROR_INVALID_EXE_SIGNATURE:
			return "Cannot run %1 in Win32 mode.";
		case ERROR_EXE_MARKED_INVALID:
			return "The operating system cannot run %1.";
		case ERROR_BAD_EXE_FORMAT:
			return "%1 is not a valid Win32 application.";
		case ERROR_ITERATED_DATA_EXCEEDS_64k:
			return "The operating system cannot run %1.";
		case ERROR_INVALID_MINALLOCSIZE:
			return "The operating system cannot run %1.";
		case ERROR_DYNLINK_FROM_INVALID_RING:
			return "The operating system cannot run this application program.";
		case ERROR_IOPL_NOT_ENABLED:
			return "The operating system is not presently configured to run this application.";
		case ERROR_INVALID_SEGDPL:
			return "The operating system cannot run %1.";
		case ERROR_AUTODATASEG_EXCEEDS_64k:
			return "The operating system cannot run this application program.";
		case ERROR_RING2SEG_MUST_BE_MOVABLE:
			return "The code segment cannot be greater than or equal to 64K.";
		case ERROR_RELOC_CHAIN_XEEDS_SEGLIM:
			return "The operating system cannot run %1.";
		case ERROR_INFLOOP_IN_RELOC_CHAIN:
			return "The operating system cannot run %1.";
		case ERROR_ENVVAR_NOT_FOUND:
			return "The system could not find the environment option that was entered.";
		case ERROR_NO_SIGNAL_SENT:
			return "No process in the command subtree has a signal handler.";
		case ERROR_FILENAME_EXCED_RANGE:
			return "The filename or extension is too long.";
		case ERROR_RING2_STACK_IN_USE:
			return "The ring 2 stack is in use.";
		case ERROR_META_EXPANSION_TOO_LONG:
			return "The global filename characters, * or ?, are entered incorrectly or too many global filename characters are specified.";
		case ERROR_INVALID_SIGNAL_NUMBER:
			return "The signal being posted is not correct.";
		case ERROR_THREAD_1_INACTIVE:
			return "The signal handler cannot be set.";
		case ERROR_LOCKED:
			return "The segment is locked and cannot be reallocated.";
		case ERROR_TOO_MANY_MODULES:
			return "Too many dynamic-link modules are attached to this program or dynamic-link module.";
		case ERROR_NESTING_NOT_ALLOWED:
			return "Cannot nest calls to LoadModule.";
		case ERROR_EXE_MACHINE_TYPE_MISMATCH:
			return "This version of %1 is not compatible with the version of Windows you're running.Check your computer's system information and then contact the software publisher.";
		case ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY:
			return "The image file %1 is signed, unable to modify.";
		case ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY:
			return "The image file %1 is strong signed, unable to modify.";
		case ERROR_FILE_CHECKED_OUT:
			return "This file is checked out or locked for editing by another user.";
		case ERROR_CHECKOUT_REQUIRED:
			return "The file must be checked out before saving changes.";
		case ERROR_BAD_FILE_TYPE:
			return "The file type being saved or retrieved has been blocked.";
		case ERROR_FILE_TOO_LARGE:
			return "The file size exceeds the limit allowed and cannot be saved.";
		case ERROR_FORMS_AUTH_REQUIRED:
			return "Access Denied.Before opening files in this location, you must first add the web site to your trusted sites list, browse to the web site, and select the option to login automatically.";
		case ERROR_VIRUS_INFECTED:
			return "Operation did not complete successfully because the file contains a virus or potentially unwanted software.";
		case ERROR_VIRUS_DELETED:
			return "This file contains a virus or potentially unwanted software and cannot be opened.Due to the nature of this virus or potentially unwanted software, the file has been removed from this location.";
		case ERROR_PIPE_LOCAL:
			return "The pipe is local.";
		case ERROR_BAD_PIPE:
			return "The pipe state is invalid.";
		case ERROR_PIPE_BUSY:
			return "All pipe instances are busy.";
		case ERROR_NO_DATA:
			return "The pipe is being closed.";
		case ERROR_PIPE_NOT_CONNECTED:
			return "No process is on the other end of the pipe.";
		case ERROR_MORE_DATA:
			return "More data is available.";
		case ERROR_VC_DISCONNECTED:
			return "The session was canceled.";
		case ERROR_INVALID_EA_NAME:
			return "The specified extended attribute name was invalid.";
		case ERROR_EA_LIST_INCONSISTENT:
			return "The extended attributes are inconsistent.";
		case WAIT_TIMEOUT:
			return "The wait operation timed out.";
		case ERROR_NO_MORE_ITEMS:
			return "No more data is available.";
		case ERROR_CANNOT_COPY:
			return "The copy functions cannot be used.";
		case ERROR_DIRECTORY:
			return "The directory name is invalid.";
		case ERROR_EAS_DIDNT_FIT:
			return "The extended attributes did not fit in the buffer.";
		case ERROR_EA_FILE_CORRUPT:
			return "The extended attribute file on the mounted file system is corrupt.";
		case ERROR_EA_TABLE_FULL:
			return "The extended attribute table file is full.";
		case ERROR_INVALID_EA_HANDLE:
			return "The specified extended attribute handle is invalid.";
		case ERROR_EAS_NOT_SUPPORTED:
			return "The mounted file system does not support extended attributes.";
		case ERROR_NOT_OWNER:
			return "Attempt to release mutex not owned by caller.";
		case ERROR_TOO_MANY_POSTS:
			return "Too many posts were made to a semaphore.";
		case ERROR_PARTIAL_COPY:
			return "Only part of a ReadProcessMemory or WriteProcessMemory request was completed.";
		case ERROR_OPLOCK_NOT_GRANTED:
			return "The oplock request is denied.";
		case ERROR_INVALID_OPLOCK_PROTOCOL:
			return "An invalid oplock acknowledgment was received by the system.";
		case ERROR_DISK_TOO_FRAGMENTED:
			return "The volume is too fragmented to complete this operation.";
		case ERROR_DELETE_PENDING:
			return "The file cannot be opened because it is in the process of being deleted.";
		case ERROR_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING:
			return "Short name settings may not be changed on this volume due to the global registry setting.";
		case ERROR_SHORT_NAMES_NOT_ENABLED_ON_VOLUME:
			return "Short names are not enabled on this volume.";
		case ERROR_SECURITY_STREAM_IS_INCONSISTENT:
			return "The security stream for the given volume is in an inconsistent state.Please run CHKDSK on the volume.";
		case ERROR_INVALID_LOCK_RANGE:
			return "A requested file lock operation cannot be processed due to an invalid byte range.";
		case ERROR_IMAGE_SUBSYSTEM_NOT_PRESENT:
			return "The subsystem needed to support the image type is not present.";
		case ERROR_NOTIFICATION_GUID_ALREADY_DEFINED:
			return "The specified file already has a notification GUID associated with it.";
		case ERROR_INVALID_EXCEPTION_HANDLER:
			return "An invalid exception handler routine has been detected.";
		case ERROR_DUPLICATE_PRIVILEGES:
			return "Duplicate privileges were specified for the token.";
		case ERROR_NO_RANGES_PROCESSED:
			return "No ranges for the specified operation were able to be processed.";
		case ERROR_NOT_ALLOWED_ON_SYSTEM_FILE:
			return "Operation is not allowed on a file system internal file.";
		case ERROR_DISK_RESOURCES_EXHAUSTED:
			return "The physical resources of this disk have been exhausted.";
		case ERROR_INVALID_TOKEN:
			return "The token representing the data is invalid.";
		case ERROR_DEVICE_FEATURE_NOT_SUPPORTED:
			return "The device does not support the command feature.";
		case ERROR_MR_MID_NOT_FOUND:
			return "The system cannot find message text for message number 0x%1 in the message file for %2.";
		case ERROR_SCOPE_NOT_FOUND:
			return "The scope specified was not found.";
		case ERROR_UNDEFINED_SCOPE:
			return "The Central Access Policy specified is not defined on the target machine.";
		case ERROR_INVALID_CAP:
			return "The Central Access Policy obtained from Active Directory is invalid.";
		case ERROR_DEVICE_UNREACHABLE:
			return "The device is unreachable.";
		case ERROR_DEVICE_NO_RESOURCES:
			return "The target device has insufficient resources to complete the operation.";
		case ERROR_DATA_CHECKSUM_ERROR:
			return "A data integrity checksum error occurred.Data in the file stream is corrupt.";
		case ERROR_INTERMIXED_KERNEL_EA_OPERATION:
			return "An attempt was made to modify both a KERNEL and normal Extended Attribute (EA) in the same operation.";
		case ERROR_FILE_LEVEL_TRIM_NOT_SUPPORTED:
			return "Device does not support file-level TRIM.";
		case ERROR_OFFSET_ALIGNMENT_VIOLATION:
			return "The command specified a data offset that does not align to the device's granularity/alignment.";
		case ERROR_INVALID_FIELD_IN_PARAMETER_LIST:
			return "The command specified an invalid field in its parameter list.";
		case ERROR_OPERATION_IN_PROGRESS:
			return "An operation is currently in progress with the device.";
		case ERROR_BAD_DEVICE_PATH:
			return "An attempt was made to send down the command via an invalid path to the target device.";
		case ERROR_TOO_MANY_DESCRIPTORS:
			return "The command specified a number of descriptors that exceeded the maximum supported by the device.";
		case ERROR_SCRUB_DATA_DISABLED:
			return "Scrub is disabled on the specified file.";
		case ERROR_NOT_REDUNDANT_STORAGE:
			return "The storage device does not provide redundancy.";
		case ERROR_RESIDENT_FILE_NOT_SUPPORTED:
			return "An operation is not supported on a resident file.";
		case ERROR_COMPRESSED_FILE_NOT_SUPPORTED:
			return "An operation is not supported on a compressed file.";
		case ERROR_DIRECTORY_NOT_SUPPORTED:
			return "An operation is not supported on a directory.";
		case ERROR_NOT_READ_FROM_COPY:
			return "The specified copy of the requested data could not be read.";
		case ERROR_FAIL_NOACTION_REBOOT:
			return "No action was taken as a system reboot is required.";
		case ERROR_FAIL_SHUTDOWN:
			return "The shutdown operation failed.";
		case ERROR_FAIL_RESTART:
			return "The restart operation failed.";
		case ERROR_MAX_SESSIONS_REACHED:
			return "The maximum number of sessions has been reached.";
		case ERROR_THREAD_MODE_ALREADY_BACKGROUND:
			return "The thread is already in background processing mode.";
		case ERROR_THREAD_MODE_NOT_BACKGROUND:
			return "The thread is not in background processing mode.";
		case ERROR_PROCESS_MODE_ALREADY_BACKGROUND:
			return "The process is already in background processing mode.";
		case ERROR_PROCESS_MODE_NOT_BACKGROUND:
			return "The process is not in background processing mode.";
		case ERROR_INVALID_ADDRESS:
			return "Attempt to access invalid address.";
		case ERROR_USER_PROFILE_LOAD:
			return "User profile cannot be loaded.";
		case ERROR_ARITHMETIC_OVERFLOW:
			return "Arithmetic result exceeded 32 bits.";
		case ERROR_PIPE_CONNECTED:
			return "There is a process on other end of the pipe.";
		case ERROR_PIPE_LISTENING:
			return "Waiting for a process to open the other end of the pipe.";
		case ERROR_VERIFIER_STOP:
			return "Application verifier has found an error in the current process.";
		case ERROR_ABIOS_ERROR:
			return "An error occurred in the ABIOS subsystem.";
		case ERROR_WX86_WARNING:
			return "A warning occurred in the WX86 subsystem.";
		case ERROR_WX86_ERROR:
			return "An error occurred in the WX86 subsystem.";
		case ERROR_TIMER_NOT_CANCELED:
			return "An attempt was made to cancel or set a timer that has an associated APC and the subject thread is not the thread that originally set the timer with an associated APC routine.";
		case ERROR_UNWIND:
			return "Unwind exception code.";
		case ERROR_BAD_STACK:
			return "An invalid or unaligned stack was encountered during an unwind operation.";
		case ERROR_INVALID_UNWIND_TARGET:
			return "An invalid unwind target was encountered during an unwind operation.";
		case ERROR_INVALID_PORT_ATTRIBUTES:
			return "Invalid Object Attributes specified to NtCreatePort or invalid Port Attributes specified to NtConnectPort";
		case ERROR_PORT_MESSAGE_TOO_LONG:
			return "Length of message passed to NtRequestPort or NtRequestWaitReplyPort was longer than the maximum message allowed by the port.";
		case ERROR_INVALID_QUOTA_LOWER:
			return "An attempt was made to lower a quota limit below the current usage.";
		case ERROR_DEVICE_ALREADY_ATTACHED:
			return "An attempt was made to attach to a device that was already attached to another device.";
		case ERROR_INSTRUCTION_MISALIGNMENT:
			return "An attempt was made to execute an instruction at an unaligned address and the host system does not support unaligned instruction references.";
		case ERROR_PROFILING_NOT_STARTED:
			return "Profiling not started.";
		case ERROR_PROFILING_NOT_STOPPED:
			return "Profiling not stopped.";
		case ERROR_COULD_NOT_INTERPRET:
			return "The passed ACL did not contain the minimum required information.";
		case ERROR_PROFILING_AT_LIMIT:
			return "The number of active profiling objects is at the maximum and no more may be started.";
		case ERROR_CANT_WAIT:
			return "Used to indicate that an operation cannot continue without blocking for I/O.";
		case ERROR_CANT_TERMINATE_SELF:
			return "Indicates that a thread attempted to terminate itself by default (called NtTerminateThread with NULL) and it was the last thread in the current process.";
		case ERROR_UNEXPECTED_MM_CREATE_ERR:
			return "If an MM error is return ed which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter.In this case  information is lost, however, the filter correctly handles the exception.";
		case ERROR_UNEXPECTED_MM_MAP_ERROR:
			return "If an MM error is return ed which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter.In this case  information is lost, however, the filter correctly handles the exception.";
		case ERROR_UNEXPECTED_MM_EXTEND_ERR:
			return "If an MM error is return ed which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter.In this case  information is lost, however, the filter correctly handles the exception.";
		case ERROR_BAD_FUNCTION_TABLE:
			return "A malformed function table was encountered during an unwind operation.";
		case ERROR_NO_GUID_TRANSLATION:
			return "Indicates that an attempt was made to assign protection to a file system file or directory and one of the SIDs in the security descriptor could not be translated into a GUID that could be stored by the file system.This causes the protection attempt to fail, which may cause a file creation attempt to fail.";
		case ERROR_INVALID_LDT_SIZE:
			return "Indicates that an attempt was made to grow an LDT by setting its size, or that the size was not an even number of selectors.";
		case ERROR_INVALID_LDT_OFFSET:
			return "Indicates that the starting value for the LDT information was not an integral multiple of the selector size.";
		case ERROR_INVALID_LDT_DESCRIPTOR:
			return "Indicates that the user supplied an invalid descriptor when trying to set up Ldt descriptors.";
		case ERROR_TOO_MANY_THREADS:
			return "Indicates a process has too many threads to perform the requested action.For example, assignment of a primary token may only be performed when a process has zero or one threads.";
		case ERROR_THREAD_NOT_IN_PROCESS:
			return "An attempt was made to operate on a thread within a specific process, but the thread specified is not in the process specified.";
		case ERROR_PAGEFILE_QUOTA_EXCEEDED:
			return "Page file quota was exceeded.";
		case ERROR_LOGON_SERVER_CONFLICT:
			return "The Netlogon service cannot start because another Netlogon service running in the domain conflicts with the specified role.";
		case ERROR_SYNCHRONIZATION_REQUIRED:
			return "The SAM database on a Windows Server is significantly out of synchronization with the copy on the Domain Controller.A complete synchronization is required.";
		case ERROR_NET_OPEN_FAILED:
			return "The NtCreateFile API failed.This error should never be return ed to an application, it is a place holder for the Windows Lan Manager Redirector to use in its internal error mapping routines.";
		case ERROR_IO_PRIVILEGE_FAILED:
			return "{Privilege Failed} The I/O permissions for the process could not be changed.";
		case ERROR_CONTROL_C_EXIT:
			return "{Application Exit by CTRL+C} The application terminated as a result of a CTRL+C.";
		case ERROR_MISSING_SYSTEMFILE:
			return "{Missing System File} The required system file %hs is bad or missing.";
		case ERROR_UNHANDLED_EXCEPTION:
			return "{Application Error} The exception %s (0x%08lx) occurred in the application at location 0x%08lx.";
		case ERROR_APP_INIT_FAILURE:
			return "{Application Error} The application was unable to start correctly (0x%lx).Click OK to close the application.";
		case ERROR_PAGEFILE_CREATE_FAILED:
			return "{Unable to Create Paging File} The creation of the paging file %hs failed (%lx).The requested size was %ld.";
		case ERROR_INVALID_IMAGE_HASH:
			return "Windows cannot verify the digital signature for this file.A recent hardware or software change might have installed a file that is signed incorrectly or damaged, or that might be malicious software from an unknown source.";
		case ERROR_NO_PAGEFILE:
			return "{No Paging File Specified} No paging file was specified in the system configuration.";
		case ERROR_ILLEGAL_FLOAT_CONTEXT:
			return "{EXCEPTION} A real-mode application issued a floating-point instruction and floating-point hardware is not present.";
		case ERROR_NO_EVENT_PAIR:
			return "An event pair synchronization operation was performed using the thread specific client/server event pair object, but no event pair object was associated with the thread.";
		case ERROR_DOMAIN_CTRLR_CONFIG_ERROR:
			return "A Windows Server has an incorrect configuration.";
		case ERROR_ILLEGAL_CHARACTER:
			return "An illegal character was encountered.For a multi-byte character set this includes a lead byte without a succeeding trail byte.For the Unicode character set this includes the characters 0xFFFF and 0xFFFE.";
		case ERROR_UNDEFINED_CHARACTER:
			return "The Unicode character is not defined in the Unicode character set installed on the system.";
		case ERROR_FLOPPY_VOLUME:
			return "The paging file cannot be created on a floppy diskette.";
		case ERROR_BIOS_FAILED_TO_CONNECT_INTERRUPT:
			return "The system BIOS failed to connect a system interrupt to the device or bus for which the device is connected.";
		case ERROR_BACKUP_CONTROLLER:
			return "This operation is only allowed for the Primary Domain Controller of the domain.";
		case ERROR_MUTANT_LIMIT_EXCEEDED:
			return "An attempt was made to acquire a mutant such that its maximum count would have been exceeded.";
		case ERROR_FS_DRIVER_REQUIRED:
			return "A volume has been accessed for which a file system driver is required that has not yet been loaded.";
		case ERROR_CANNOT_LOAD_REGISTRY_FILE:
			return "{Registry File Failure} The registry cannot load the hive (file): %hs or its log or alternate.It is corrupt, absent, or not writable.";
		case ERROR_DEBUG_ATTACH_FAILED:
			return "{Unexpected Failure in DebugActiveProcess} An unexpected failure occurred while processing a DebugActiveProcess API request.You may choose OK to terminate the process, or Cancel to ignore the error.";
		case ERROR_SYSTEM_PROCESS_TERMINATED:
			return "{Fatal System Error} The %hs system process terminated unexpectedly with a status of 0x%08x (0x%08x 0x%08x).The system has been shut down.";
		case ERROR_DATA_NOT_ACCEPTED:
			return "{Data Not Accepted} The TDI client could not handle the data received during an indication.";
		case ERROR_VDM_HARD_ERROR:
			return "NTVDM encountered a hard error.";
		case ERROR_DRIVER_CANCEL_TIMEOUT:
			return "{Cancel Timeout} The driver %hs failed to complete a cancelled I/O request in the allotted time.";
		case ERROR_REPLY_MESSAGE_MISMATCH:
			return "{Reply Message Mismatch} An attempt was made to reply to an LPC message, but the thread specified by the client ID in the message was not waiting on that message.";
		case ERROR_LOST_WRITEBEHIND_DATA:
			return "{Delayed Write Failed} Windows was unable to save all the data for the file %hs.The data has been lost.This error may be caused by a failure of your computer hardware or network connection.Please try to save this file elsewhere.";
		case ERROR_CLIENT_SERVER_PARAMETERS_INVALID:
			return "The parameter(s) passed to the server in the client/server shared memory window were invalid.Too much data may have been put in the shared memory window.";
		case ERROR_NOT_TINY_STREAM:
			return "The stream is not a tiny stream.";
		case ERROR_STACK_OVERFLOW_READ:
			return "The request must be handled by the stack overflow code.";
		case ERROR_CONVERT_TO_LARGE:
			return "Internal OFS status codes indicating how an allocation operation is handled.Either it is retried after the containing onode is moved or the extent stream is converted to a large stream.";
		case ERROR_FOUND_OUT_OF_SCOPE:
			return "The attempt to find the object found an object matching by ID on the volume but it is out of the scope of the handle used for the operation.";
		case ERROR_ALLOCATE_BUCKET:
			return "The bucket array must be grown.Retry transaction after doing so.";
		case ERROR_MARSHALL_OVERFLOW:
			return "The user/kernel marshalling buffer has overflowed.";
		case ERROR_INVALID_VARIANT:
			return "The supplied variant structure contains invalid data.";
		case ERROR_BAD_COMPRESSION_BUFFER:
			return "The specified buffer contains ill-formed data.";
		case ERROR_AUDIT_FAILED:
			return "{Audit Failed} An attempt to generate a security audit failed.";
		case ERROR_TIMER_RESOLUTION_NOT_SET:
			return "The timer resolution was not previously set by the current process.";
		case ERROR_INSUFFICIENT_LOGON_INFO:
			return "There is insufficient account information to log you on.";
		case ERROR_BAD_DLL_ENTRYPOINT:
			return "{Invalid DLL Entrypoint} The dynamic link library %hs is not written correctly.The stack pointer has been left in an inconsistent state.The entrypoint should be declared as WINAPI or STDCALL.Select YES to fail the DLL load.Select NO to continue execution.Selecting NO may cause the application to operate incorrectly.";
		case ERROR_BAD_SERVICE_ENTRYPOINT:
			return "{Invalid Service Callback Entrypoint} The %hs service is not written correctly.The stack pointer has been left in an inconsistent state.The callback entrypoint should be declared as WINAPI or STDCALL.Selecting OK will cause the service to continue operation.However, the service process may operate incorrectly.";
		case ERROR_IP_ADDRESS_CONFLICT1:
			return "There is an IP address conflict with another system on the network.";
		case ERROR_IP_ADDRESS_CONFLICT2:
			return "There is an IP address conflict with another system on the network.";
		case ERROR_REGISTRY_QUOTA_LIMIT:
			return "{Low On Registry Space} The system has reached the maximum size allowed for the system part of the registry.Additional storage requests will be ignored.";
		case ERROR_NO_CALLBACK_ACTIVE:
			return "A callback return  system service cannot be executed when no callback is active.";
		case ERROR_PWD_TOO_SHORT:
			return "The password provided is too short to meet the policy of your user account.Please choose a longer password.";
		case ERROR_PWD_TOO_RECENT:
			return "The policy of your user account does not allow you to change passwords too frequently.This is done to prevent users from changing back to a familiar, but potentially discovered, password.If you feel your password has been compromised then please contact your administrator immediately to have a new one assigned.";
		case ERROR_PWD_HISTORY_CONFLICT:
			return "You have attempted to change your password to one that you have used in the past.The policy of your user account does not allow this.Please select a password that you have not previously used.";
		case ERROR_UNSUPPORTED_COMPRESSION:
			return "The specified compression format is unsupported.";
		case ERROR_INVALID_HW_PROFILE:
			return "The specified hardware profile configuration is invalid.";
		case ERROR_INVALID_PLUGPLAY_DEVICE_PATH:
			return "The specified Plug and Play registry device path is invalid.";
		case ERROR_QUOTA_LIST_INCONSISTENT:
			return "The specified quota list is internally inconsistent with its descriptor.";
		case ERROR_EVALUATION_EXPIRATION:
			return "{Windows Evaluation Notification} The evaluation period for this installation of Windows has expired.This system will shutdown in 1 hour.To restore access to this installation of Windows, please upgrade this installation using a licensed distribution of this product.";
		case ERROR_ILLEGAL_DLL_RELOCATION:
			return "{Illegal System DLL Relocation} The system DLL %hs was relocated in memory.The application will not run properly.The relocation occurred because the DLL %hs occupied an address range reserved for Windows system DLLs.The vendor supplying the DLL should be contacted for a new DLL.";
		case ERROR_DLL_INIT_FAILED_LOGOFF:
			return "{DLL Initialization Failed} The application failed to initialize because the window station is shutting down.";
		case ERROR_VALIDATE_CONTINUE:
			return "The validation process needs to continue on to the next step.";
		case ERROR_NO_MORE_MATCHES:
			return "There are no more matches for the current index enumeration.";
		case ERROR_RANGE_LIST_CONFLICT:
			return "The range could not be added to the range list because of a conflict.";
		case ERROR_SERVER_SID_MISMATCH:
			return "The server process is running under a SID different than that required by client.";
		case ERROR_CANT_ENABLE_DENY_ONLY:
			return "A group marked use for deny only cannot be enabled.";
		case ERROR_FLOAT_MULTIPLE_FAULTS:
			return "{EXCEPTION} Multiple floating point faults.";
		case ERROR_FLOAT_MULTIPLE_TRAPS:
			return "{EXCEPTION} Multiple floating point traps.";
		case ERROR_NOINTERFACE:
			return "The requested interface is not supported.";
		case ERROR_DRIVER_FAILED_SLEEP:
			return "{System Standby Failed} The driver %hs does not support standby mode.Updating this driver may allow the system to go to standby mode.";
		case ERROR_CORRUPT_SYSTEM_FILE:
			return "The system file %1 has become corrupt and has been replaced.";
		case ERROR_COMMITMENT_MINIMUM:
			return "{Virtual Memory Minimum Too Low} Your system is low on virtual memory.Windows is increasing the size of your virtual memory paging file.During this process, memory requests for some applications may be denied.For more information, see Help.";
		case ERROR_PNP_RESTART_ENUMERATION:
			return "A device was removed so enumeration must be restarted.";
		case ERROR_SYSTEM_IMAGE_BAD_SIGNATURE:
			return "{Fatal System Error} The system image %s is not properly signed.The file has been replaced with the signed file.The system has been shut down.";
		case ERROR_PNP_REBOOT_REQUIRED:
			return "Device will not start without a reboot.";
		case ERROR_INSUFFICIENT_POWER:
			return "There is not enough power to complete the requested operation.";
		case ERROR_MULTIPLE_FAULT_VIOLATION:
			return "ERROR_MULTIPLE_FAULT_VIOLATION";
		case ERROR_SYSTEM_SHUTDOWN:
			return "The system is in the process of shutting down.";
		case ERROR_PORT_NOT_SET:
			return "An attempt to remove a processes DebugPort was made, but a port was not already associated with the process.";
		case ERROR_DS_VERSION_CHECK_FAILURE:
			return "This version of Windows is not compatible with the behavior version of directory forest, domain or domain controller.";
		case ERROR_RANGE_NOT_FOUND:
			return "The specified range could not be found in the range list.";
		case ERROR_NOT_SAFE_MODE_DRIVER:
			return "The driver was not loaded because the system is booting into safe mode.";
		case ERROR_FAILED_DRIVER_ENTRY:
			return "The driver was not loaded because it failed its initialization call.";
		case ERROR_DEVICE_ENUMERATION_ERROR:
			return "The \"%hs\" encountered an error while applying power or reading the device configuration.This may be caused by a failure of your hardware or by a poor connection.";
		case ERROR_MOUNT_POINT_NOT_RESOLVED:
			return "The create operation failed because the name contained at least one mount point which resolves to a volume to which the specified device object is not attached.";
		case ERROR_INVALID_DEVICE_OBJECT_PARAMETER:
			return "The device object parameter is either not a valid device object or is not attached to the volume specified by the file name.";
		case ERROR_MCA_OCCURED:
			return "A Machine Check Error has occurred.Please check the system eventlog for additional information.";
		case ERROR_DRIVER_DATABASE_ERROR:
			return "There was error [%2] processing the driver database.";
		case ERROR_SYSTEM_HIVE_TOO_LARGE:
			return "System hive size has exceeded its limit.";
		case ERROR_DRIVER_FAILED_PRIOR_UNLOAD:
			return "The driver could not be loaded because a previous version of the driver is still in memory.";
		case ERROR_VOLSNAP_PREPARE_HIBERNATE:
			return "{Volume Shadow Copy Service} Please wait while the Volume Shadow Copy Service prepares volume %hs for hibernation.";
		case ERROR_HIBERNATION_FAILURE:
			return "The system has failed to hibernate (The error code is %hs).Hibernation will be disabled until the system is restarted.";
		case ERROR_PWD_TOO_LONG:
			return "The password provided is too long to meet the policy of your user account.Please choose a shorter password.";
		case ERROR_FILE_SYSTEM_LIMITATION:
			return "The requested operation could not be completed due to a file system limitation.";
		case ERROR_ASSERTION_FAILURE:
			return "An assertion failure has occurred.";
		case ERROR_ACPI_ERROR:
			return "An error occurred in the ACPI subsystem.";
		case ERROR_WOW_ASSERTION:
			return "WOW Assertion Error.";
		case ERROR_PNP_BAD_MPS_TABLE:
			return "A device is missing in the system BIOS MPS table.This device will not be used.Please contact your system vendor for system BIOS update.";
		case ERROR_PNP_TRANSLATION_FAILED:
			return "A translator failed to translate resources.";
		case ERROR_PNP_IRQ_TRANSLATION_FAILED:
			return "A IRQ translator failed to translate resources.";
		case ERROR_PNP_INVALID_ID:
			return "Driver %2 return ed invalid ID for a child device (%3).";
		case ERROR_WAKE_SYSTEM_DEBUGGER:
			return "{Kernel Debugger Awakened} the system debugger was awakened by an interrupt.";
		case ERROR_HANDLES_CLOSED:
			return "{Handles Closed} Handles to objects have been automatically closed as a result of the requested operation.";
		case ERROR_EXTRANEOUS_INFORMATION:
			return "{Too Much Information} The specified access control list (ACL) contained more information than was expected.";
		case ERROR_RXACT_COMMIT_NECESSARY:
			return "This warning level status indicates that the transaction state already exists for the registry sub-tree, but that a transaction commit was previously aborted.The commit has NOT been completed, but has not been rolled back either (so it may still be committed if desired).";
		case ERROR_MEDIA_CHECK:
			return "{Media Changed} The media may have changed.";
		case ERROR_GUID_SUBSTITUTION_MADE:
			return "{GUID Substitution} During the translation of a global identifier (GUID) to a Windows security ID (SID), no administratively-defined GUID prefix was found.A substitute prefix was used, which will not compromise system security.However, this may provide a more restrictive access than intended.";
		case ERROR_STOPPED_ON_SYMLINK:
			return "The create operation stopped after reaching a symbolic link.";
		case ERROR_LONGJUMP:
			return "A long jump has been executed.";
		case ERROR_PLUGPLAY_QUERY_VETOED:
			return "The Plug and Play query operation was not successful.";
		case ERROR_UNWIND_CONSOLIDATE:
			return "A frame consolidation has been executed.";
		case ERROR_REGISTRY_HIVE_RECOVERED:
			return "{Registry Hive Recovered} Registry hive (file): %hs was corrupted and it has been recovered.Some data might have been lost.";
		case ERROR_DLL_MIGHT_BE_INSECURE:
			return "The application is attempting to run executable code from the module %hs.This may be insecure.An alternative, %hs, is available.Should the application use the secure module %hs?";
		case ERROR_DLL_MIGHT_BE_INCOMPATIBLE:
			return "The application is loading executable code from the module %hs.This is secure, but may be incompatible with previous releases of the operating system.An alternative, %hs, is available.Should the application use the secure module %hs?";
		case ERROR_DBG_EXCEPTION_NOT_HANDLED:
			return "Debugger did not handle the exception.";
		case ERROR_DBG_REPLY_LATER:
			return "Debugger will reply later.";
		case ERROR_DBG_UNABLE_TO_PROVIDE_HANDLE:
			return "Debugger cannot provide handle.";
		case ERROR_DBG_TERMINATE_THREAD:
			return "Debugger terminated thread.";
		case ERROR_DBG_TERMINATE_PROCESS:
			return "Debugger terminated process.";
		case ERROR_DBG_CONTROL_C:
			return "Debugger got control C.";
		case ERROR_DBG_PRINTEXCEPTION_C:
			return "Debugger printed exception on control C.";
		case ERROR_DBG_RIPEXCEPTION:
			return "Debugger received RIP exception.";
		case ERROR_DBG_CONTROL_BREAK:
			return "Debugger received control break.";
		case ERROR_DBG_COMMAND_EXCEPTION:
			return "Debugger command communication exception.";
		case ERROR_OBJECT_NAME_EXISTS:
			return "{Object Exists} An attempt was made to create an object and the object name already existed.";
		case ERROR_THREAD_WAS_SUSPENDED:
			return "{Thread Suspended} A thread termination occurred while the thread was suspended.The thread was resumed, and termination proceeded.";
		case ERROR_IMAGE_NOT_AT_BASE:
			return "{Image Relocated} An image file could not be mapped at the address specified in the image file.Local fixups must be performed on this image.";
		case ERROR_RXACT_STATE_CREATED:
			return "This informational level status indicates that a specified registry sub-tree transaction state did not yet exist and had to be created.";
		case ERROR_SEGMENT_NOTIFICATION:
			return "{Segment Load} A virtual DOS machine (VDM) is loading, unloading, or moving an MS-DOS or Win16 program segment image.An exception is raised so a debugger can load, unload or track symbols and breakpoints within these 16-bit segments.";
		case ERROR_BAD_CURRENT_DIRECTORY:
			return "{Invalid Current Directory} The process cannot switch to the startup current directory %hs.Select OK to set current directory to %hs, or select CANCEL to exit.";
		case ERROR_FT_READ_RECOVERY_FROM_BACKUP:
			return "{Redundant Read} To satisfy a read request, the NT fault-tolerant file system successfully read the requested data from a redundant copy.This was done because the file system encountered a failure on a member of the fault-tolerant volume, but was unable to reassign the failing area of the device.";
		case ERROR_FT_WRITE_RECOVERY:
			return "{Redundant Write} To satisfy a write request, the NT fault-tolerant file system successfully wrote a redundant copy of the information.This was done because the file system encountered a failure on a member of the fault-tolerant volume, but was not able to reassign the failing area of the device.";
		case ERROR_IMAGE_MACHINE_TYPE_MISMATCH:
			return "{Machine Type Mismatch} The image file %hs is valid, but is for a machine type other than the current machine.Select OK to continue, or CANCEL to fail the DLL load.";
		case ERROR_RECEIVE_PARTIAL:
			return "{Partial Data Received} The network transport return ed partial data to its client.The remaining data will be sent later.";
		case ERROR_RECEIVE_EXPEDITED:
			return "{Expedited Data Received} The network transport return ed data to its client that was marked as expedited by the remote system.";
		case ERROR_RECEIVE_PARTIAL_EXPEDITED:
			return "{Partial Expedited Data Received} The network transport return ed partial data to its client and this data was marked as expedited by the remote system.The remaining data will be sent later.";
		case ERROR_EVENT_DONE:
			return "{TDI Event Done} The TDI indication has completed successfully.";
		case ERROR_EVENT_PENDING:
			return "{TDI Event Pending} The TDI indication has entered the pending state.";
		case ERROR_CHECKING_FILE_SYSTEM:
			return "Checking file system on %wZ.";
		case ERROR_FATAL_APP_EXIT:
			return "{Fatal Application Exit} %hs.";
		case ERROR_PREDEFINED_HANDLE:
			return "The specified registry key is referenced by a predefined handle.";
		case ERROR_WAS_UNLOCKED:
			return "{Page Unlocked} The page protection of a locked page was changed to 'No Access' and the page was unlocked from memory and from the process.";
		case ERROR_SERVICE_NOTIFICATION:
			return "%hs";
		case ERROR_WAS_LOCKED:
			return "{Page Locked} One of the pages to lock was already locked.";
		case ERROR_LOG_HARD_ERROR:
			return "Application popup: %1 : %2";
		case ERROR_ALREADY_WIN32:
			return "ERROR_ALREADY_WIN32";
		case ERROR_IMAGE_MACHINE_TYPE_MISMATCH_EXE:
			return "{Machine Type Mismatch} The image file %hs is valid, but is for a machine type other than the current machine.";
		case ERROR_NO_YIELD_PERFORMED:
			return "A yield execution was performed and no thread was available to run.";
		case ERROR_TIMER_RESUME_IGNORED:
			return "The resumable flag to a timer API was ignored.";
		case ERROR_ARBITRATION_UNHANDLED:
			return "The arbiter has deferred arbitration of these resources to its parent.";
		case ERROR_CARDBUS_NOT_SUPPORTED:
			return "The inserted CardBus device cannot be started because of a configuration error on \"%hs\".";
		case ERROR_MP_PROCESSOR_MISMATCH:
			return "The CPUs in this multiprocessor system are not all the same revision level.To use all processors the operating system restricts itself to the features of the least capable processor in the system.Should problems occur with this system, contact the CPU manufacturer to see if this mix of processors is supported.";
		case ERROR_HIBERNATED:
			return "The system was put into hibernation.";
		case ERROR_RESUME_HIBERNATION:
			return "The system was resumed from hibernation.";
		case ERROR_FIRMWARE_UPDATED:
			return "Windows has detected that the system firmware (BIOS) was updated [previous firmware date = %2, current firmware date %3].";
		case ERROR_DRIVERS_LEAKING_LOCKED_PAGES:
			return "A device driver is leaking locked I/O pages causing system degradation.The system has automatically enabled tracking code in order to try and catch the culprit.";
		case ERROR_WAKE_SYSTEM:
			return "The system has awoken.";
		case ERROR_WAIT_1:
			return "ERROR_WAIT_1";
		case ERROR_WAIT_2:
			return "ERROR_WAIT_2";
		case ERROR_WAIT_3:
			return "ERROR_WAIT_3";
		case ERROR_WAIT_63:
			return "ERROR_WAIT_63";
		case ERROR_ABANDONED_WAIT_0:
			return "ERROR_ABANDONED_WAIT_0";
		case ERROR_ABANDONED_WAIT_63:
			return "ERROR_ABANDONED_WAIT_63";
		case ERROR_USER_APC:
			return "ERROR_USER_APC";
		case ERROR_KERNEL_APC:
			return "ERROR_KERNEL_APC";
		case ERROR_ALERTED:
			return "ERROR_ALERTED";
		case ERROR_ELEVATION_REQUIRED:
			return "The requested operation requires elevation.";
		case ERROR_REPARSE:
			return "A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link.";
		case ERROR_OPLOCK_BREAK_IN_PROGRESS:
			return "An open/create operation completed while an oplock break is underway.";
		case ERROR_VOLUME_MOUNTED:
			return "A new volume has been mounted by a file system.";
		case ERROR_RXACT_COMMITTED:
			return "This success level status indicates that the transaction state already exists for the registry sub-tree, but that a transaction commit was previously aborted.The commit has now been completed.";
		case ERROR_NOTIFY_CLEANUP:
			return "This indicates that a notify change request has been completed due to closing the handle which made the notify change request.";
		case ERROR_PRIMARY_TRANSPORT_CONNECT_FAILED:
			return "{Connect Failure on Primary Transport} An attempt was made to connect to the remote server %hs on the primary transport, but the connection failed.The computer WAS able to connect on a secondary transport.";
		case ERROR_PAGE_FAULT_TRANSITION:
			return "Page fault was a transition fault.";
		case ERROR_PAGE_FAULT_DEMAND_ZERO:
			return "Page fault was a demand zero fault.";
		case ERROR_PAGE_FAULT_COPY_ON_WRITE:
			return "Page fault was a demand zero fault.";
		case ERROR_PAGE_FAULT_GUARD_PAGE:
			return "Page fault was a demand zero fault.";
		case ERROR_PAGE_FAULT_PAGING_FILE:
			return "Page fault was satisfied by reading from a secondary storage device.";
		case ERROR_CACHE_PAGE_LOCKED:
			return "Cached page was locked during operation.";
		case ERROR_CRASH_DUMP:
			return "Crash dump exists in paging file.";
		case ERROR_BUFFER_ALL_ZEROS:
			return "Specified buffer contains all zeros.";
		case ERROR_REPARSE_OBJECT:
			return "A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link.";
		case ERROR_RESOURCE_REQUIREMENTS_CHANGED:
			return "The device has succeeded a query-stop and its resource requirements have changed.";
		case ERROR_TRANSLATION_COMPLETE:
			return "The translator has translated these resources into the global space and no further translations should be performed.";
		case ERROR_NOTHING_TO_TERMINATE:
			return "A process being terminated has no threads to terminate.";
		case ERROR_PROCESS_NOT_IN_JOB:
			return "The specified process is not part of a job.";
		case ERROR_PROCESS_IN_JOB:
			return "The specified process is part of a job.";
		case ERROR_VOLSNAP_HIBERNATE_READY:
			return "{Volume Shadow Copy Service} The system is now ready for hibernation.";
		case ERROR_FSFILTER_OP_COMPLETED_SUCCESSFULLY:
			return "A file system or file system filter driver has successfully completed an FsFilter operation.";
		case ERROR_INTERRUPT_VECTOR_ALREADY_CONNECTED:
			return "The specified interrupt vector was already connected.";
		case ERROR_INTERRUPT_STILL_CONNECTED:
			return "The specified interrupt vector is still connected.";
		case ERROR_WAIT_FOR_OPLOCK:
			return "An operation is blocked waiting for an oplock.";
		case ERROR_DBG_EXCEPTION_HANDLED:
			return "Debugger handled exception.";
		case ERROR_DBG_CONTINUE:
			return "Debugger continued.";
		case ERROR_CALLBACK_POP_STACK:
			return "An exception occurred in a user mode callback and the kernel callback frame should be removed.";
		case ERROR_COMPRESSION_DISABLED:
			return "Compression is disabled for this volume.";
		case ERROR_CANTFETCHBACKWARDS:
			return "The data provider cannot fetch backwards through a result set.";
		case ERROR_CANTSCROLLBACKWARDS:
			return "The data provider cannot scroll backwards through a result set.";
		case ERROR_ROWSNOTRELEASED:
			return "The data provider requires that previously fetched data is released before asking for more data.";
		case ERROR_BAD_ACCESSOR_FLAGS:
			return "The data provider was not able to interpret the flags set for a column binding in an accessor.";
		case ERROR_ERRORS_ENCOUNTERED:
			return "One or more errors occurred while processing the request.";
		case ERROR_NOT_CAPABLE:
			return "The implementation is not capable of performing the request.";
		case ERROR_REQUEST_OUT_OF_SEQUENCE:
			return "The client of a component requested an operation which is not valid given the state of the component instance.";
		case ERROR_VERSION_PARSE_ERROR:
			return "A version number could not be parsed.";
		case ERROR_BADSTARTPOSITION:
			return "The iterator's start position is invalid.";
		case ERROR_MEMORY_HARDWARE:
			return "The hardware has reported an uncorrectable memory error.";
		case ERROR_DISK_REPAIR_DISABLED:
			return "The attempted operation required self healing to be enabled.";
		case ERROR_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE:
			return "The Desktop heap encountered an error while allocating session memory.There is more information in the system event log.";
		case ERROR_SYSTEM_POWERSTATE_TRANSITION:
			return "The system power state is transitioning from %2 to %3.";
		case ERROR_SYSTEM_POWERSTATE_COMPLEX_TRANSITION:
			return "The system power state is transitioning from %2 to %3 but could enter %4.";
		case ERROR_MCA_EXCEPTION:
			return "A thread is getting dispatched with MCA EXCEPTION because of MCA.";
		case ERROR_ACCESS_AUDIT_BY_POLICY:
			return "Access to %1 is monitored by policy rule %2.";
		case ERROR_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY:
			return "Access to %1 has been restricted by your Administrator by policy rule %2.";
		case ERROR_ABANDON_HIBERFILE:
			return "A valid hibernation file has been invalidated and should be abandoned.";
		case ERROR_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED:
			return "{Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost.This error may be caused by network connectivity issues.Please try to save this file elsewhere.";
		case ERROR_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR:
			return "{Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost.This error was return ed by the server on which the file exists.Please try to save this file elsewhere.";
		case ERROR_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR:
			return "{Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost.This error may be caused if the device has been removed or the media is write-protected.";
		case ERROR_BAD_MCFG_TABLE:
			return "The resources required for this device conflict with the MCFG table.";
		case ERROR_DISK_REPAIR_REDIRECTED:
			return "The volume repair could not be performed while it is online.Please schedule to take the volume offline so that it can be repaired.";
		case ERROR_DISK_REPAIR_UNSUCCESSFUL:
			return "The volume repair was not successful.";
		case ERROR_CORRUPT_LOG_OVERFULL:
			return "One of the volume corruption logs is full.Further corruptions that may be detected won't be logged.";
		case ERROR_CORRUPT_LOG_CORRUPTED:
			return "One of the volume corruption logs is internally corrupted and needs to be recreated.The volume may contain undetected corruptions and must be scanned.";
		case ERROR_CORRUPT_LOG_UNAVAILABLE:
			return "One of the volume corruption logs is unavailable for being operated on.";
		case ERROR_CORRUPT_LOG_DELETED_FULL:
			return "One of the volume corruption logs was deleted while still having corruption records in them.The volume contains detected corruptions and must be scanned.";
		case ERROR_CORRUPT_LOG_CLEARED:
			return "One of the volume corruption logs was cleared by chkdsk and no longer contains real corruptions.";
		case ERROR_ORPHAN_NAME_EXHAUSTED:
			return "Orphaned files exist on the volume but could not be recovered because no more new names could be created in the recovery directory.Files must be moved from the recovery directory.";
		case ERROR_OPLOCK_SWITCHED_TO_NEW_HANDLE:
			return "The oplock that was associated with this handle is now associated with a different handle.";
		case ERROR_CANNOT_GRANT_REQUESTED_OPLOCK:
			return "An oplock of the requested level cannot be granted.An oplock of a lower level may be available.";
		case ERROR_CANNOT_BREAK_OPLOCK:
			return "The operation did not complete successfully because it would cause an oplock to be broken.The caller has requested that existing oplocks not be broken.";
		case ERROR_OPLOCK_HANDLE_CLOSED:
			return "The handle with which this oplock was associated has been closed.The oplock is now broken.";
		case ERROR_NO_ACE_CONDITION:
			return "The specified access control entry (ACE) does not contain a condition.";
		case ERROR_INVALID_ACE_CONDITION:
			return "The specified access control entry (ACE) contains an invalid condition.";
		case ERROR_FILE_HANDLE_REVOKED:
			return "Access to the specified file handle has been revoked.";
		case ERROR_IMAGE_AT_DIFFERENT_BASE:
			return "An image file was mapped at a different address from the one specified in the image file but fixups will still be automatically performed on the image.";
		case ERROR_EA_ACCESS_DENIED:
			return "Access to the extended attribute was denied.";
		case ERROR_OPERATION_ABORTED:
			return "The I/O operation has been aborted because of either a thread exit or an application request.";
		case ERROR_IO_INCOMPLETE:
			return "Overlapped I/O event is not in a signaled state.";
		case ERROR_IO_PENDING:
			return "Overlapped I/O operation is in progress.";
		case ERROR_NOACCESS:
			return "Invalid access to memory location.";
		case ERROR_SWAPERROR:
			return "Error performing inpage operation.";
		case ERROR_STACK_OVERFLOW:
			return "Recursion too deep; the stack overflowed.";
		case ERROR_INVALID_MESSAGE:
			return "The window cannot act on the sent message.";
		case ERROR_CAN_NOT_COMPLETE:
			return "Cannot complete this function.";
		case ERROR_INVALID_FLAGS:
			return "Invalid flags.";
		case ERROR_UNRECOGNIZED_VOLUME:
			return "The volume does not contain a recognized file system.Please make sure that all required file system drivers are loaded and that the volume is not corrupted.";
		case ERROR_FILE_INVALID:
			return "The volume for a file has been externally altered so that the opened file is no longer valid.";
		case ERROR_FULLSCREEN_MODE:
			return "The requested operation cannot be performed in full-screen mode.";
		case ERROR_NO_TOKEN:
			return "An attempt was made to reference a token that does not exist.";
		case ERROR_BADDB:
			return "The configuration registry database is corrupt.";
		case ERROR_BADKEY:
			return "The configuration registry key is invalid.";
		case ERROR_CANTOPEN:
			return "The configuration registry key could not be opened.";
		case ERROR_CANTREAD:
			return "The configuration registry key could not be read.";
		case ERROR_CANTWRITE:
			return "The configuration registry key could not be written.";
		case ERROR_REGISTRY_RECOVERED:
			return "One of the files in the registry database had to be recovered by use of a log or alternate copy.The recovery was successful.";
		case ERROR_REGISTRY_CORRUPT:
			return "The registry is corrupted.The structure of one of the files containing registry data is corrupted, or the system's memory image of the file is corrupted, or the file could not be recovered because the alternate copy or log was absent or corrupted.";
		case ERROR_REGISTRY_IO_FAILED:
			return "An I/O operation initiated by the registry failed unrecoverably.The registry could not read in, or write out, or flush, one of the files that contain the system's image of the registry.";
		case ERROR_NOT_REGISTRY_FILE:
			return "The system has attempted to load or restore a file into the registry, but the specified file is not in a registry file format.";
		case ERROR_KEY_DELETED:
			return "Illegal operation attempted on a registry key that has been marked for deletion.";
		case ERROR_NO_LOG_SPACE:
			return "System could not allocate the required space in a registry log.";
		case ERROR_KEY_HAS_CHILDREN:
			return "Cannot create a symbolic link in a registry key that already has subkeys or values.";
		case ERROR_CHILD_MUST_BE_VOLATILE:
			return "Cannot create a stable subkey under a volatile parent key.";
		case ERROR_NOTIFY_ENUM_DIR:
			return "A notify change request is being completed and the information is not being return ed in the caller's buffer.The caller now needs to enumerate the files to find the changes.";
		case ERROR_DEPENDENT_SERVICES_RUNNING:
			return "A stop control has been sent to a service that other running services are dependent on.";
		case ERROR_INVALID_SERVICE_CONTROL:
			return "The requested control is not valid for this service.";
		case ERROR_SERVICE_REQUEST_TIMEOUT:
			return "The service did not respond to the start or control request in a timely fashion.";
		case ERROR_SERVICE_NO_THREAD:
			return "A thread could not be created for the service.";
		case ERROR_SERVICE_DATABASE_LOCKED:
			return "The service database is locked.";
		case ERROR_SERVICE_ALREADY_RUNNING:
			return "An instance of the service is already running.";
		case ERROR_INVALID_SERVICE_ACCOUNT:
			return "The account name is invalid or does not exist, or the password is invalid for the account name specified.";
		case ERROR_SERVICE_DISABLED:
			return "The service cannot be started, either because it is disabled or because it has no enabled devices associated with it.";
		case ERROR_CIRCULAR_DEPENDENCY:
			return "Circular service dependency was specified.";
		case ERROR_SERVICE_DOES_NOT_EXIST:
			return "The specified service does not exist as an installed service.";
		case ERROR_SERVICE_CANNOT_ACCEPT_CTRL:
			return "The service cannot accept control messages at this time.";
		case ERROR_SERVICE_NOT_ACTIVE:
			return "The service has not been started.";
		case ERROR_FAILED_SERVICE_CONTROLLER_CONNECT:
			return "The service process could not connect to the service controller.";
		case ERROR_EXCEPTION_IN_SERVICE:
			return "An exception occurred in the service when handling the control request.";
		case ERROR_DATABASE_DOES_NOT_EXIST:
			return "The database specified does not exist.";
		case ERROR_SERVICE_SPECIFIC_ERROR:
			return "The service has return ed a service-specific error code.";
		case ERROR_PROCESS_ABORTED:
			return "The process terminated unexpectedly.";
		case ERROR_SERVICE_DEPENDENCY_FAIL:
			return "The dependency service or group failed to start.";
		case ERROR_SERVICE_LOGON_FAILED:
			return "The service did not start due to a logon failure.";
		case ERROR_SERVICE_START_HANG:
			return "After starting, the service hung in a start-pending state.";
		case ERROR_INVALID_SERVICE_LOCK:
			return "The specified service database lock is invalid.";
		case ERROR_SERVICE_MARKED_FOR_DELETE:
			return "The specified service has been marked for deletion.";
		case ERROR_SERVICE_EXISTS:
			return "The specified service already exists.";
		case ERROR_ALREADY_RUNNING_LKG:
			return "The system is currently running with the last-known-good configuration.";
		case ERROR_SERVICE_DEPENDENCY_DELETED:
			return "The dependency service does not exist or has been marked for deletion.";
		case ERROR_BOOT_ALREADY_ACCEPTED:
			return "The current boot has already been accepted for use as the last-known-good control set.";
		case ERROR_SERVICE_NEVER_STARTED:
			return "No attempts to start the service have been made since the last boot.";
		case ERROR_DUPLICATE_SERVICE_NAME:
			return "The name is already in use as either a service name or a service display name.";
		case ERROR_DIFFERENT_SERVICE_ACCOUNT:
			return "The account specified for this service is different from the account specified for other services running in the same process.";
		case ERROR_CANNOT_DETECT_DRIVER_FAILURE:
			return "Failure actions can only be set for Win32 services, not for drivers.";
		case ERROR_CANNOT_DETECT_PROCESS_ABORT:
			return "This service runs in the same process as the service control manager.Therefore, the service control manager cannot take action if this service's process terminates unexpectedly.";
		case ERROR_NO_RECOVERY_PROGRAM:
			return "No recovery program has been configured for this service.";
		case ERROR_SERVICE_NOT_IN_EXE:
			return "The executable program that this service is configured to run in does not implement the service.";
		case ERROR_NOT_SAFEBOOT_SERVICE:
			return "This service cannot be started in Safe Mode.";
		case ERROR_END_OF_MEDIA:
			return "The physical end of the tape has been reached.";
		case ERROR_FILEMARK_DETECTED:
			return "A tape access reached a filemark.";
		case ERROR_BEGINNING_OF_MEDIA:
			return "The beginning of the tape or a partition was encountered.";
		case ERROR_SETMARK_DETECTED:
			return "A tape access reached the end of a set of files.";
		case ERROR_NO_DATA_DETECTED:
			return "No more data is on the tape.";
		case ERROR_PARTITION_FAILURE:
			return "Tape could not be partitioned.";
		case ERROR_INVALID_BLOCK_LENGTH:
			return "When accessing a new tape of a multivolume partition, the current block size is incorrect.";
		case ERROR_DEVICE_NOT_PARTITIONED:
			return "Tape partition information could not be found when loading a tape.";
		case ERROR_UNABLE_TO_LOCK_MEDIA:
			return "Unable to lock the media eject mechanism.";
		case ERROR_UNABLE_TO_UNLOAD_MEDIA:
			return "Unable to unload the media.";
		case ERROR_MEDIA_CHANGED:
			return "The media in the drive may have changed.";
		case ERROR_BUS_RESET:
			return "The I/O bus was reset.";
		case ERROR_NO_MEDIA_IN_DRIVE:
			return "No media in drive.";
		case ERROR_NO_UNICODE_TRANSLATION:
			return "No mapping for the Unicode character exists in the target multi-byte code page.";
		case ERROR_DLL_INIT_FAILED:
			return "A dynamic link library (DLL) initialization routine failed.";
		case ERROR_SHUTDOWN_IN_PROGRESS:
			return "A system shutdown is in progress.";
		case ERROR_NO_SHUTDOWN_IN_PROGRESS:
			return "Unable to abort the system shutdown because no shutdown was in progress.";
		case ERROR_IO_DEVICE:
			return "The request could not be performed because of an I/O device error.";
		case ERROR_SERIAL_NO_DEVICE:
			return "No serial device was successfully initialized.The serial driver will unload.";
		case ERROR_IRQ_BUSY:
			return "Unable to open a device that was sharing an interrupt request (IRQ) with other devices.At least one other device that uses that IRQ was already opened.";
		case ERROR_MORE_WRITES:
			return "A serial I/O operation was completed by another write to the serial port.The IOCTL_SERIAL_XOFF_COUNTER reached zero.";
		case ERROR_COUNTER_TIMEOUT:
			return "A serial I/O operation completed because the timeout period expired.The IOCTL_SERIAL_XOFF_COUNTER did not reach zero.";
		case ERROR_FLOPPY_ID_MARK_NOT_FOUND:
			return "No ID address mark was found on the floppy disk.";
		case ERROR_FLOPPY_WRONG_CYLINDER:
			return "Mismatch between the floppy disk sector ID field and the floppy disk controller track address.";
		case ERROR_FLOPPY_UNKNOWN_ERROR:
			return "The floppy disk controller reported an error that is not recognized by the floppy disk driver.";
		case ERROR_FLOPPY_BAD_REGISTERS:
			return "The floppy disk controller return ed inconsistent results in its registers.";
		case ERROR_DISK_RECALIBRATE_FAILED:
			return "While accessing the hard disk, a recalibrate operation failed, even after retries.";
		case ERROR_DISK_OPERATION_FAILED:
			return "While accessing the hard disk, a disk operation failed even after retries.";
		case ERROR_DISK_RESET_FAILED:
			return "While accessing the hard disk, a disk controller reset was needed, but even that failed.";
		case ERROR_EOM_OVERFLOW:
			return "Physical end of tape encountered.";
		case ERROR_NOT_ENOUGH_SERVER_MEMORY:
			return "Not enough server storage is available to process this command.";
		case ERROR_POSSIBLE_DEADLOCK:
			return "A potential deadlock condition has been detected.";
		case ERROR_MAPPED_ALIGNMENT:
			return "The base address or the file offset specified does not have the proper alignment.";
		case ERROR_SET_POWER_STATE_VETOED:
			return "An attempt to change the system power state was vetoed by another application or driver.";
		case ERROR_SET_POWER_STATE_FAILED:
			return "The system BIOS failed an attempt to change the system power state.";
		case ERROR_TOO_MANY_LINKS:
			return "An attempt was made to create more links on a file than the file system supports.";
		case ERROR_OLD_WIN_VERSION:
			return "The specified program requires a newer version of Windows.";
		case ERROR_APP_WRONG_OS:
			return "The specified program is not a Windows or MS-DOS program.";
		case ERROR_SINGLE_INSTANCE_APP:
			return "Cannot start more than one instance of the specified program.";
		case ERROR_RMODE_APP:
			return "The specified program was written for an earlier version of Windows.";
		case ERROR_INVALID_DLL:
			return "One of the library files needed to run this application is damaged.";
		case ERROR_NO_ASSOCIATION:
			return "No application is associated with the specified file for this operation.";
		case ERROR_DDE_FAIL:
			return "An error occurred in sending the command to the application.";
		case ERROR_DLL_NOT_FOUND:
			return "One of the library files needed to run this application cannot be found.";
		case ERROR_NO_MORE_USER_HANDLES:
			return "The current process has used all of its system allowance of handles for Window Manager objects.";
		case ERROR_MESSAGE_SYNC_ONLY:
			return "The message can be used only with synchronous operations.";
		case ERROR_SOURCE_ELEMENT_EMPTY:
			return "The indicated source element has no media.";
		case ERROR_DESTINATION_ELEMENT_FULL:
			return "The indicated destination element already contains media.";
		case ERROR_ILLEGAL_ELEMENT_ADDRESS:
			return "The indicated element does not exist.";
		case ERROR_MAGAZINE_NOT_PRESENT:
			return "The indicated element is part of a magazine that is not present.";
		case ERROR_DEVICE_REINITIALIZATION_NEEDED:
			return "The indicated device requires reinitialization due to hardware errors.";
		case ERROR_DEVICE_REQUIRES_CLEANING:
			return "The device has indicated that cleaning is required before further operations are attempted.";
		case ERROR_DEVICE_DOOR_OPEN:
			return "The device has indicated that its door is open.";
		case ERROR_DEVICE_NOT_CONNECTED:
			return "The device is not connected.";
		case ERROR_NOT_FOUND:
			return "Element not found.";
		case ERROR_NO_MATCH:
			return "There was no match for the specified key in the index.";
		case ERROR_SET_NOT_FOUND:
			return "The property set specified does not exist on the object.";
		case ERROR_POINT_NOT_FOUND:
			return "The point passed to GetMouseMovePoints is not in the buffer.";
		case ERROR_NO_TRACKING_SERVICE:
			return "The tracking (workstation) service is not running.";
		case ERROR_NO_VOLUME_ID:
			return "The Volume ID could not be found.";
		case ERROR_UNABLE_TO_REMOVE_REPLACED:
			return "Unable to remove the file to be replaced.";
		case ERROR_UNABLE_TO_MOVE_REPLACEMENT:
			return "Unable to move the replacement file to the file to be replaced.The file to be replaced has retained its original name.";
		case ERROR_UNABLE_TO_MOVE_REPLACEMENT_2:
			return "Unable to move the replacement file to the file to be replaced.The file to be replaced has been renamed using the backup name.";
		case ERROR_JOURNAL_DELETE_IN_PROGRESS:
			return "The volume change journal is being deleted.";
		case ERROR_JOURNAL_NOT_ACTIVE:
			return "The volume change journal is not active.";
		case ERROR_POTENTIAL_FILE_FOUND:
			return "A file was found, but it may not be the correct file.";
		case ERROR_JOURNAL_ENTRY_DELETED:
			return "The journal entry has been deleted from the journal.";
		case ERROR_SHUTDOWN_IS_SCHEDULED:
			return "A system shutdown has already been scheduled.";
		case ERROR_SHUTDOWN_USERS_LOGGED_ON:
			return "The system shutdown cannot be initiated because there are other users logged on to the computer.";
		case ERROR_BAD_DEVICE:
			return "The specified device name is invalid.";
		case ERROR_CONNECTION_UNAVAIL:
			return "The device is not currently connected but it is a remembered connection.";
		case ERROR_DEVICE_ALREADY_REMEMBERED:
			return "The local device name has a remembered connection to another network resource.";
		case ERROR_NO_NET_OR_BAD_PATH:
			return "The network path was either typed incorrectly, does not exist, or the network provider is not currently available.Please try retyping the path or contact your network administrator.";
		case ERROR_BAD_PROVIDER:
			return "The specified network provider name is invalid.";
		case ERROR_CANNOT_OPEN_PROFILE:
			return "Unable to open the network connection profile.";
		case ERROR_BAD_PROFILE:
			return "The network connection profile is corrupted.";
		case ERROR_NOT_CONTAINER:
			return "Cannot enumerate a noncontainer.";
		case ERROR_EXTENDED_ERROR:
			return "An extended error has occurred.";
		case ERROR_INVALID_GROUPNAME:
			return "The format of the specified group name is invalid.";
		case ERROR_INVALID_COMPUTERNAME:
			return "The format of the specified computer name is invalid.";
		case ERROR_INVALID_EVENTNAME:
			return "The format of the specified event name is invalid.";
		case ERROR_INVALID_DOMAINNAME:
			return "The format of the specified domain name is invalid.";
		case ERROR_INVALID_SERVICENAME:
			return "The format of the specified service name is invalid.";
		case ERROR_INVALID_NETNAME:
			return "The format of the specified network name is invalid.";
		case ERROR_INVALID_SHARENAME:
			return "The format of the specified share name is invalid.";
		case ERROR_INVALID_PASSWORDNAME:
			return "The format of the specified password is invalid.";
		case ERROR_INVALID_MESSAGENAME:
			return "The format of the specified message name is invalid.";
		case ERROR_INVALID_MESSAGEDEST:
			return "The format of the specified message destination is invalid.";
		case ERROR_SESSION_CREDENTIAL_CONFLICT:
			return "Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed.Disconnect all previous connections to the server or shared resource and try again.";
		case ERROR_REMOTE_SESSION_LIMIT_EXCEEDED:
			return "An attempt was made to establish a session to a network server, but there are already too many sessions established to that server.";
		case ERROR_DUP_DOMAINNAME:
			return "The workgroup or domain name is already in use by another computer on the network.";
		case ERROR_NO_NETWORK:
			return "The network is not present or not started.";
		case ERROR_CANCELLED:
			return "The operation was canceled by the user.";
		case ERROR_USER_MAPPED_FILE:
			return "The requested operation cannot be performed on a file with a user-mapped section open.";
		case ERROR_CONNECTION_REFUSED:
			return "The remote computer refused the network connection.";
		case ERROR_GRACEFUL_DISCONNECT:
			return "The network connection was gracefully closed.";
		case ERROR_ADDRESS_ALREADY_ASSOCIATED:
			return "The network transport endpoint already has an address associated with it.";
		case ERROR_ADDRESS_NOT_ASSOCIATED:
			return "An address has not yet been associated with the network endpoint.";
		case ERROR_CONNECTION_INVALID:
			return "An operation was attempted on a nonexistent network connection.";
		case ERROR_CONNECTION_ACTIVE:
			return "An invalid operation was attempted on an active network connection.";
		case ERROR_NETWORK_UNREACHABLE:
			return "The network location cannot be reached.For information about network troubleshooting, see Windows Help.";
		case ERROR_HOST_UNREACHABLE:
			return "The network location cannot be reached.For information about network troubleshooting, see Windows Help.";
		case ERROR_PROTOCOL_UNREACHABLE:
			return "The network location cannot be reached.For information about network troubleshooting, see Windows Help.";
		case ERROR_PORT_UNREACHABLE:
			return "No service is operating at the destination network endpoint on the remote system.";
		case ERROR_REQUEST_ABORTED:
			return "The request was aborted.";
		case ERROR_CONNECTION_ABORTED:
			return "The network connection was aborted by the local system.";
		case ERROR_RETRY:
			return "The operation could not be completed.A retry should be performed.";
		case ERROR_CONNECTION_COUNT_LIMIT:
			return "A connection to the server could not be made because the limit on the number of concurrent connections for this account has been reached.";
		case ERROR_LOGIN_TIME_RESTRICTION:
			return "Attempting to log in during an unauthorized time of day for this account.";
		case ERROR_LOGIN_WKSTA_RESTRICTION:
			return "The account is not authorized to log in from this station.";
		case ERROR_INCORRECT_ADDRESS:
			return "The network address could not be used for the operation requested.";
		case ERROR_ALREADY_REGISTERED:
			return "The service is already registered.";
		case ERROR_SERVICE_NOT_FOUND:
			return "The specified service does not exist.";
		case ERROR_NOT_AUTHENTICATED:
			return "The operation being requested was not performed because the user has not been authenticated.";
		case ERROR_NOT_LOGGED_ON:
			return "The operation being requested was not performed because the user has not logged on to the network.The specified service does not exist.";
		case ERROR_CONTINUE:
			return "Continue with work in progress.";
		case ERROR_ALREADY_INITIALIZED:
			return "An attempt was made to perform an initialization operation when initialization has already been completed.";
		case ERROR_NO_MORE_DEVICES:
			return "No more local devices.";
		case ERROR_NO_SUCH_SITE:
			return "The specified site does not exist.";
		case ERROR_DOMAIN_CONTROLLER_EXISTS:
			return "A domain controller with the specified name already exists.";
		case ERROR_ONLY_IF_CONNECTED:
			return "This operation is supported only when you are connected to the server.";
		case ERROR_OVERRIDE_NOCHANGES:
			return "The group policy framework should call the extension even if there are no changes.";
		case ERROR_BAD_USER_PROFILE:
			return "The specified user does not have a valid profile.";
		case ERROR_NOT_SUPPORTED_ON_SBS:
			return "This operation is not supported on a computer running Windows Server 2003 for Small Business Server.";
		case ERROR_SERVER_SHUTDOWN_IN_PROGRESS:
			return "The server machine is shutting down.";
		case ERROR_HOST_DOWN:
			return "The remote system is not available.For information about network troubleshooting, see Windows Help.";
		case ERROR_NON_ACCOUNT_SID:
			return "The security identifier provided is not from an account domain.";
		case ERROR_NON_DOMAIN_SID:
			return "The security identifier provided does not have a domain component.";
		case ERROR_APPHELP_BLOCK:
			return "AppHelp dialog canceled thus preventing the application from starting.";
		case ERROR_ACCESS_DISABLED_BY_POLICY:
			return "This program is blocked by group policy.For more information, contact your system administrator.";
		case ERROR_REG_NAT_CONSUMPTION:
			return "A program attempt to use an invalid register value.Normally caused by an uninitialized register.This error is Itanium specific.";
		case ERROR_CSCSHARE_OFFLINE:
			return "The share is currently offline or does not exist.";
		case ERROR_PKINIT_FAILURE:
			return "The Kerberos protocol encountered an error while validating the KDC certificate during smartcard logon.There is more information in the system event log.";
		case ERROR_SMARTCARD_SUBSYSTEM_FAILURE:
			return "The Kerberos protocol encountered an error while attempting to utilize the smartcard subsystem.";
		case ERROR_DOWNGRADE_DETECTED:
			return "The system cannot contact a domain controller to service the authentication request.Please try again later.";
		case ERROR_MACHINE_LOCKED:
			return "The machine is locked and cannot be shut down without the force option.";
		case ERROR_CALLBACK_SUPPLIED_INVALID_DATA:
			return "An application-defined callback gave invalid data when called.";
		case ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED:
			return "The group policy framework should call the extension in the synchronous foreground policy refresh.";
		case ERROR_DRIVER_BLOCKED:
			return "This driver has been blocked from loading.";
		case ERROR_INVALID_IMPORT_OF_NON_DLL:
			return "A dynamic link library (DLL) referenced a module that was neither a DLL nor the process's executable image.";
		case ERROR_ACCESS_DISABLED_WEBBLADE:
			return "Windows cannot open this program since it has been disabled.";
		case ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER:
			return "Windows cannot open this program because the license enforcement system has been tampered with or become corrupted.";
		case ERROR_RECOVERY_FAILURE:
			return "A transaction recover failed.";
		case ERROR_ALREADY_FIBER:
			return "The current thread has already been converted to a fiber.";
		case ERROR_ALREADY_THREAD:
			return "The current thread has already been converted from a fiber.";
		case ERROR_STACK_BUFFER_OVERRUN:
			return "The system detected an overrun of a stack-based buffer in this application.This overrun could potentially allow a malicious user to gain control of this application.";
		case ERROR_PARAMETER_QUOTA_EXCEEDED:
			return "Data present in one of the parameters is more than the function can operate on.";
		case ERROR_DEBUGGER_INACTIVE:
			return "An attempt to do an operation on a debug object failed because the object is in the process of being deleted.";
		case ERROR_DELAY_LOAD_FAILED:
			return "An attempt to delay-load a .dll or get a function address in a delay-loaded .dll failed.";
		case ERROR_VDM_DISALLOWED:
			return "%1 is a 16-bit application.You do not have permissions to execute 16-bit applications.Check your permissions with your system administrator.";
		case ERROR_UNIDENTIFIED_ERROR:
			return "Insufficient information exists to identify the cause of failure.";
		case ERROR_INVALID_CRUNTIME_PARAMETER:
			return "The parameter passed to a C runtime function is incorrect.";
		case ERROR_BEYOND_VDL:
			return "The operation occurred beyond the valid data length of the file.";
		case ERROR_INCOMPATIBLE_SERVICE_SID_TYPE:
			return "The service start failed since one or more services in the same process have an incompatible service SID type setting.A service with restricted service SID type can only coexist in the same process with other services with a restricted SID type.If the service SID type for this service was just configured, the hosting process must be restarted in order to start this service.On Windows Server 2003 and Windows XP, an unrestricted service cannot coexist in the same process with other services.The service with the unrestricted service SID type must be moved to an owned process in order to start this service.";
		case ERROR_DRIVER_PROCESS_TERMINATED:
			return "The process hosting the driver for this device has been terminated.";
		case ERROR_IMPLEMENTATION_LIMIT:
			return "An operation attempted to exceed an implementation-defined limit.";
		case ERROR_PROCESS_IS_PROTECTED:
			return "Either the target process, or the target thread's containing process, is a protected process.";
		case ERROR_SERVICE_NOTIFY_CLIENT_LAGGING:
			return "The service notification client is lagging too far behind the current state of services in the machine.";
		case ERROR_DISK_QUOTA_EXCEEDED:
			return "The requested file operation failed because the storage quota was exceeded.To free up disk space, move files to a different location or delete unnecessary files.For more information, contact your system administrator.";
		case ERROR_CONTENT_BLOCKED:
			return "The requested file operation failed because the storage policy blocks that type of file.For more information, contact your system administrator.";
		case ERROR_INCOMPATIBLE_SERVICE_PRIVILEGE:
			return "A privilege that the service requires to function properly does not exist in the service account configuration.You may use the Services Microsoft Management Console (MMC) snap-in (services.msc) and the Local Security Settings MMC snap-in (secpol.msc) to view the service configuration and the account configuration.";
		case ERROR_APP_HANG:
			return "A thread involved in this operation appears to be unresponsive.";
		case ERROR_INVALID_LABEL:
			return "Indicates a particular Security ID may not be assigned as the label of an object.";
		case NOT_ALL_ASSIGNED:
			return "Not all privileges or groups referenced are assigned to the caller.";
		case ERROR_SOME_NOT_MAPPED:
			return "Some mapping between account names and security IDs was not done.";
		case ERROR_NO_QUOTAS_FOR_ACCOUNT:
			return "No system quota limits are specifically set for this account.";
		case ERROR_LOCAL_USER_SESSION_KEY:
			return "No encryption key is available.A well-known encryption key was return ed.";
		case ERROR_NULL_LM_PASSWORD:
			return "The password is too complex to be converted to a LAN Manager password.The LAN Manager password return ed is a NULL string.";
		case ERROR_UNKNOWN_REVISION:
			return "The revision level is unknown.";
		case ERROR_REVISION_MISMATCH:
			return "Indicates two revision levels are incompatible.";
		case ERROR_INVALID_OWNER:
			return "This security ID may not be assigned as the owner of this object.";
		case ERROR_INVALID_PRIMARY_GROUP:
			return "This security ID may not be assigned as the primary group of an object.";
		case ERROR_NO_IMPERSONATION_TOKEN:
			return "An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client.";
		case ERROR_CANT_DISABLE_MANDATORY:
			return "The group may not be disabled.";
		case ERROR_NO_LOGON_SERVERS:
			return "There are currently no logon servers available to service the logon request.";
		case ERROR_NO_SUCH_LOGON_SESSION:
			return "A specified logon session does not exist.It may already have been terminated.";
		case ERROR_NO_SUCH_PRIVILEGE:
			return "A specified privilege does not exist.";
		case ERROR_PRIVILEGE_NOT_HELD:
			return "A required privilege is not held by the client.";
		case ERROR_INVALID_ACCOUNT_NAME:
			return "The name provided is not a properly formed account name.";
		case ERROR_USER_EXISTS:
			return "The specified account already exists.";
		case ERROR_NO_SUCH_USER:
			return "The specified account does not exist.";
		case ERROR_GROUP_EXISTS:
			return "The specified group already exists.";
		case ERROR_NO_SUCH_GROUP:
			return "The specified group does not exist.";
		case ERROR_MEMBER_IN_GROUP:
			return "Either the specified user account is already a member of the specified group, or the specified group cannot be deleted because it contains a member.";
		case ERROR_MEMBER_NOT_IN_GROUP:
			return "The specified user account is not a member of the specified group account.";
		case ERROR_LAST_ADMIN:
			return "This operation is disallowed as it could result in an administration account being disabled, deleted or unable to log on.";
		case ERROR_WRONG_PASSWORD:
			return "Unable to update the password.The value provided as the current password is incorrect.";
		case ERROR_ILL_FORMED_PASSWORD:
			return "Unable to update the password.The value provided for the new password contains values that are not allowed in passwords.";
		case ERROR_PASSWORD_RESTRICTION:
			return "Unable to update the password.The value provided for the new password does not meet the length, complexity, or history requirements of the domain.";
		case ERROR_LOGON_FAILURE:
			return "The user name or password is incorrect.";
		case ERROR_ACCOUNT_RESTRICTION:
			return "Account restrictions are preventing this user from signing in.For example: blank passwords aren't allowed, sign-in times are limited, or a policy restriction has been enforced.";
		case ERROR_INVALID_LOGON_HOURS:
			return "Your account has time restrictions that keep you from signing in right now.";
		case ERROR_INVALID_WORKSTATION:
			return "This user isn't allowed to sign in to this computer.";
		case ERROR_PASSWORD_EXPIRED:
			return "The password for this account has expired.";
		case ERROR_ACCOUNT_DISABLED:
			return "This user can't sign in because this account is currently disabled.";
		case ERROR_NONE_MAPPED:
			return "No mapping between account names and security IDs was done.";
		case ERROR_TOO_MANY_LUIDS_REQUESTED:
			return "Too many local user identifiers (LUIDs) were requested at one time.";
		case ERROR_LUIDS_EXHAUSTED:
			return "No more local user identifiers (LUIDs) are available.";
		case ERROR_INVALID_SUB_AUTHORITY:
			return "The subauthority part of a security ID is invalid for this particular use.";
		case ERROR_INVALID_ACL:
			return "The access control list (ACL) structure is invalid.";
		case ERROR_INVALID_SID:
			return "The security ID structure is invalid.";
		case ERROR_INVALID_SECURITY_DESCR:
			return "The security descriptor structure is invalid.";
		case ERROR_BAD_INHERITANCE_ACL:
			return "The inherited access control list (ACL) or access control entry (ACE) could not be built.";
		case ERROR_SERVER_DISABLED:
			return "The server is currently disabled.";
		case ERROR_SERVER_NOT_DISABLED:
			return "The server is currently enabled.";
		case ERROR_INVALID_ID_AUTHORITY:
			return "The value provided was an invalid value for an identifier authority.";
		case ERROR_ALLOTTED_SPACE_EXCEEDED:
			return "No more memory is available for security information updates.";
		case ERROR_INVALID_GROUP_ATTRIBUTES:
			return "The specified attributes are invalid, or incompatible with the attributes for the group as a whole.";
		case ERROR_BAD_IMPERSONATION_LEVEL:
			return "Either a required impersonation level was not provided, or the provided impersonation level is invalid.";
		case ERROR_CANT_OPEN_ANONYMOUS:
			return "Cannot open an anonymous level security token.";
		case ERROR_BAD_VALIDATION_CLASS:
			return "The validation information class requested was invalid.";
		case ERROR_BAD_TOKEN_TYPE:
			return "The type of the token is inappropriate for its attempted use.";
		case ERROR_NO_SECURITY_ON_OBJECT:
			return "Unable to perform a security operation on an object that has no associated security.";
		case ERROR_CANT_ACCESS_DOMAIN_INFO:
			return "Configuration information could not be read from the domain controller, either because the machine is unavailable, or access has been denied.";
		case ERROR_INVALID_SERVER_STATE:
			return "The security account manager (SAM) or local security authority (LSA) server was in the wrong state to perform the security operation.";
		case ERROR_INVALID_DOMAIN_STATE:
			return "The domain was in the wrong state to perform the security operation.";
		case ERROR_INVALID_DOMAIN_ROLE:
			return "This operation is only allowed for the Primary Domain Controller of the domain.";
		case ERROR_NO_SUCH_DOMAIN:
			return "The specified domain either does not exist or could not be contacted.";
		case ERROR_DOMAIN_EXISTS:
			return "The specified domain already exists.";
		case ERROR_DOMAIN_LIMIT_EXCEEDED:
			return "An attempt was made to exceed the limit on the number of domains per server.";
		case ERROR_INTERNAL_DB_CORRUPTION:
			return "Unable to complete the requested operation because of either a catastrophic media failure or a data structure corruption on the disk.";
		case ERROR_INTERNAL_ERROR:
			return "An internal error occurred.";
		case ERROR_GENERIC_NOT_MAPPED:
			return "Generic access types were contained in an access mask which should already be mapped to nongeneric types.";
		case ERROR_BAD_DESCRIPTOR_FORMAT:
			return "A security descriptor is not in the right format (absolute or self-relative).";
		case ERROR_NOT_LOGON_PROCESS:
			return "The requested action is restricted for use by logon processes only.The calling process has not registered as a logon process.";
		case ERROR_LOGON_SESSION_EXISTS:
			return "Cannot start a new logon session with an ID that is already in use.";
		case ERROR_NO_SUCH_PACKAGE:
			return "A specified authentication package is unknown.";
		case ERROR_BAD_LOGON_SESSION_STATE:
			return "The logon session is not in a state that is consistent with the requested operation.";
		case ERROR_LOGON_SESSION_COLLISION:
			return "The logon session ID is already in use.";
		case ERROR_INVALID_LOGON_TYPE:
			return "A logon request contained an invalid logon type value.";
		case ERROR_CANNOT_IMPERSONATE:
			return "Unable to impersonate using a named pipe until data has been read from that pipe.";
		case ERROR_RXACT_INVALID_STATE:
			return "The transaction state of a registry subtree is incompatible with the requested operation.";
		case ERROR_RXACT_COMMIT_FAILURE:
			return "An internal security database corruption has been encountered.";
		case ERROR_SPECIAL_ACCOUNT:
			return "Cannot perform this operation on built-in accounts.";
		case ERROR_SPECIAL_GROUP:
			return "Cannot perform this operation on this built-in special group.";
		case ERROR_SPECIAL_USER:
			return "Cannot perform this operation on this built-in special user.";
		case ERROR_MEMBERS_PRIMARY_GROUP:
			return "The user cannot be removed from a group because the group is currently the user's primary group.";
		case ERROR_TOKEN_ALREADY_IN_USE:
			return "The token is already in use as a primary token.";
		case ERROR_NO_SUCH_ALIAS:
			return "The specified local group does not exist.";
		case ERROR_MEMBER_NOT_IN_ALIAS:
			return "The specified account name is not a member of the group.";
		case ERROR_MEMBER_IN_ALIAS:
			return "The specified account name is already a member of the group.";
		case ERROR_ALIAS_EXISTS:
			return "The specified local group already exists.";
		case ERROR_LOGON_NOT_GRANTED:
			return "Logon failure: the user has not been granted the requested logon type at this computer.";
		case ERROR_TOO_MANY_SECRETS:
			return "The maximum number of secrets that may be stored in a single system has been exceeded.";
		case ERROR_SECRET_TOO_LONG:
			return "The length of a secret exceeds the maximum length allowed.";
		case ERROR_INTERNAL_DB_ERROR:
			return "The local security authority database contains an internal inconsistency.";
		case ERROR_TOO_MANY_CONTEXT_IDS:
			return "During a logon attempt, the user's security context accumulated too many security IDs.";
		case ERROR_LOGON_TYPE_NOT_GRANTED:
			return "Logon failure: the user has not been granted the requested logon type at this computer.";
		case ERROR_NT_CROSS_ENCRYPTION_REQUIRED:
			return "A cross-encrypted password is necessary to change a user password.";
		case ERROR_NO_SUCH_MEMBER:
			return "A member could not be added to or removed from the local group because the member does not exist.";
		case ERROR_INVALID_MEMBER:
			return "A new member could not be added to a local group because the member has the wrong account type.";
		case ERROR_TOO_MANY_SIDS:
			return "Too many security IDs have been specified.";
		case ERROR_LM_CROSS_ENCRYPTION_REQUIRED:
			return "A cross-encrypted password is necessary to change this user password.";
		case ERROR_NO_INHERITANCE:
			return "Indicates an ACL contains no inheritable components.";
		case ERROR_FILE_CORRUPT:
			return "The file or directory is corrupted and unreadable.";
		case ERROR_DISK_CORRUPT:
			return "The disk structure is corrupted and unreadable.";
		case ERROR_NO_USER_SESSION_KEY:
			return "There is no user session key for the specified logon session.";
		case ERROR_LICENSE_QUOTA_EXCEEDED:
			return "The service being accessed is licensed for a particular number of connections.No more connections can be made to the service at this time because there are already as many connections as the service can accept.";
		case ERROR_WRONG_TARGET_NAME:
			return "The target account name is incorrect.";
		case ERROR_MUTUAL_AUTH_FAILED:
			return "Mutual Authentication failed.The server's password is out of date at the domain controller.";
		case ERROR_TIME_SKEW:
			return "There is a time and/or date difference between the client and server.";
		case ERROR_CURRENT_DOMAIN_NOT_ALLOWED:
			return "This operation cannot be performed on the current domain.";
		case ERROR_INVALID_WINDOW_HANDLE:
			return "Invalid window handle.";
		case ERROR_INVALID_MENU_HANDLE:
			return "Invalid menu handle.";
		case ERROR_INVALID_CURSOR_HANDLE:
			return "Invalid cursor handle.";
		case ERROR_INVALID_ACCEL_HANDLE:
			return "Invalid accelerator table handle.";
		case ERROR_INVALID_HOOK_HANDLE:
			return "Invalid hook handle.";
		case ERROR_INVALID_DWP_HANDLE:
			return "Invalid handle to a multiple-window position structure.";
		case ERROR_TLW_WITH_WSCHILD:
			return "Cannot create a top-level child window.";
		case ERROR_CANNOT_FIND_WND_CLASS:
			return "Cannot find window class.";
		case ERROR_WINDOW_OF_OTHER_THREAD:
			return "Invalid window; it belongs to other thread.";
		case ERROR_HOTKEY_ALREADY_REGISTERED:
			return "Hot key is already registered.";
		case ERROR_CLASS_ALREADY_EXISTS:
			return "Class already exists.";
		case ERROR_CLASS_DOES_NOT_EXIST:
			return "Class does not exist.";
		case ERROR_CLASS_HAS_WINDOWS:
			return "Class still has open windows.";
		case ERROR_INVALID_INDEX:
			return "Invalid index.";
		case ERROR_INVALID_ICON_HANDLE:
			return "Invalid icon handle.";
		case ERROR_PRIVATE_DIALOG_INDEX:
			return "Using private DIALOG window words.";
		case ERROR_LISTBOX_ID_NOT_FOUND:
			return "The list box identifier was not found.";
		case ERROR_NO_WILDCARD_CHARACTERS:
			return "No wildcards were found.";
		case ERROR_CLIPBOARD_NOT_OPEN:
			return "Thread does not have a clipboard open.";
		case ERROR_HOTKEY_NOT_REGISTERED:
			return "Hot key is not registered.";
		case ERROR_WINDOW_NOT_DIALOG:
			return "The window is not a valid dialog window.";
		case ERROR_CONTROL_ID_NOT_FOUND:
			return "Control ID not found.";
		case ERROR_INVALID_COMBOBOX_MESSAGE:
			return "Invalid message for a combo box because it does not have an edit control.";
		case ERROR_WINDOW_NOT_COMBOBOX:
			return "The window is not a combo box.";
		case ERROR_INVALID_EDIT_HEIGHT:
			return "Height must be less than 256.";
		case ERROR_DC_NOT_FOUND:
			return "Invalid device context (DC) handle.";
		case ERROR_INVALID_HOOK_FILTER:
			return "Invalid hook procedure type.";
		case ERROR_INVALID_FILTER_PROC:
			return "Invalid hook procedure.";
		case ERROR_HOOK_NEEDS_HMOD:
			return "Cannot set nonlocal hook without a module handle.";
		case ERROR_GLOBAL_ONLY_HOOK:
			return "This hook procedure can only be set globally.";
		case ERROR_JOURNAL_HOOK_SET:
			return "The journal hook procedure is already installed.";
		case ERROR_HOOK_NOT_INSTALLED:
			return "The hook procedure is not installed.";
		case ERROR_INVALID_LB_MESSAGE:
			return "Invalid message for single-selection list box.";
		case ERROR_SETCOUNT_ON_BAD_LB:
			return "LB_SETCOUNT sent to non-lazy list box.";
		case ERROR_LB_WITHOUT_TABSTOPS:
			return "This list box does not support tab stops.";
		case ERROR_DESTROY_OBJECT_OF_OTHER_THREAD:
			return "Cannot destroy object created by another thread.";
		case ERROR_CHILD_WINDOW_MENU:
			return "Child windows cannot have menus.";
		case ERROR_NO_SYSTEM_MENU:
			return "The window does not have a system menu.";
		case ERROR_INVALID_MSGBOX_STYLE:
			return "Invalid message box style.";
		case ERROR_INVALID_SPI_VALUE:
			return "Invalid system-wide (SPI_*) parameter.";
		case ERROR_SCREEN_ALREADY_LOCKED:
			return "Screen already locked.";
		case ERROR_HWNDS_HAVE_DIFF_PARENT:
			return "All handles to windows in a multiple-window position structure must have the same parent.";
		case ERROR_NOT_CHILD_WINDOW:
			return "The window is not a child window.";
		case ERROR_INVALID_GW_COMMAND:
			return "Invalid GW_* command.";
		case ERROR_INVALID_THREAD_ID:
			return "Invalid thread identifier.";
		case ERROR_NON_MDICHILD_WINDOW:
			return "Cannot process a message from a window that is not a multiple document interface (MDI) window.";
		case ERROR_POPUP_ALREADY_ACTIVE:
			return "Popup menu already active.";
		case ERROR_NO_SCROLLBARS:
			return "The window does not have scroll bars.";
		case ERROR_INVALID_SCROLLBAR_RANGE:
			return "Scroll bar range cannot be greater than MAXLONG.";
		case ERROR_INVALID_SHOWWIN_COMMAND:
			return "Cannot show or remove the window in the way specified.";
		case ERROR_NO_SYSTEM_RESOURCES:
			return "Insufficient system resources exist to complete the requested service.";
		case ERROR_NONPAGED_SYSTEM_RESOURCES:
			return "Insufficient system resources exist to complete the requested service.";
		case ERROR_PAGED_SYSTEM_RESOURCES:
			return "Insufficient system resources exist to complete the requested service.";
		case ERROR_WORKING_SET_QUOTA:
			return "Insufficient quota to complete the requested service.";
		case ERROR_PAGEFILE_QUOTA:
			return "Insufficient quota to complete the requested service.";
		case ERROR_COMMITMENT_LIMIT:
			return "The paging file is too small for this operation to complete.";
		case ERROR_MENU_ITEM_NOT_FOUND:
			return "A menu item was not found.";
		case ERROR_INVALID_KEYBOARD_HANDLE:
			return "Invalid keyboard layout handle.";
		case ERROR_HOOK_TYPE_NOT_ALLOWED:
			return "Hook type not allowed.";
		case ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION:
			return "This operation requires an interactive window station.";
		case ERROR_TIMEOUT:
			return "This operation return ed because the timeout period expired.";
		case ERROR_INVALID_MONITOR_HANDLE:
			return "Invalid monitor handle.";
		case ERROR_INCORRECT_SIZE:
			return "Incorrect size argument.";
		case ERROR_SYMLINK_CLASS_DISABLED:
			return "The symbolic link cannot be followed because its type is disabled.";
		case ERROR_SYMLINK_NOT_SUPPORTED:
			return "This application does not support the current operation on symbolic links.";
		case ERROR_XML_PARSE_ERROR:
			return "Windows was unable to parse the requested XML data.";
		case ERROR_XMLDSIG_ERROR:
			return "An error was encountered while processing an XML digital signature.";
		case ERROR_RESTART_APPLICATION:
			return "This application must be restarted.";
		case ERROR_WRONG_COMPARTMENT:
			return "The caller made the connection request in the wrong routing compartment.";
		case ERROR_AUTHIP_FAILURE:
			return "There was an AuthIP failure when attempting to connect to the remote host.";
		case ERROR_NO_NVRAM_RESOURCES:
			return "Insufficient NVRAM resources exist to complete the requested service.A reboot might be required.";
		case ERROR_NOT_GUI_PROCESS:
			return "Unable to finish the requested operation because the specified process is not a GUI process.";
		case ERROR_EVENTLOG_FILE_CORRUPT:
			return "The event log file is corrupted.";
		case ERROR_EVENTLOG_CANT_START:
			return "No event log file could be opened, so the event logging service did not start.";
		case ERROR_LOG_FILE_FULL:
			return "The event log file is full.";
		case ERROR_EVENTLOG_FILE_CHANGED:
			return "The event log file has changed between read operations.";
		case ERROR_INVALID_TASK_NAME:
			return "The specified task name is invalid.";
		case ERROR_INVALID_TASK_INDEX:
			return "The specified task index is invalid.";
		case ERROR_THREAD_ALREADY_IN_TASK:
			return "The specified thread is already joining a task.";
		case ERROR_INSTALL_SERVICE_FAILURE:
			return "The Windows Installer Service could not be accessed.This can occur if the Windows Installer is not correctly installed.Contact your support personnel for assistance.";
		case ERROR_INSTALL_USEREXIT:
			return "User cancelled installation.";
		case ERROR_INSTALL_FAILURE:
			return "Fatal error during installation.";
		case ERROR_INSTALL_SUSPEND:
			return "Installation suspended, incomplete.";
		case ERROR_UNKNOWN_PRODUCT:
			return "This action is only valid for products that are currently installed.";
		case ERROR_UNKNOWN_FEATURE:
			return "Feature ID not registered.";
		case ERROR_UNKNOWN_COMPONENT:
			return "Component ID not registered.";
		case ERROR_UNKNOWN_PROPERTY:
			return "Unknown property.";
		case ERROR_INVALID_HANDLE_STATE:
			return "Handle is in an invalid state.";
		case ERROR_BAD_CONFIGURATION:
			return "The configuration data for this product is corrupt.Contact your support personnel.";
		case ERROR_INDEX_ABSENT:
			return "Component qualifier not present.";
		case ERROR_INSTALL_SOURCE_ABSENT:
			return "The installation source for this product is not available.Verify that the source exists and that you can access it.";
		case ERROR_INSTALL_PACKAGE_VERSION:
			return "This installation package cannot be installed by the Windows Installer service.You must install a Windows service pack that contains a newer version of the Windows Installer service.";
		case ERROR_PRODUCT_UNINSTALLED:
			return "Product is uninstalled.";
		case ERROR_BAD_QUERY_SYNTAX:
			return "SQL query syntax invalid or unsupported.";
		case ERROR_INVALID_FIELD:
			return "Record field does not exist.";
		case ERROR_DEVICE_REMOVED:
			return "The device has been removed.";
		case ERROR_INSTALL_ALREADY_RUNNING:
			return "Another installation is already in progress.Complete that installation before proceeding with this install.";
		case ERROR_INSTALL_PACKAGE_OPEN_FAILED:
			return "This installation package could not be opened.Verify that the package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer package.";
		case ERROR_INSTALL_PACKAGE_INVALID:
			return "This installation package could not be opened.Contact the application vendor to verify that this is a valid Windows Installer package.";
		case ERROR_INSTALL_UI_FAILURE:
			return "There was an error starting the Windows Installer service user interface.Contact your support personnel.";
		case ERROR_INSTALL_LOG_FAILURE:
			return "Error opening installation log file.Verify that the specified log file location exists and that you can write to it.";
		case ERROR_INSTALL_LANGUAGE_UNSUPPORTED:
			return "The language of this installation package is not supported by your system.";
		case ERROR_INSTALL_TRANSFORM_FAILURE:
			return "Error applying transforms.Verify that the specified transform paths are valid.";
		case ERROR_INSTALL_PACKAGE_REJECTED:
			return "This installation is forbidden by system policy.Contact your system administrator.";
		case ERROR_FUNCTION_NOT_CALLED:
			return "Function could not be executed.";
		case ERROR_FUNCTION_FAILED:
			return "Function failed during execution.";
		case ERROR_INVALID_TABLE:
			return "Invalid or unknown table specified.";
		case ERROR_DATATYPE_MISMATCH:
			return "Data supplied is of wrong type.";
		case ERROR_UNSUPPORTED_TYPE:
			return "Data of this type is not supported.";
		case ERROR_CREATE_FAILED:
			return "The Windows Installer service failed to start.Contact your support personnel.";
		case ERROR_INSTALL_TEMP_UNWRITABLE:
			return "The Temp folder is on a drive that is full or is inaccessible.Free up space on the drive or verify that you have write permission on the Temp folder.";
		case ERROR_INSTALL_PLATFORM_UNSUPPORTED:
			return "This installation package is not supported by this processor type.Contact your product vendor.";
		case ERROR_INSTALL_NOTUSED:
			return "Component not used on this computer.";
		case ERROR_PATCH_PACKAGE_OPEN_FAILED:
			return "This update package could not be opened.Verify that the update package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer update package.";
		case ERROR_PATCH_PACKAGE_INVALID:
			return "This update package could not be opened.Contact the application vendor to verify that this is a valid Windows Installer update package.";
		case ERROR_PATCH_PACKAGE_UNSUPPORTED:
			return "This update package cannot be processed by the Windows Installer service.You must install a Windows service pack that contains a newer version of the Windows Installer service.";
		case ERROR_PRODUCT_VERSION:
			return "Another version of this product is already installed.Installation of this version cannot continue.To configure or remove the existing version of this product, use Add/Remove Programs on the Control Panel.";
		case ERROR_INVALID_COMMAND_LINE:
			return "Invalid command line argument.Consult the Windows Installer SDK for detailed command line help.";
		case ERROR_INSTALL_REMOTE_DISALLOWED:
			return "Only administrators have permission to add, remove, or configure server software during a Terminal services remote session.If you want to install or configure software on the server, contact your network administrator.";
		case ERROR_SUCCESS_REBOOT_INITIATED:
			return "The requested operation completed successfully.The system will be restarted so the changes can take effect.";
		case ERROR_PATCH_TARGET_NOT_FOUND:
			return "The upgrade cannot be installed by the Windows Installer service because the program to be upgraded may be missing, or the upgrade may update a different version of the program.Verify that the program to be upgraded exists on your computer and that you have the correct upgrade.";
		case ERROR_PATCH_PACKAGE_REJECTED:
			return "The update package is not permitted by software restriction policy.";
		case ERROR_INSTALL_TRANSFORM_REJECTED:
			return "One or more customizations are not permitted by software restriction policy.";
		case ERROR_INSTALL_REMOTE_PROHIBITED:
			return "The Windows Installer does not permit installation from a Remote Desktop Connection.";
		case ERROR_PATCH_REMOVAL_UNSUPPORTED:
			return "Uninstallation of the update package is not supported.";
		case ERROR_UNKNOWN_PATCH:
			return "The update is not applied to this product.";
		case ERROR_PATCH_NO_SEQUENCE:
			return "No valid sequence could be found for the set of updates.";
		case ERROR_PATCH_REMOVAL_DISALLOWED:
			return "Update removal was disallowed by policy.";
		case ERROR_INVALID_PATCH_XML:
			return "The XML update data is invalid.";
		case ERROR_PATCH_MANAGED_ADVERTISED_PRODUCT:
			return "Windows Installer does not permit updating of managed advertised products.At least one feature of the product must be installed before applying the update.";
		case ERROR_INSTALL_SERVICE_SAFEBOOT:
			return "The Windows Installer service is not accessible in Safe Mode.Please try again when your computer is not in Safe Mode or you can use System Restore to return  your machine to a previous good state.";
		case ERROR_FAIL_FAST_EXCEPTION:
			return "A fail fast exception occurred.Exception handlers will not be invoked and the process will be terminated immediately.";
		case ERROR_INSTALL_REJECTED:
			return "The app that you are trying to run is not supported on this version of Windows.";
		case RPC_S_INVALID_STRING_BINDING:
			return "The string binding is invalid.";
		case RPC_S_WRONG_KIND_OF_BINDING:
			return "The binding handle is not the correct type.";
		case RPC_S_INVALID_BINDING:
			return "The binding handle is invalid.";
		case RPC_S_PROTSEQ_NOT_SUPPORTED:
			return "The RPC protocol sequence is not supported.";
		case RPC_S_INVALID_RPC_PROTSEQ:
			return "The RPC protocol sequence is invalid.";
		case RPC_S_INVALID_STRING_UUID:
			return "The string universal unique identifier (UUID) is invalid.";
		case RPC_S_INVALID_ENDPOINT_FORMAT:
			return "The endpoint format is invalid.";
		case RPC_S_INVALID_NET_ADDR:
			return "The network address is invalid.";
		case RPC_S_NO_ENDPOINT_FOUND:
			return "No endpoint was found.";
		case RPC_S_INVALID_TIMEOUT:
			return "The timeout value is invalid.";
		case RPC_S_OBJECT_NOT_FOUND:
			return "The object universal unique identifier (UUID) was not found.";
		case RPC_S_ALREADY_REGISTERED:
			return "The object universal unique identifier (UUID) has already been registered.";
		case RPC_S_TYPE_ALREADY_REGISTERED:
			return "The type universal unique identifier (UUID) has already been registered.";
		case RPC_S_ALREADY_LISTENING:
			return "The RPC server is already listening.";
		case RPC_S_NO_PROTSEQS_REGISTERED:
			return "No protocol sequences have been registered.";
		case RPC_S_NOT_LISTENING:
			return "The RPC server is not listening.";
		case RPC_S_UNKNOWN_MGR_TYPE:
			return "The manager type is unknown.";
		case RPC_S_UNKNOWN_IF:
			return "The interface is unknown.";
		case RPC_S_NO_BINDINGS:
			return "There are no bindings.";
		case RPC_S_NO_PROTSEQS:
			return "There are no protocol sequences.";
		case RPC_S_CANT_CREATE_ENDPOINT:
			return "The endpoint cannot be created.";
		case RPC_S_OUT_OF_RESOURCES:
			return "Not enough resources are available to complete this operation.";
		case RPC_S_SERVER_UNAVAILABLE:
			return "The RPC server is unavailable.";
		case RPC_S_SERVER_TOO_BUSY:
			return "The RPC server is too busy to complete this operation.";
		case RPC_S_INVALID_NETWORK_OPTIONS:
			return "The network options are invalid.";
		case RPC_S_NO_CALL_ACTIVE:
			return "There are no remote procedure calls active on this thread.";
		case RPC_S_CALL_FAILED:
			return "The remote procedure call failed.";
		case RPC_S_CALL_FAILED_DNE:
			return "The remote procedure call failed and did not execute.";
		case RPC_S_PROTOCOL_ERROR:
			return "A remote procedure call (RPC) protocol error occurred.";
		case RPC_S_PROXY_ACCESS_DENIED:
			return "Access to the HTTP proxy is denied.";
		case RPC_S_UNSUPPORTED_TRANS_SYN:
			return "The transfer syntax is not supported by the RPC server.";
		case RPC_S_UNSUPPORTED_TYPE:
			return "The universal unique identifier (UUID) type is not supported.";
		case RPC_S_INVALID_TAG:
			return "The tag is invalid.";
		case RPC_S_INVALID_BOUND:
			return "The array bounds are invalid.";
		case RPC_S_NO_ENTRY_NAME:
			return "The binding does not contain an entry name.";
		case RPC_S_INVALID_NAME_SYNTAX:
			return "The name syntax is invalid.";
		case RPC_S_UNSUPPORTED_NAME_SYNTAX:
			return "The name syntax is not supported.";
		case RPC_S_UUID_NO_ADDRESS:
			return "No network address is available to use to construct a universal unique identifier (UUID).";
		case RPC_S_DUPLICATE_ENDPOINT:
			return "The endpoint is a duplicate.";
		case RPC_S_UNKNOWN_AUTHN_TYPE:
			return "The authentication type is unknown.";
		case RPC_S_MAX_CALLS_TOO_SMALL:
			return "The maximum number of calls is too small.";
		case RPC_S_STRING_TOO_LONG:
			return "The string is too long.";
		case RPC_S_PROTSEQ_NOT_FOUND:
			return "The RPC protocol sequence was not found.";
		case RPC_S_PROCNUM_OUT_OF_RANGE:
			return "The procedure number is out of range.";
		case RPC_S_BINDING_HAS_NO_AUTH:
			return "The binding does not contain any authentication information.";
		case RPC_S_UNKNOWN_AUTHN_SERVICE:
			return "The authentication service is unknown.";
		case RPC_S_UNKNOWN_AUTHN_LEVEL:
			return "The authentication level is unknown.";
		case RPC_S_INVALID_AUTH_IDENTITY:
			return "The security context is invalid.";
		case RPC_S_UNKNOWN_AUTHZ_SERVICE:
			return "The authorization service is unknown.";
		case EPT_S_INVALID_ENTRY:
			return "The entry is invalid.";
		case EPT_S_CANT_PERFORM_OP:
			return "The server endpoint cannot perform the operation.";
		case EPT_S_NOT_REGISTERED:
			return "There are no more endpoints available from the endpoint mapper.";
		case RPC_S_NOTHING_TO_EXPORT:
			return "No interfaces have been exported.";
		case RPC_S_INCOMPLETE_NAME:
			return "The entry name is incomplete.";
		case RPC_S_INVALID_VERS_OPTION:
			return "The version option is invalid.";
		case RPC_S_NO_MORE_MEMBERS:
			return "There are no more members.";
		case RPC_S_NOT_ALL_OBJS_UNEXPORTED:
			return "There is nothing to unexport.";
		case RPC_S_INTERFACE_NOT_FOUND:
			return "The interface was not found.";
		case RPC_S_ENTRY_ALREADY_EXISTS:
			return "The entry already exists.";
		case RPC_S_ENTRY_NOT_FOUND:
			return "The entry is not found.";
		case RPC_S_NAME_SERVICE_UNAVAILABLE:
			return "The name service is unavailable.";
		case RPC_S_INVALID_NAF_ID:
			return "The network address family is invalid.";
		case RPC_S_CANNOT_SUPPORT:
			return "The requested operation is not supported.";
		case RPC_S_NO_CONTEXT_AVAILABLE:
			return "No security context is available to allow impersonation.";
		case RPC_S_INTERNAL_ERROR:
			return "An internal error occurred in a remote procedure call (RPC).";
		case RPC_S_ZERO_DIVIDE:
			return "The RPC server attempted an integer division by zero.";
		case RPC_S_ADDRESS_ERROR:
			return "An addressing error occurred in the RPC server.";
		case RPC_S_FP_DIV_ZERO:
			return "A floating-point operation at the RPC server caused a division by zero.";
		case RPC_S_FP_UNDERFLOW:
			return "A floating-point underflow occurred at the RPC server.";
		case RPC_S_FP_OVERFLOW:
			return "A floating-point overflow occurred at the RPC server.";
		case RPC_X_NO_MORE_ENTRIES:
			return "The list of RPC servers available for the binding of auto handles has been exhausted.";
		case RPC_X_SS_CHAR_TRANS_OPEN_FAIL:
			return "Unable to open the character translation table file.";
		case RPC_X_SS_CHAR_TRANS_SHORT_FILE:
			return "The file containing the character translation table has fewer than 512 bytes.";
		case RPC_X_SS_IN_NULL_CONTEXT:
			return "A null context handle was passed from the client to the host during a remote procedure call.";
		case RPC_X_SS_CONTEXT_DAMAGED:
			return "The context handle changed during a remote procedure call.";
		case RPC_X_SS_HANDLES_MISMATCH:
			return "The binding handles passed to a remote procedure call do not match.";
		case RPC_X_SS_CANNOT_GET_CALL_HANDLE:
			return "The stub is unable to get the remote procedure call handle.";
		case RPC_X_NULL_REF_POINTER:
			return "A null reference pointer was passed to the stub.";
		case RPC_X_ENUM_VALUE_OUT_OF_RANGE:
			return "The enumeration value is out of range.";
		case RPC_X_BYTE_COUNT_TOO_SMALL:
			return "The byte count is too small.";
		case RPC_X_BAD_STUB_DATA:
			return "The stub received bad data.";
		case ERROR_INVALID_USER_BUFFER:
			return "The supplied user buffer is not valid for the requested operation.";
		case ERROR_UNRECOGNIZED_MEDIA:
			return "The disk media is not recognized.It may not be formatted.";
		case ERROR_NO_TRUST_LSA_SECRET:
			return "The workstation does not have a trust secret.";
		case ERROR_NO_TRUST_SAM_ACCOUNT:
			return "The security database on the server does not have a computer account for this workstation trust relationship.";
		case ERROR_TRUSTED_DOMAIN_FAILURE:
			return "The trust relationship between the primary domain and the trusted domain failed.";
		case ERROR_TRUSTED_RELATIONSHIP_FAILURE:
			return "The trust relationship between this workstation and the primary domain failed.";
		case ERROR_TRUST_FAILURE:
			return "The network logon failed.";
		case RPC_S_CALL_IN_PROGRESS:
			return "A remote procedure call is already in progress for this thread.";
		case ERROR_NETLOGON_NOT_STARTED:
			return "An attempt was made to logon, but the network logon service was not started.";
		case ERROR_ACCOUNT_EXPIRED:
			return "The user's account has expired.";
		case ERROR_REDIRECTOR_HAS_OPEN_HANDLES:
			return "The redirector is in use and cannot be unloaded.";
		case ERROR_PRINTER_DRIVER_ALREADY_INSTALLED:
			return "The specified printer driver is already installed.";
		case ERROR_UNKNOWN_PORT:
			return "The specified port is unknown.";
		case ERROR_UNKNOWN_PRINTER_DRIVER:
			return "The printer driver is unknown.";
		case ERROR_UNKNOWN_PRINTPROCESSOR:
			return "The print processor is unknown.";
		case ERROR_INVALID_SEPARATOR_FILE:
			return "The specified separator file is invalid.";
		case ERROR_INVALID_PRIORITY:
			return "The specified priority is invalid.";
		case ERROR_INVALID_PRINTER_NAME:
			return "The printer name is invalid.";
		case ERROR_PRINTER_ALREADY_EXISTS:
			return "The printer already exists.";
		case ERROR_INVALID_PRINTER_COMMAND:
			return "The printer command is invalid.";
		case ERROR_INVALID_DATATYPE:
			return "The specified datatype is invalid.";
		case ERROR_INVALID_ENVIRONMENT:
			return "The environment specified is invalid.";
		case RPC_S_NO_MORE_BINDINGS:
			return "There are no more bindings.";
		case ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT:
			return "The account used is an interdomain trust account.Use your global user account or local user account to access this server.";
		case ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT:
			return "The account used is a computer account.Use your global user account or local user account to access this server.";
		case ERROR_NOLOGON_SERVER_TRUST_ACCOUNT:
			return "The account used is a server trust account.Use your global user account or local user account to access this server.";
		case ERROR_DOMAIN_TRUST_INCONSISTENT:
			return "The name or security ID (SID) of the domain specified is inconsistent with the trust information for that domain.";
		case ERROR_SERVER_HAS_OPEN_HANDLES:
			return "The server is in use and cannot be unloaded.";
		case ERROR_RESOURCE_DATA_NOT_FOUND:
			return "The specified image file did not contain a resource section.";
		case ERROR_RESOURCE_TYPE_NOT_FOUND:
			return "The specified resource type cannot be found in the image file.";
		case ERROR_RESOURCE_NAME_NOT_FOUND:
			return "The specified resource name cannot be found in the image file.";
		case ERROR_RESOURCE_LANG_NOT_FOUND:
			return "The specified resource language ID cannot be found in the image file.";
		case ERROR_NOT_ENOUGH_QUOTA:
			return "Not enough quota is available to process this command.";
		case RPC_S_NO_INTERFACES:
			return "No interfaces have been registered.";
		case RPC_S_CALL_CANCELLED:
			return "The remote procedure call was cancelled.";
		case RPC_S_BINDING_INCOMPLETE:
			return "The binding handle does not contain all required information.";
		case RPC_S_COMM_FAILURE:
			return "A communications failure occurred during a remote procedure call.";
		case RPC_S_UNSUPPORTED_AUTHN_LEVEL:
			return "The requested authentication level is not supported.";
		case RPC_S_NO_PRINC_NAME:
			return "No principal name registered.";
		case RPC_S_NOT_RPC_ERROR:
			return "The error specified is not a valid Windows RPC error code.";
		case RPC_S_UUID_LOCAL_ONLY:
			return "A UUID that is valid only on this computer has been allocated.";
		case RPC_S_SEC_PKG_ERROR:
			return "A security package specific error occurred.";
		case RPC_S_NOT_CANCELLED:
			return "Thread is not canceled.";
		case RPC_X_INVALID_ES_ACTION:
			return "Invalid operation on the encoding/decoding handle.";
		case RPC_X_WRONG_ES_VERSION:
			return "Incompatible version of the serializing package.";
		case RPC_X_WRONG_STUB_VERSION:
			return "Incompatible version of the RPC stub.";
		case RPC_X_INVALID_PIPE_OBJECT:
			return "The RPC pipe object is invalid or corrupted.";
		case RPC_X_WRONG_PIPE_ORDER:
			return "An invalid operation was attempted on an RPC pipe object.";
		case RPC_X_WRONG_PIPE_VERSION:
			return "Unsupported RPC pipe version.";
		case RPC_S_COOKIE_AUTH_FAILED:
			return "HTTP proxy server rejected the connection because the cookie authentication failed.";
		case RPC_S_GROUP_MEMBER_NOT_FOUND:
			return "The group member was not found.";
		case EPT_S_CANT_CREATE:
			return "The endpoint mapper database entry could not be created.";
		case RPC_S_INVALID_OBJECT:
			return "The object universal unique identifier (UUID) is the nil UUID.";
		case ERROR_INVALID_TIME:
			return "The specified time is invalid.";
		case ERROR_INVALID_FORM_NAME:
			return "The specified form name is invalid.";
		case ERROR_INVALID_FORM_SIZE:
			return "The specified form size is invalid.";
		case ERROR_ALREADY_WAITING:
			return "The specified printer handle is already being waited on.";
		case ERROR_PRINTER_DELETED:
			return "The specified printer has been deleted.";
		case ERROR_INVALID_PRINTER_STATE:
			return "The state of the printer is invalid.";
		case ERROR_PASSWORD_MUST_CHANGE:
			return "The user's password must be changed before signing in.";
		case ERROR_DOMAIN_CONTROLLER_NOT_FOUND:
			return "Could not find the domain controller for this domain.";
		case ERROR_ACCOUNT_LOCKED_OUT:
			return "The referenced account is currently locked out and may not be logged on to.";
		case OR_INVALID_OXID:
			return "The object exporter specified was not found.";
		case OR_INVALID_OID:
			return "The object specified was not found.";
		case OR_INVALID_SET:
			return "The object resolver set specified was not found.";
		case RPC_S_SEND_INCOMPLETE:
			return "Some data remains to be sent in the request buffer.";
		case RPC_S_INVALID_ASYNC_HANDLE:
			return "Invalid asynchronous remote procedure call handle.";
		case RPC_S_INVALID_ASYNC_CALL:
			return "Invalid asynchronous RPC call handle for this operation.";
		case RPC_X_PIPE_CLOSED:
			return "The RPC pipe object has already been closed.";
		case RPC_X_PIPE_DISCIPLINE_ERROR:
			return "The RPC call completed before all pipes were processed.";
		case RPC_X_PIPE_EMPTY:
			return "No more data is available from the RPC pipe.";
		case ERROR_NO_SITENAME:
			return "No site name is available for this machine.";
		case ERROR_CANT_ACCESS_FILE:
			return "The file cannot be accessed by the system.";
		case ERROR_CANT_RESOLVE_FILENAME:
			return "The name of the file cannot be resolved by the system.";
		case RPC_S_ENTRY_TYPE_MISMATCH:
			return "The entry is not of the expected type.";
		case RPC_S_NOT_ALL_OBJS_EXPORTED:
			return "Not all object UUIDs could be exported to the specified entry.";
		case RPC_S_INTERFACE_NOT_EXPORTED:
			return "Interface could not be exported to the specified entry.";
		case RPC_S_PROFILE_NOT_ADDED:
			return "The specified profile entry could not be added.";
		case RPC_S_PRF_ELT_NOT_ADDED:
			return "The specified profile element could not be added.";
		case RPC_S_PRF_ELT_NOT_REMOVED:
			return "The specified profile element could not be removed.";
		case RPC_S_GRP_ELT_NOT_ADDED:
			return "The group element could not be added.";
		case RPC_S_GRP_ELT_NOT_REMOVED:
			return "The group element could not be removed.";
		case ERROR_KM_DRIVER_BLOCKED:
			return "The printer driver is not compatible with a policy enabled on your computer that blocks NT 4.0 drivers.";
		case ERROR_CONTEXT_EXPIRED:
			return "The context has expired and can no longer be used.";
		case ERROR_PER_USER_TRUST_QUOTA_EXCEEDED:
			return "The current user's delegated trust creation quota has been exceeded.";
		case ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED:
			return "The total delegated trust creation quota has been exceeded.";
		case ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED:
			return "The current user's delegated trust deletion quota has been exceeded.";
		case ERROR_AUTHENTICATION_FIREWALL_FAILED:
			return "The computer you are signing into is protected by an authentication firewall.The specified account is not allowed to authenticate to the computer.";
		case ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED:
			return "Remote connections to the Print Spooler are blocked by a policy set on your machine.";
		case ERROR_NTLM_BLOCKED:
			return "Authentication failed because NTLM authentication has been disabled.";
		case ERROR_PASSWORD_CHANGE_REQUIRED:
			return "Logon Failure: EAS policy requires that the user change their password before this operation can be performed.";
		case ERROR_INVALID_PIXEL_FORMAT:
			return "The pixel format is invalid.";
		case ERROR_BAD_DRIVER:
			return "The specified driver is invalid.";
		case ERROR_INVALID_WINDOW_STYLE:
			return "The window style or class attribute is invalid for this operation.";
		case ERROR_METAFILE_NOT_SUPPORTED:
			return "The requested metafile operation is not supported.";
		case ERROR_TRANSFORM_NOT_SUPPORTED:
			return "The requested transformation operation is not supported.";
		case ERROR_CLIPPING_NOT_SUPPORTED:
			return "The requested clipping operation is not supported.";
		case ERROR_INVALID_CMM:
			return "The specified color management module is invalid.";
		case ERROR_INVALID_PROFILE:
			return "The specified color profile is invalid.";
		case ERROR_TAG_NOT_FOUND:
			return "The specified tag was not found.";
		case ERROR_TAG_NOT_PRESENT:
			return "A required tag is not present.";
		case ERROR_DUPLICATE_TAG:
			return "The specified tag is already present.";
		case ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE:
			return "The specified color profile is not associated with the specified device.";
		case ERROR_PROFILE_NOT_FOUND:
			return "The specified color profile was not found.";
		case ERROR_INVALID_COLORSPACE:
			return "The specified color space is invalid.";
		case ERROR_ICM_NOT_ENABLED:
			return "Image Color Management is not enabled.";
		case ERROR_DELETING_ICM_XFORM:
			return "There was an error while deleting the color transform.";
		case ERROR_INVALID_TRANSFORM:
			return "The specified color transform is invalid.";
		case ERROR_COLORSPACE_MISMATCH:
			return "The specified transform does not match the bitmap's color space.";
		case ERROR_INVALID_COLORINDEX:
			return "The specified named color index is not present in the profile.";
		case ERROR_PROFILE_DOES_NOT_MATCH_DEVICE:
			return "The specified profile is intended for a device of a different type than the specified device.";
		case ERROR_CONNECTED_OTHER_PASSWORD:
			return "The network connection was made successfully, but the user had to be prompted for a password other than the one originally specified.";
		case ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT:
			return "The network connection was made successfully using default credentials.";
		case ERROR_BAD_USERNAME:
			return "The specified username is invalid.";
		case ERROR_NOT_CONNECTED:
			return "This network connection does not exist.";
		case ERROR_OPEN_FILES:
			return "This network connection has files open or requests pending.";
		case ERROR_ACTIVE_CONNECTIONS:
			return "Active connections still exist.";
		case ERROR_DEVICE_IN_USE:
			return "The device is in use by an active process and cannot be disconnected.";
		case ERROR_UNKNOWN_PRINT_MONITOR:
			return "The specified print monitor is unknown.";
		case ERROR_PRINTER_DRIVER_IN_USE:
			return "The specified printer driver is currently in use.";
		case ERROR_SPOOL_FILE_NOT_FOUND:
			return "The spool file was not found.";
		case ERROR_SPL_NO_STARTDOC:
			return "A StartDocPrinter call was not issued.";
		case ERROR_SPL_NO_ADDJOB:
			return "An AddJob call was not issued.";
		case ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED:
			return "The specified print processor has already been installed.";
		case ERROR_PRINT_MONITOR_ALREADY_INSTALLED:
			return "The specified print monitor has already been installed.";
		case ERROR_INVALID_PRINT_MONITOR:
			return "The specified print monitor does not have the required functions.";
		case ERROR_PRINT_MONITOR_IN_USE:
			return "The specified print monitor is currently in use.";
		case ERROR_PRINTER_HAS_JOBS_QUEUED:
			return "The requested operation is not allowed when there are jobs queued to the printer.";
		case ERROR_SUCCESS_REBOOT_REQUIRED:
			return "The requested operation is successful.Changes will not be effective until the system is rebooted.";
		case ERROR_SUCCESS_RESTART_REQUIRED:
			return "The requested operation is successful.Changes will not be effective until the service is restarted.";
		case ERROR_PRINTER_NOT_FOUND:
			return "No printers were found.";
		case ERROR_PRINTER_DRIVER_WARNED:
			return "The printer driver is known to be unreliable.";
		case ERROR_PRINTER_DRIVER_BLOCKED:
			return "The printer driver is known to harm the system.";
		case ERROR_PRINTER_DRIVER_PACKAGE_IN_USE:
			return "The specified printer driver package is currently in use.";
		case ERROR_CORE_DRIVER_PACKAGE_NOT_FOUND:
			return "Unable to find a core driver package that is required by the printer driver package.";
		case ERROR_FAIL_REBOOT_REQUIRED:
			return "The requested operation failed.A system reboot is required to roll back changes made.";
		case ERROR_FAIL_REBOOT_INITIATED:
			return "The requested operation failed.A system reboot has been initiated to roll back changes made.";
		case ERROR_PRINTER_DRIVER_DOWNLOAD_NEEDED:
			return "The specified printer driver was not found on the system and needs to be downloaded.";
		case ERROR_PRINT_JOB_RESTART_REQUIRED:
			return "The requested print job has failed to print.A print system update requires the job to be resubmitted.";
		case ERROR_INVALID_PRINTER_DRIVER_MANIFEST:
			return "The printer driver does not contain a valid manifest, or contains too many manifests.";
		case ERROR_PRINTER_NOT_SHAREABLE:
			return "The specified printer cannot be shared.";
		case ERROR_REQUEST_PAUSED:
			return "The operation was paused.";
		case ERROR_IO_REISSUE_AS_CACHED:
			return "Reissue the given operation as a cached IO operation.";
		case ERROR_WINS_INTERNAL:
			return "WINS encountered an error while processing the command.";
		case ERROR_CAN_NOT_DEL_LOCAL_WINS:
			return "The local WINS cannot be deleted.";
		case ERROR_STATIC_INIT:
			return "The importation from the file failed.";
		case ERROR_INC_BACKUP:
			return "The backup failed.Was a full backup done before?";
		case ERROR_FULL_BACKUP:
			return "The backup failed.Check the directory to which you are backing the database.";
		case ERROR_REC_NON_EXISTENT:
			return "The name does not exist in the WINS database.";
		case ERROR_RPL_NOT_ALLOWED:
			return "Replication with a nonconfigured partner is not allowed.";
		case PEERDIST_ERROR_CONTENTINFO_VERSION_UNSUPPORTED:
			return "The version of the supplied content information is not supported.";
		case PEERDIST_ERROR_CANNOT_PARSE_CONTENTINFO:
			return "The supplied content information is malformed.";
		case PEERDIST_ERROR_MISSING_DATA:
			return "The requested data cannot be found in local or peer caches.";
		case PEERDIST_ERROR_NO_MORE:
			return "No more data is available or required.";
		case PEERDIST_ERROR_NOT_INITIALIZED:
			return "The supplied object has not been initialized.";
		case PEERDIST_ERROR_ALREADY_INITIALIZED:
			return "The supplied object has already been initialized.";
		case PEERDIST_ERROR_SHUTDOWN_IN_PROGRESS:
			return "A shutdown operation is already in progress.";
		case PEERDIST_ERROR_INVALIDATED:
			return "The supplied object has already been invalidated.";
		case PEERDIST_ERROR_ALREADY_EXISTS:
			return "An element already exists and was not replaced.";
		case PEERDIST_ERROR_OPERATION_NOTFOUND:
			return "Can not cancel the requested operation as it has already been completed.";
		case PEERDIST_ERROR_ALREADY_COMPLETED:
			return "Can not perform the reqested operation because it has already been carried out.";
		case PEERDIST_ERROR_OUT_OF_BOUNDS:
			return "An operation accessed data beyond the bounds of valid data.";
		case PEERDIST_ERROR_VERSION_UNSUPPORTED:
			return "The requested version is not supported.";
		case PEERDIST_ERROR_INVALID_CONFIGURATION:
			return "A configuration value is invalid.";
		case PEERDIST_ERROR_NOT_LICENSED:
			return "The SKU is not licensed.";
		case PEERDIST_ERROR_SERVICE_UNAVAILABLE:
			return "PeerDist Service is still initializing and will be available shortly.";
		case PEERDIST_ERROR_TRUST_FAILURE:
			return "Communication with one or more computers will be temporarily blocked due to recent errors.";
		case ERROR_DHCP_ADDRESS_CONFLICT:
			return "The DHCP client has obtained an IP address that is already in use on the network.The local interface will be disabled until the DHCP client can obtain a new address.";
		case ERROR_WMI_GUID_NOT_FOUND:
			return "The GUID passed was not recognized as valid by a WMI data provider.";
		case ERROR_WMI_INSTANCE_NOT_FOUND:
			return "The instance name passed was not recognized as valid by a WMI data provider.";
		case ERROR_WMI_ITEMID_NOT_FOUND:
			return "The data item ID passed was not recognized as valid by a WMI data provider.";
		case ERROR_WMI_TRY_AGAIN:
			return "The WMI request could not be completed and should be retried.";
		case ERROR_WMI_DP_NOT_FOUND:
			return "The WMI data provider could not be located.";
		case ERROR_WMI_UNRESOLVED_INSTANCE_REF:
			return "The WMI data provider references an instance set that has not been registered.";
		case ERROR_WMI_ALREADY_ENABLED:
			return "The WMI data block or event notification has already been enabled.";
		case ERROR_WMI_GUID_DISCONNECTED:
			return "The WMI data block is no longer available.";
		case ERROR_WMI_SERVER_UNAVAILABLE:
			return "The WMI data service is not available.";
		case ERROR_WMI_DP_FAILED:
			return "The WMI data provider failed to carry out the request.";
		case ERROR_WMI_INVALID_MOF:
			return "The WMI MOF information is not valid.";
		case ERROR_WMI_INVALID_REGINFO:
			return "The WMI registration information is not valid.";
		case ERROR_WMI_ALREADY_DISABLED:
			return "The WMI data block or event notification has already been disabled.";
		case ERROR_WMI_READ_ONLY:
			return "The WMI data item or data block is read only.";
		case ERROR_WMI_SET_FAILURE:
			return "The WMI data item or data block could not be changed.";
		case ERROR_NOT_APPCONTAINER:
			return "This operation is only valid in the context of an app container.";
		case ERROR_APPCONTAINER_REQUIRED:
			return "This application can only run in the context of an app container.";
		case ERROR_NOT_SUPPORTED_IN_APPCONTAINER:
			return "This functionality is not supported in the context of an app container.";
		case ERROR_INVALID_PACKAGE_SID_LENGTH:
			return "The length of the SID supplied is not a valid length for app container SIDs.";
		case ERROR_INVALID_MEDIA:
			return "The media identifier does not represent a valid medium.";
		case ERROR_INVALID_LIBRARY:
			return "The library identifier does not represent a valid library.";
		case ERROR_INVALID_MEDIA_POOL:
			return "The media pool identifier does not represent a valid media pool.";
		case ERROR_DRIVE_MEDIA_MISMATCH:
			return "The drive and medium are not compatible or exist in different libraries.";
		case ERROR_MEDIA_OFFLINE:
			return "The medium currently exists in an offline library and must be online to perform this operation.";
		case ERROR_LIBRARY_OFFLINE:
			return "The operation cannot be performed on an offline library.";
		case ERROR_EMPTY:
			return "The library, drive, or media pool is empty.";
		case ERROR_NOT_EMPTY:
			return "The library, drive, or media pool must be empty to perform this operation.";
		case ERROR_MEDIA_UNAVAILABLE:
			return "No media is currently available in this media pool or library.";
		case ERROR_RESOURCE_DISABLED:
			return "A resource required for this operation is disabled.";
		case ERROR_INVALID_CLEANER:
			return "The media identifier does not represent a valid cleaner.";
		case ERROR_UNABLE_TO_CLEAN:
			return "The drive cannot be cleaned or does not support cleaning.";
		case ERROR_OBJECT_NOT_FOUND:
			return "The object identifier does not represent a valid object.";
		case ERROR_DATABASE_FAILURE:
			return "Unable to read from or write to the database.";
		case ERROR_DATABASE_FULL:
			return "The database is full.";
		case ERROR_MEDIA_INCOMPATIBLE:
			return "The medium is not compatible with the device or media pool.";
		case ERROR_RESOURCE_NOT_PRESENT:
			return "The resource required for this operation does not exist.";
		case ERROR_INVALID_OPERATION:
			return "The operation identifier is not valid.";
		case ERROR_MEDIA_NOT_AVAILABLE:
			return "The media is not mounted or ready for use.";
		case ERROR_DEVICE_NOT_AVAILABLE:
			return "The device is not ready for use.";
		case ERROR_REQUEST_REFUSED:
			return "The operator or administrator has refused the request.";
		case ERROR_INVALID_DRIVE_OBJECT:
			return "The drive identifier does not represent a valid drive.";
		case ERROR_LIBRARY_FULL:
			return "Library is full.No slot is available for use.";
		case ERROR_MEDIUM_NOT_ACCESSIBLE:
			return "The transport cannot access the medium.";
		case ERROR_UNABLE_TO_LOAD_MEDIUM:
			return "Unable to load the medium into the drive.";
		case ERROR_UNABLE_TO_INVENTORY_DRIVE:
			return "Unable to retrieve the drive status.";
		case ERROR_UNABLE_TO_INVENTORY_SLOT:
			return "Unable to retrieve the slot status.";
		case ERROR_UNABLE_TO_INVENTORY_TRANSPORT:
			return "Unable to retrieve status about the transport.";
		case ERROR_TRANSPORT_FULL:
			return "Cannot use the transport because it is already in use.";
		case ERROR_CONTROLLING_IEPORT:
			return "Unable to open or close the inject/eject port.";
		case ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA:
			return "Unable to eject the medium because it is in a drive.";
		case ERROR_CLEANER_SLOT_SET:
			return "A cleaner slot is already reserved.";
		case ERROR_CLEANER_SLOT_NOT_SET:
			return "A cleaner slot is not reserved.";
		case ERROR_CLEANER_CARTRIDGE_SPENT:
			return "The cleaner cartridge has performed the maximum number of drive cleanings.";
		case ERROR_UNEXPECTED_OMID:
			return "Unexpected on-medium identifier.";
		case ERROR_CANT_DELETE_LAST_ITEM:
			return "The last remaining item in this group or resource cannot be deleted.";
		case ERROR_MESSAGE_EXCEEDS_MAX_SIZE:
			return "The message provided exceeds the maximum size allowed for this parameter.";
		case ERROR_VOLUME_CONTAINS_SYS_FILES:
			return "The volume contains system or paging files.";
		case ERROR_INDIGENOUS_TYPE:
			return "The media type cannot be removed from this library since at least one drive in the library reports it can support this media type.";
		case ERROR_NO_SUPPORTING_DRIVES:
			return "This offline media cannot be mounted on this system since no enabled drives are present which can be used.";
		case ERROR_CLEANER_CARTRIDGE_INSTALLED:
			return "A cleaner cartridge is present in the tape library.";
		case ERROR_IEPORT_FULL:
			return "Cannot use the inject/eject port because it is not empty.";
		case ERROR_FILE_OFFLINE:
			return "This file is currently not available for use on this computer.";
		case ERROR_REMOTE_STORAGE_NOT_ACTIVE:
			return "The remote storage service is not operational at this time.";
		case ERROR_REMOTE_STORAGE_MEDIA_ERROR:
			return "The remote storage service encountered a media error.";
		case ERROR_NOT_A_REPARSE_POINT:
			return "The file or directory is not a reparse point.";
		case ERROR_REPARSE_ATTRIBUTE_CONFLICT:
			return "The reparse point attribute cannot be set because it conflicts with an existing attribute.";
		case ERROR_INVALID_REPARSE_DATA:
			return "The data present in the reparse point buffer is invalid.";
		case ERROR_REPARSE_TAG_INVALID:
			return "The tag present in the reparse point buffer is invalid.";
		case ERROR_REPARSE_TAG_MISMATCH:
			return "There is a mismatch between the tag specified in the request and the tag present in the reparse point.";
		case ERROR_APP_DATA_NOT_FOUND:
			return "Fast Cache data not found.";
		case ERROR_APP_DATA_EXPIRED:
			return "Fast Cache data expired.";
		case ERROR_APP_DATA_CORRUPT:
			return "Fast Cache data corrupt.";
		case ERROR_APP_DATA_LIMIT_EXCEEDED:
			return "Fast Cache data has exceeded its max size and cannot be updated.";
		case ERROR_APP_DATA_REBOOT_REQUIRED:
			return "Fast Cache has been ReArmed and requires a reboot until it can be updated.";
		case ERROR_SECUREBOOT_ROLLBACK_DETECTED:
			return "Secure Boot detected that rollback of protected data has been attempted.";
		case ERROR_SECUREBOOT_POLICY_VIOLATION:
			return "The value is protected by Secure Boot policy and cannot be modified or deleted.";
		case ERROR_SECUREBOOT_INVALID_POLICY:
			return "The Secure Boot policy is invalid.";
		case ERROR_SECUREBOOT_POLICY_PUBLISHER_NOT_FOUND:
			return "A new Secure Boot policy did not contain the current publisher on its update list.";
		case ERROR_SECUREBOOT_POLICY_NOT_SIGNED:
			return "The Secure Boot policy is either not signed or is signed by a non-trusted signer.";
		case ERROR_SECUREBOOT_NOT_ENABLED:
			return "Secure Boot is not enabled on this machine.";
		case ERROR_SECUREBOOT_FILE_REPLACED:
			return "Secure Boot requires that certain files and drivers are not replaced by other files or drivers.";
		case ERROR_OFFLOAD_READ_FLT_NOT_SUPPORTED:
			return "The copy offload read operation is not supported by a filter.";
		case ERROR_OFFLOAD_WRITE_FLT_NOT_SUPPORTED:
			return "The copy offload write operation is not supported by a filter.";
		case ERROR_OFFLOAD_READ_FILE_NOT_SUPPORTED:
			return "The copy offload read operation is not supported for the file.";
		case ERROR_OFFLOAD_WRITE_FILE_NOT_SUPPORTED:
			return "The copy offload write operation is not supported for the file.";
		case ERROR_VOLUME_NOT_SIS_ENABLED:
			return "Single Instance Storage is not available on this volume.";
		case ERROR_DEPENDENT_RESOURCE_EXISTS:
			return "The operation cannot be completed because other resources are dependent on this resource.";
		case ERROR_DEPENDENCY_NOT_FOUND:
			return "The cluster resource dependency cannot be found.";
		case ERROR_DEPENDENCY_ALREADY_EXISTS:
			return "The cluster resource cannot be made dependent on the specified resource because it is already dependent.";
		case ERROR_RESOURCE_NOT_ONLINE:
			return "The cluster resource is not online.";
		case ERROR_HOST_NODE_NOT_AVAILABLE:
			return "A cluster node is not available for this operation.";
		case ERROR_RESOURCE_NOT_AVAILABLE:
			return "The cluster resource is not available.";
		case ERROR_RESOURCE_NOT_FOUND:
			return "The cluster resource could not be found.";
		case ERROR_SHUTDOWN_CLUSTER:
			return "The cluster is being shut down.";
		case ERROR_CANT_EVICT_ACTIVE_NODE:
			return "A cluster node cannot be evicted from the cluster unless the node is down or it is the last node.";
		case ERROR_OBJECT_ALREADY_EXISTS:
			return "The object already exists.";
		case ERROR_OBJECT_IN_LIST:
			return "The object is already in the list.";
		case ERROR_GROUP_NOT_AVAILABLE:
			return "The cluster group is not available for any new requests.";
		case ERROR_GROUP_NOT_FOUND:
			return "The cluster group could not be found.";
		case ERROR_GROUP_NOT_ONLINE:
			return "The operation could not be completed because the cluster group is not online.";
		case ERROR_HOST_NODE_NOT_RESOURCE_OWNER:
			return "The operation failed because either the specified cluster node is not the owner of the resource, or the node is not a possible owner of the resource.";
		case ERROR_HOST_NODE_NOT_GROUP_OWNER:
			return "The operation failed because either the specified cluster node is not the owner of the group, or the node is not a possible owner of the group.";
		case ERROR_RESMON_CREATE_FAILED:
			return "The cluster resource could not be created in the specified resource monitor.";
		case ERROR_RESMON_ONLINE_FAILED:
			return "The cluster resource could not be brought online by the resource monitor.";
		case ERROR_RESOURCE_ONLINE:
			return "The operation could not be completed because the cluster resource is online.";
		case ERROR_QUORUM_RESOURCE:
			return "The cluster resource could not be deleted or brought offline because it is the quorum resource.";
		case ERROR_NOT_QUORUM_CAPABLE:
			return "The cluster could not make the specified resource a quorum resource because it is not capable of being a quorum resource.";
		case ERROR_CLUSTER_SHUTTING_DOWN:
			return "The cluster software is shutting down.";
		case ERROR_INVALID_STATE:
			return "The group or resource is not in the correct state to perform the requested operation.";
		case ERROR_RESOURCE_PROPERTIES_STORED:
			return "The properties were stored but not all changes will take effect until the next time the resource is brought online.";
		case ERROR_NOT_QUORUM_CLASS:
			return "The cluster could not make the specified resource a quorum resource because it does not belong to a shared storage class.";
		case ERROR_CORE_RESOURCE:
			return "The cluster resource could not be deleted since it is a core resource.";
		case ERROR_QUORUM_RESOURCE_ONLINE_FAILED:
			return "The quorum resource failed to come online.";
		case ERROR_QUORUMLOG_OPEN_FAILED:
			return "The quorum log could not be created or mounted successfully.";
		case ERROR_CLUSTERLOG_CORRUPT:
			return "The cluster log is corrupt.";
		case ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE:
			return "The record could not be written to the cluster log since it exceeds the maximum size.";
		case ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE:
			return "The cluster log exceeds its maximum size.";
		case ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND:
			return "No checkpoint record was found in the cluster log.";
		case ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE:
			return "The minimum required disk space needed for logging is not available.";
		case ERROR_QUORUM_OWNER_ALIVE:
			return "The cluster node failed to take control of the quorum resource because the resource is owned by another active node.";
		case ERROR_NETWORK_NOT_AVAILABLE:
			return "A cluster network is not available for this operation.";
		case ERROR_NODE_NOT_AVAILABLE:
			return "A cluster node is not available for this operation.";
		case ERROR_ALL_NODES_NOT_AVAILABLE:
			return "All cluster nodes must be running to perform this operation.";
		case ERROR_RESOURCE_FAILED:
			return "A cluster resource failed.";
		case ERROR_CLUSTER_INVALID_NODE:
			return "The cluster node is not valid.";
		case ERROR_CLUSTER_NODE_EXISTS:
			return "The cluster node already exists.";
		case ERROR_CLUSTER_JOIN_IN_PROGRESS:
			return "A node is in the process of joining the cluster.";
		case ERROR_CLUSTER_NODE_NOT_FOUND:
			return "The cluster node was not found.";
		case ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND:
			return "The cluster local node information was not found.";
		case ERROR_CLUSTER_NETWORK_EXISTS:
			return "The cluster network already exists.";
		case ERROR_CLUSTER_NETWORK_NOT_FOUND:
			return "The cluster network was not found.";
		case ERROR_CLUSTER_NETINTERFACE_EXISTS:
			return "The cluster network interface already exists.";
		case ERROR_CLUSTER_NETINTERFACE_NOT_FOUND:
			return "The cluster network interface was not found.";
		case ERROR_CLUSTER_INVALID_REQUEST:
			return "The cluster request is not valid for this object.";
		case ERROR_CLUSTER_INVALID_NETWORK_PROVIDER:
			return "The cluster network provider is not valid.";
		case ERROR_CLUSTER_NODE_DOWN:
			return "The cluster node is down.";
		case ERROR_CLUSTER_NODE_UNREACHABLE:
			return "The cluster node is not reachable.";
		case ERROR_CLUSTER_NODE_NOT_MEMBER:
			return "The cluster node is not a member of the cluster.";
		case ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS:
			return "A cluster join operation is not in progress.";
		case ERROR_CLUSTER_INVALID_NETWORK:
			return "The cluster network is not valid.";
		case ERROR_CLUSTER_NODE_UP:
			return "The cluster node is up.";
		case ERROR_CLUSTER_IPADDR_IN_USE:
			return "The cluster IP address is already in use.";
		case ERROR_CLUSTER_NODE_NOT_PAUSED:
			return "The cluster node is not paused.";
		case ERROR_CLUSTER_NO_SECURITY_CONTEXT:
			return "No cluster security context is available.";
		case ERROR_CLUSTER_NETWORK_NOT_INTERNAL:
			return "The cluster network is not configured for internal cluster communication.";
		case ERROR_CLUSTER_NODE_ALREADY_UP:
			return "The cluster node is already up.";
		case ERROR_CLUSTER_NODE_ALREADY_DOWN:
			return "The cluster node is already down.";
		case ERROR_CLUSTER_NETWORK_ALREADY_ONLINE:
			return "The cluster network is already online.";
		case ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE:
			return "The cluster network is already offline.";
		case ERROR_CLUSTER_NODE_ALREADY_MEMBER:
			return "The cluster node is already a member of the cluster.";
		case ERROR_CLUSTER_LAST_INTERNAL_NETWORK:
			return "The cluster network is the only one configured for internal cluster communication between two or more active cluster nodes.The internal communication capability cannot be removed from the network.";
		case ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS:
			return "One or more cluster resources depend on the network to provide service to clients.The client access capability cannot be removed from the network.";
		case ERROR_INVALID_OPERATION_ON_QUORUM:
			return "This operation cannot be performed on the cluster resource as it the quorum resource.You may not bring the quorum resource offline or modify its possible owners list.";
		case ERROR_DEPENDENCY_NOT_ALLOWED:
			return "The cluster quorum resource is not allowed to have any dependencies.";
		case ERROR_CLUSTER_NODE_PAUSED:
			return "The cluster node is paused.";
		case ERROR_NODE_CANT_HOST_RESOURCE:
			return "The cluster resource cannot be brought online.The owner node cannot run this resource.";
		case ERROR_CLUSTER_NODE_NOT_READY:
			return "The cluster node is not ready to perform the requested operation.";
		case ERROR_CLUSTER_NODE_SHUTTING_DOWN:
			return "The cluster node is shutting down.";
		case ERROR_CLUSTER_JOIN_ABORTED:
			return "The cluster join operation was aborted.";
		case ERROR_CLUSTER_INCOMPATIBLE_VERSIONS:
			return "The cluster join operation failed due to incompatible software versions between the joining node and its sponsor.";
		case ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED:
			return "This resource cannot be created because the cluster has reached the limit on the number of resources it can monitor.";
		case ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED:
			return "The system configuration changed during the cluster join or form operation.The join or form operation was aborted.";
		case ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND:
			return "The specified resource type was not found.";
		case ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED:
			return "The specified node does not support a resource of this type.This may be due to version inconsistencies or due to the absence of the resource DLL on this node.";
		case ERROR_CLUSTER_RESNAME_NOT_FOUND:
			return "The specified resource name is not supported by this resource DLL.This may be due to a bad (or changed) name supplied to the resource DLL.";
		case ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED:
			return "No authentication package could be registered with the RPC server.";
		case ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST:
			return "You cannot bring the group online because the owner of the group is not in the preferred list for the group.To change the owner node for the group, move the group.";
		case ERROR_CLUSTER_DATABASE_SEQMISMATCH:
			return "The join operation failed because the cluster database sequence number has changed or is incompatible with the locker node.This may happen during a join operation if the cluster database was changing during the join.";
		case ERROR_RESMON_INVALID_STATE:
			return "The resource monitor will not allow the fail operation to be performed while the resource is in its current state.This may happen if the resource is in a pending state.";
		case ERROR_CLUSTER_GUM_NOT_LOCKER:
			return "A non locker code got a request to reserve the lock for making global updates.";
		case ERROR_QUORUM_DISK_NOT_FOUND:
			return "The quorum disk could not be located by the cluster service.";
		case ERROR_DATABASE_BACKUP_CORRUPT:
			return "The backed up cluster database is possibly corrupt.";
		case ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT:
			return "A DFS root already exists in this cluster node.";
		case ERROR_RESOURCE_PROPERTY_UNCHANGEABLE:
			return "An attempt to modify a resource property failed because it conflicts with another existing property.";
		case ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE:
			return "An operation was attempted that is incompatible with the current membership state of the node.";
		case ERROR_CLUSTER_QUORUMLOG_NOT_FOUND:
			return "The quorum resource does not contain the quorum log.";
		case ERROR_CLUSTER_MEMBERSHIP_HALT:
			return "The membership engine requested shutdown of the cluster service on this node.";
		case ERROR_CLUSTER_INSTANCE_ID_MISMATCH:
			return "The join operation failed because the cluster instance ID of the joining node does not match the cluster instance ID of the sponsor node.";
		case ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP:
			return "A matching cluster network for the specified IP address could not be found.";
		case ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH:
			return "The actual data type of the property did not match the expected data type of the property.";
		case ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP:
			return "The cluster node was evicted from the cluster successfully, but the node was not cleaned up.To determine what cleanup steps failed and how to recover, see the Failover Clustering application event log using Event Viewer.";
		case ERROR_CLUSTER_PARAMETER_MISMATCH:
			return "Two or more parameter values specified for a resource's properties are in conflict.";
		case ERROR_NODE_CANNOT_BE_CLUSTERED:
			return "This computer cannot be made a member of a cluster.";
		case ERROR_CLUSTER_WRONG_OS_VERSION:
			return "This computer cannot be made a member of a cluster because it does not have the correct version of Windows installed.";
		case ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME:
			return "A cluster cannot be created with the specified cluster name because that cluster name is already in use.Specify a different name for the cluster.";
		case ERROR_CLUSCFG_ALREADY_COMMITTED:
			return "The cluster configuration action has already been committed.";
		case ERROR_CLUSCFG_ROLLBACK_FAILED:
			return "The cluster configuration action could not be rolled back.";
		case ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT:
			return "The drive letter assigned to a system disk on one node conflicted with the drive letter assigned to a disk on another node.";
		case ERROR_CLUSTER_OLD_VERSION:
			return "One or more nodes in the cluster are running a version of Windows that does not support this operation.";
		case ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME:
			return "The name of the corresponding computer account doesn't match the Network Name for this resource.";
		case ERROR_CLUSTER_NO_NET_ADAPTERS:
			return "No network adapters are available.";
		case ERROR_CLUSTER_POISONED:
			return "The cluster node has been poisoned.";
		case ERROR_CLUSTER_GROUP_MOVING:
			return "The group is unable to accept the request since it is moving to another node.";
		case ERROR_CLUSTER_RESOURCE_TYPE_BUSY:
			return "The resource type cannot accept the request since is too busy performing another operation.";
		case ERROR_RESOURCE_CALL_TIMED_OUT:
			return "The call to the cluster resource DLL timed out.";
		case ERROR_INVALID_CLUSTER_IPV6_ADDRESS:
			return "The address is not valid for an IPv6 Address resource.A global IPv6 address is required, and it must match a cluster network.Compatibility addresses are not permitted.";
		case ERROR_CLUSTER_INTERNAL_INVALID_FUNCTION:
			return "An internal cluster error occurred.A call to an invalid function was attempted.";
		case ERROR_CLUSTER_PARAMETER_OUT_OF_BOUNDS:
			return "A parameter value is out of acceptable range.";
		case ERROR_CLUSTER_PARTIAL_SEND:
			return "A network error occurred while sending data to another node in the cluster.The number of bytes transmitted was less than required.";
		case ERROR_CLUSTER_REGISTRY_INVALID_FUNCTION:
			return "An invalid cluster registry operation was attempted.";
		case ERROR_CLUSTER_INVALID_STRING_TERMINATION:
			return "An input string of characters is not properly terminated.";
		case ERROR_CLUSTER_INVALID_STRING_FORMAT:
			return "An input string of characters is not in a valid format for the data it represents.";
		case ERROR_CLUSTER_DATABASE_TRANSACTION_IN_PROGRESS:
			return "An internal cluster error occurred.A cluster database transaction was attempted while a transaction was already in progress.";
		case ERROR_CLUSTER_DATABASE_TRANSACTION_NOT_IN_PROGRESS:
			return "An internal cluster error occurred.There was an attempt to commit a cluster database transaction while no transaction was in progress.";
		case ERROR_CLUSTER_NULL_DATA:
			return "An internal cluster error occurred.Data was not properly initialized.";
		case ERROR_CLUSTER_PARTIAL_READ:
			return "An error occurred while reading from a stream of data.An unexpected number of bytes was return ed.";
		case ERROR_CLUSTER_PARTIAL_WRITE:
			return "An error occurred while writing to a stream of data.The required number of bytes could not be written.";
		case ERROR_CLUSTER_CANT_DESERIALIZE_DATA:
			return "An error occurred while deserializing a stream of cluster data.";
		case ERROR_DEPENDENT_RESOURCE_PROPERTY_CONFLICT:
			return "One or more property values for this resource are in conflict with one or more property values associated with its dependent resource(s).";
		case ERROR_CLUSTER_NO_QUORUM:
			return "A quorum of cluster nodes was not present to form a cluster.";
		case ERROR_CLUSTER_INVALID_IPV6_NETWORK:
			return "The cluster network is not valid for an IPv6 Address resource, or it does not match the configured address.";
		case ERROR_CLUSTER_INVALID_IPV6_TUNNEL_NETWORK:
			return "The cluster network is not valid for an IPv6 Tunnel resource.Check the configuration of the IP Address resource on which the IPv6 Tunnel resource depends.";
		case ERROR_QUORUM_NOT_ALLOWED_IN_THIS_GROUP:
			return "Quorum resource cannot reside in the Available Storage group.";
		case ERROR_DEPENDENCY_TREE_TOO_COMPLEX:
			return "The dependencies for this resource are nested too deeply.";
		case ERROR_EXCEPTION_IN_RESOURCE_CALL:
			return "The call into the resource DLL raised an unhandled exception.";
		case ERROR_CLUSTER_RHS_FAILED_INITIALIZATION:
			return "The RHS process failed to initialize.";
		case ERROR_CLUSTER_NOT_INSTALLED:
			return "The Failover Clustering feature is not installed on this node.";
		case ERROR_CLUSTER_RESOURCES_MUST_BE_ONLINE_ON_THE_SAME_NODE:
			return "The resources must be online on the same node for this operation.";
		case ERROR_CLUSTER_MAX_NODES_IN_CLUSTER:
			return "A new node can not be added since this cluster is already at its maximum number of nodes.";
		case ERROR_CLUSTER_TOO_MANY_NODES:
			return "This cluster can not be created since the specified number of nodes exceeds the maximum allowed limit.";
		case ERROR_CLUSTER_OBJECT_ALREADY_USED:
			return "An attempt to use the specified cluster name failed because an enabled computer object with the given name already exists in the domain.";
		case ERROR_NONCORE_GROUPS_FOUND:
			return "This cluster cannot be destroyed.It has non-core application groups which must be deleted before the cluster can be destroyed.";
		case ERROR_FILE_SHARE_RESOURCE_CONFLICT:
			return "File share associated with file share witness resource cannot be hosted by this cluster or any of its nodes.";
		case ERROR_CLUSTER_EVICT_INVALID_REQUEST:
			return "Eviction of this node is invalid at this time.Due to quorum requirements node eviction will result in cluster shutdown.If it is the last node in the cluster, destroy cluster command should be used.";
		case ERROR_CLUSTER_SINGLETON_RESOURCE:
			return "Only one instance of this resource type is allowed in the cluster.";
		case ERROR_CLUSTER_GROUP_SINGLETON_RESOURCE:
			return "Only one instance of this resource type is allowed per resource group.";
		case ERROR_CLUSTER_RESOURCE_PROVIDER_FAILED:
			return "The resource failed to come online due to the failure of one or more provider resources.";
		case ERROR_CLUSTER_RESOURCE_CONFIGURATION_ERROR:
			return "The resource has indicated that it cannot come online on any node.";
		case ERROR_CLUSTER_GROUP_BUSY:
			return "The current operation cannot be performed on this group at this time.";
		case ERROR_CLUSTER_NOT_SHARED_VOLUME:
			return "The directory or file is not located on a cluster shared volume.";
		case ERROR_CLUSTER_INVALID_SECURITY_DESCRIPTOR:
			return "The Security Descriptor does not meet the requirements for a cluster.";
		case ERROR_CLUSTER_SHARED_VOLUMES_IN_USE:
			return "There is one or more shared volumes resources configured in the cluster.Those resources must be moved to available storage in order for operation to succeed.";
		case ERROR_CLUSTER_USE_SHARED_VOLUMES_API:
			return "This group or resource cannot be directly manipulated.Use shared volume APIs to perform desired operation.";
		case ERROR_CLUSTER_BACKUP_IN_PROGRESS:
			return "Back up is in progress.Please wait for backup completion before trying this operation again.";
		case ERROR_NON_CSV_PATH:
			return "The path does not belong to a cluster shared volume.";
		case ERROR_CSV_VOLUME_NOT_LOCAL:
			return "The cluster shared volume is not locally mounted on this node.";
		case ERROR_CLUSTER_WATCHDOG_TERMINATING:
			return "The cluster watchdog is terminating.";
		case ERROR_CLUSTER_RESOURCE_VETOED_MOVE_INCOMPATIBLE_NODES:
			return "A resource vetoed a move between two nodes because they are incompatible.";
		case ERROR_CLUSTER_INVALID_NODE_WEIGHT:
			return "The request is invalid either because node weight cannot be changed while the cluster is in disk-only quorum mode, or because changing the node weight would violate the minimum cluster quorum requirements.";
		case ERROR_CLUSTER_RESOURCE_VETOED_CALL:
			return "The resource vetoed the call.";
		case ERROR_RESMON_SYSTEM_RESOURCES_LACKING:
			return "Resource could not start or run because it could not reserve sufficient system resources.";
		case ERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_DESTINATION:
			return "A resource vetoed a move between two nodes because the destination currently does not have enough resources to complete the operation.";
		case ERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_SOURCE:
			return "A resource vetoed a move between two nodes because the source currently does not have enough resources to complete the operation.";
		case ERROR_CLUSTER_GROUP_QUEUED:
			return "The requested operation can not be completed because the group is queued for an operation.";
		case ERROR_CLUSTER_RESOURCE_LOCKED_STATUS:
			return "The requested operation can not be completed because a resource has locked status.";
		case ERROR_CLUSTER_SHARED_VOLUME_FAILOVER_NOT_ALLOWED:
			return "The resource cannot move to another node because a cluster shared volume vetoed the operation.";
		case ERROR_CLUSTER_NODE_DRAIN_IN_PROGRESS:
			return "A node drain is already in progress.This value was also named ERROR_CLUSTER_NODE_EVACUATION_IN_PROGRESS";
		case ERROR_CLUSTER_DISK_NOT_CONNECTED:
			return "Clustered storage is not connected to the node.";
		case ERROR_DISK_NOT_CSV_CAPABLE:
			return "The disk is not configured in a way to be used with CSV.CSV disks must have at least one partition that is formatted with NTFS.";
		case ERROR_RESOURCE_NOT_IN_AVAILABLE_STORAGE:
			return "The resource must be part of the Available Storage group to complete this action.";
		case ERROR_CLUSTER_SHARED_VOLUME_REDIRECTED:
			return "CSVFS failed operation as volume is in redirected mode.";
		case ERROR_CLUSTER_SHARED_VOLUME_NOT_REDIRECTED:
			return "CSVFS failed operation as volume is not in redirected mode.";
		case ERROR_CLUSTER_CANNOT_RETURN_PROPERTIES:
			return "Cluster properties cannot be return ed at this time.";
		case ERROR_CLUSTER_RESOURCE_CONTAINS_UNSUPPORTED_DIFF_AREA_FOR_SHARED_VOLUMES:
			return "The clustered disk resource contains software snapshot diff area that are not supported for Cluster Shared Volumes.";
		case ERROR_CLUSTER_RESOURCE_IS_IN_MAINTENANCE_MODE:
			return "The operation cannot be completed because the resource is in maintenance mode.";
		case ERROR_CLUSTER_AFFINITY_CONFLICT:
			return "The operation cannot be completed because of cluster affinity conflicts.";
		case ERROR_CLUSTER_RESOURCE_IS_REPLICA_VIRTUAL_MACHINE:
			return "The operation cannot be completed because the resource is a replica virtual machine.";
		case ERROR_ENCRYPTION_FAILED:
			return "The specified file could not be encrypted.";
		case ERROR_DECRYPTION_FAILED:
			return "The specified file could not be decrypted.";
		case ERROR_FILE_ENCRYPTED:
			return "The specified file is encrypted and the user does not have the ability to decrypt it.";
		case ERROR_NO_RECOVERY_POLICY:
			return "There is no valid encryption recovery policy configured for this system.";
		case ERROR_NO_EFS:
			return "The required encryption driver is not loaded for this system.";
		case ERROR_WRONG_EFS:
			return "The file was encrypted with a different encryption driver than is currently loaded.";
		case ERROR_NO_USER_KEYS:
			return "There are no EFS keys defined for the user.";
		case ERROR_FILE_NOT_ENCRYPTED:
			return "The specified file is not encrypted.";
		case ERROR_NOT_EXPORT_FORMAT:
			return "The specified file is not in the defined EFS export format.";
		case ERROR_FILE_READ_ONLY:
			return "The specified file is read only.";
		case ERROR_DIR_EFS_DISALLOWED:
			return "The directory has been disabled for encryption.";
		case ERROR_EFS_SERVER_NOT_TRUSTED:
			return "The server is not trusted for remote encryption operation.";
		case ERROR_BAD_RECOVERY_POLICY:
			return "Recovery policy configured for this system contains invalid recovery certificate.";
		case ERROR_EFS_ALG_BLOB_TOO_BIG:
			return "The encryption algorithm used on the source file needs a bigger key buffer than the one on the destination file.";
		case ERROR_VOLUME_NOT_SUPPORT_EFS:
			return "The disk partition does not support file encryption.";
		case ERROR_EFS_DISABLED:
			return "This machine is disabled for file encryption.";
		case ERROR_EFS_VERSION_NOT_SUPPORT:
			return "A newer system is required to decrypt this encrypted file.";
		case ERROR_CS_ENCRYPTION_INVALID_SERVER_RESPONSE:
			return "The remote server sent an invalid response for a file being opened with Client Side Encryption.";
		case ERROR_CS_ENCRYPTION_UNSUPPORTED_SERVER:
			return "Client Side Encryption is not supported by the remote server even though it claims to support it.";
		case ERROR_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE:
			return "File is encrypted and should be opened in Client Side Encryption mode.";
		case ERROR_CS_ENCRYPTION_NEW_ENCRYPTED_FILE:
			return "A new encrypted file is being created and a $EFS needs to be provided.";
		case ERROR_CS_ENCRYPTION_FILE_NOT_CSE:
			return "The SMB client requested a CSE FSCTL on a non-CSE file.";
		case ERROR_ENCRYPTION_POLICY_DENIES_OPERATION:
			return "The requested operation was blocked by policy.For more information, contact your system administrator.";
		case ERROR_NO_BROWSER_SERVERS_FOUND:
			return "The list of servers for this workgroup is not currently available.";
		case SCHED_E_SERVICE_NOT_LOCALSYSTEM:
			return "The Task Scheduler service must be configured to run in the System account to function properly.Individual tasks may be configured to run in other accounts.";
		case ERROR_LOG_SECTOR_INVALID:
			return "Log service encountered an invalid log sector.";
		case ERROR_LOG_SECTOR_PARITY_INVALID:
			return "Log service encountered a log sector with invalid block parity.";
		case ERROR_LOG_SECTOR_REMAPPED:
			return "Log service encountered a remapped log sector.";
		case ERROR_LOG_BLOCK_INCOMPLETE:
			return "Log service encountered a partial or incomplete log block.";
		case ERROR_LOG_INVALID_RANGE:
			return "Log service encountered an attempt access data outside the active log range.";
		case ERROR_LOG_BLOCKS_EXHAUSTED:
			return "Log service user marshalling buffers are exhausted.";
		case ERROR_LOG_READ_CONTEXT_INVALID:
			return "Log service encountered an attempt read from a marshalling area with an invalid read context.";
		case ERROR_LOG_RESTART_INVALID:
			return "Log service encountered an invalid log restart area.";
		case ERROR_LOG_BLOCK_VERSION:
			return "Log service encountered an invalid log block version.";
		case ERROR_LOG_BLOCK_INVALID:
			return "Log service encountered an invalid log block.";
		case ERROR_LOG_READ_MODE_INVALID:
			return "Log service encountered an attempt to read the log with an invalid read mode.";
		case ERROR_LOG_NO_RESTART:
			return "Log service encountered a log stream with no restart area.";
		case ERROR_LOG_METADATA_CORRUPT:
			return "Log service encountered a corrupted metadata file.";
		case ERROR_LOG_METADATA_INVALID:
			return "Log service encountered a metadata file that could not be created by the log file system.";
		case ERROR_LOG_METADATA_INCONSISTENT:
			return "Log service encountered a metadata file with inconsistent data.";
		case ERROR_LOG_RESERVATION_INVALID:
			return "Log service encountered an attempt to erroneous allocate or dispose reservation space.";
		case ERROR_LOG_CANT_DELETE:
			return "Log service cannot delete log file or file system container.";
		case ERROR_LOG_CONTAINER_LIMIT_EXCEEDED:
			return "Log service has reached the maximum allowable containers allocated to a log file.";
		case ERROR_LOG_START_OF_LOG:
			return "Log service has attempted to read or write backward past the start of the log.";
		case ERROR_LOG_POLICY_ALREADY_INSTALLED:
			return "Log policy could not be installed because a policy of the same type is already present.";
		case ERROR_LOG_POLICY_NOT_INSTALLED:
			return "Log policy in question was not installed at the time of the request.";
		case ERROR_LOG_POLICY_INVALID:
			return "The installed set of policies on the log is invalid.";
		case ERROR_LOG_POLICY_CONFLICT:
			return "A policy on the log in question prevented the operation from completing.";
		case ERROR_LOG_PINNED_ARCHIVE_TAIL:
			return "Log space cannot be reclaimed because the log is pinned by the archive tail.";
		case ERROR_LOG_RECORD_NONEXISTENT:
			return "Log record is not a record in the log file.";
		case ERROR_LOG_RECORDS_RESERVED_INVALID:
			return "Number of reserved log records or the adjustment of the number of reserved log records is invalid.";
		case ERROR_LOG_SPACE_RESERVED_INVALID:
			return "Reserved log space or the adjustment of the log space is invalid.";
		case ERROR_LOG_TAIL_INVALID:
			return "An new or existing archive tail or base of the active log is invalid.";
		case ERROR_LOG_FULL:
			return "Log space is exhausted.";
		case ERROR_COULD_NOT_RESIZE_LOG:
			return "The log could not be set to the requested size.";
		case ERROR_LOG_MULTIPLEXED:
			return "Log is multiplexed, no direct writes to the physical log is allowed.";
		case ERROR_LOG_DEDICATED:
			return "The operation failed because the log is a dedicated log.";
		case ERROR_LOG_ARCHIVE_NOT_IN_PROGRESS:
			return "The operation requires an archive context.";
		case ERROR_LOG_ARCHIVE_IN_PROGRESS:
			return "Log archival is in progress.";
		case ERROR_LOG_EPHEMERAL:
			return "The operation requires a non-ephemeral log, but the log is ephemeral.";
		case ERROR_LOG_NOT_ENOUGH_CONTAINERS:
			return "The log must have at least two containers before it can be read from or written to.";
		case ERROR_LOG_CLIENT_ALREADY_REGISTERED:
			return "A log client has already registered on the stream.";
		case ERROR_LOG_CLIENT_NOT_REGISTERED:
			return "A log client has not been registered on the stream.";
		case ERROR_LOG_FULL_HANDLER_IN_PROGRESS:
			return "A request has already been made to handle the log full condition.";
		case ERROR_LOG_CONTAINER_READ_FAILED:
			return "Log service encountered an error when attempting to read from a log container.";
		case ERROR_LOG_CONTAINER_WRITE_FAILED:
			return "Log service encountered an error when attempting to write to a log container.";
		case ERROR_LOG_CONTAINER_OPEN_FAILED:
			return "Log service encountered an error when attempting open a log container.";
		case ERROR_LOG_CONTAINER_STATE_INVALID:
			return "Log service encountered an invalid container state when attempting a requested action.";
		case ERROR_LOG_STATE_INVALID:
			return "Log service is not in the correct state to perform a requested action.";
		case ERROR_LOG_PINNED:
			return "Log space cannot be reclaimed because the log is pinned.";
		case ERROR_LOG_METADATA_FLUSH_FAILED:
			return "Log metadata flush failed.";
		case ERROR_LOG_INCONSISTENT_SECURITY:
			return "Security on the log and its containers is inconsistent.";
		case ERROR_LOG_APPENDED_FLUSH_FAILED:
			return "Records were appended to the log or reservation changes were made, but the log could not be flushed.";
		case ERROR_LOG_PINNED_RESERVATION:
			return "The log is pinned due to reservation consuming most of the log space.Free some reserved records to make space available.";
		case ERROR_INVALID_TRANSACTION:
			return "The transaction handle associated with this operation is not valid.";
		case ERROR_TRANSACTION_NOT_ACTIVE:
			return "The requested operation was made in the context of a transaction that is no longer active.";
		case ERROR_TRANSACTION_REQUEST_NOT_VALID:
			return "The requested operation is not valid on the Transaction object in its current state.";
		case ERROR_TRANSACTION_NOT_REQUESTED:
			return "The caller has called a response API, but the response is not expected because the TM did not issue the corresponding request to the caller.";
		case ERROR_TRANSACTION_ALREADY_ABORTED:
			return "It is too late to perform the requested operation, since the Transaction has already been aborted.";
		case ERROR_TRANSACTION_ALREADY_COMMITTED:
			return "It is too late to perform the requested operation, since the Transaction has already been committed.";
		case ERROR_TM_INITIALIZATION_FAILED:
			return "The Transaction Manager was unable to be successfully initialized.Transacted operations are not supported.";
		case ERROR_RESOURCEMANAGER_READ_ONLY:
			return "The specified ResourceManager made no changes or updates to the resource under this transaction.";
		case ERROR_TRANSACTION_NOT_JOINED:
			return "The resource manager has attempted to prepare a transaction that it has not successfully joined.";
		case ERROR_TRANSACTION_SUPERIOR_EXISTS:
			return "The Transaction object already has a superior enlistment, and the caller attempted an operation that would have created a new superior.Only a single superior enlistment is allow.";
		case ERROR_CRM_PROTOCOL_ALREADY_EXISTS:
			return "The RM tried to register a protocol that already exists.";
		case ERROR_TRANSACTION_PROPAGATION_FAILED:
			return "The attempt to propagate the Transaction failed.";
		case ERROR_CRM_PROTOCOL_NOT_FOUND:
			return "The requested propagation protocol was not registered as a CRM.";
		case ERROR_TRANSACTION_INVALID_MARSHALL_BUFFER:
			return "The buffer passed in to PushTransaction or PullTransaction is not in a valid format.";
		case ERROR_CURRENT_TRANSACTION_NOT_VALID:
			return "The current transaction context associated with the thread is not a valid handle to a transaction object.";
		case ERROR_TRANSACTION_NOT_FOUND:
			return "The specified Transaction object could not be opened, because it was not found.";
		case ERROR_RESOURCEMANAGER_NOT_FOUND:
			return "The specified ResourceManager object could not be opened, because it was not found.";
		case ERROR_ENLISTMENT_NOT_FOUND:
			return "The specified Enlistment object could not be opened, because it was not found.";
		case ERROR_TRANSACTIONMANAGER_NOT_FOUND:
			return "The specified TransactionManager object could not be opened, because it was not found.";
		case ERROR_TRANSACTIONMANAGER_NOT_ONLINE:
			return "The object specified could not be created or opened, because its associated TransactionManager is not online.The TransactionManager must be brought fully Online by calling RecoverTransactionManager to recover to the end of its LogFile before objects in its Transaction or ResourceManager namespaces can be opened.In addition, errors in writing records to its LogFile can cause a TransactionManager to go offline.";
		case ERROR_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION:
			return "The specified TransactionManager was unable to create the objects contained in its logfile in the Ob namespace.Therefore, the TransactionManager was unable to recover.";
		case ERROR_TRANSACTION_NOT_ROOT:
			return "The call to create a superior Enlistment on this Transaction object could not be completed, because the Transaction object specified for the enlistment is a subordinate branch of the Transaction.Only the root of the Transaction can be enlisted on as a superior.";
		case ERROR_TRANSACTION_OBJECT_EXPIRED:
			return "Because the associated transaction manager or resource manager has been closed, the handle is no longer valid.";
		case ERROR_TRANSACTION_RESPONSE_NOT_ENLISTED:
			return "The specified operation could not be performed on this Superior enlistment, because the enlistment was not created with the corresponding completion response in the NotificationMask.";
		case ERROR_TRANSACTION_RECORD_TOO_LONG:
			return "The specified operation could not be performed, because the record that would be logged was too long.This can occur because of two conditions: either there are too many Enlistments on this Transaction, or the combined RecoveryInformation being logged on behalf of those Enlistments is too long.";
		case ERROR_IMPLICIT_TRANSACTION_NOT_SUPPORTED:
			return "Implicit transaction are not supported.";
		case ERROR_TRANSACTION_INTEGRITY_VIOLATED:
			return "The kernel transaction manager had to abort or forget the transaction because it blocked forward progress.";
		case ERROR_TRANSACTIONMANAGER_IDENTITY_MISMATCH:
			return "The TransactionManager identity that was supplied did not match the one recorded in the TransactionManager's log file.";
		case ERROR_RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT:
			return "This snapshot operation cannot continue because a transactional resource manager cannot be frozen in its current state.Please try again.";
		case ERROR_TRANSACTION_MUST_WRITETHROUGH:
			return "The transaction cannot be enlisted on with the specified EnlistmentMask, because the transaction has already completed the PrePrepare phase.In order to ensure correctness, the ResourceManager must switch to a write- through mode and cease caching data within this transaction.Enlisting for only subsequent transaction phases may still succeed.";
		case ERROR_TRANSACTION_NO_SUPERIOR:
			return "The transaction does not have a superior enlistment.";
		case ERROR_HEURISTIC_DAMAGE_POSSIBLE:
			return "The attempt to commit the Transaction completed, but it is possible that some portion of the transaction tree did not commit successfully due to heuristics.Therefore it is possible that some data modified in the transaction may not have committed, resulting in transactional inconsistency.If possible, check the consistency of the associated data.";
		case ERROR_TRANSACTIONAL_CONFLICT:
			return "The function attempted to use a name that is reserved for use by another transaction.";
		case ERROR_RM_NOT_ACTIVE:
			return "Transaction support within the specified resource manager is not started or was shut down due to an error.";
		case ERROR_RM_METADATA_CORRUPT:
			return "The metadata of the RM has been corrupted.The RM will not function.";
		case ERROR_DIRECTORY_NOT_RM:
			return "The specified directory does not contain a resource manager.";
		case ERROR_TRANSACTIONS_UNSUPPORTED_REMOTE:
			return "The remote server or share does not support transacted file operations.";
		case ERROR_LOG_RESIZE_INVALID_SIZE:
			return "The requested log size is invalid.";
		case ERROR_OBJECT_NO_LONGER_EXISTS:
			return "The object (file, stream, link) corresponding to the handle has been deleted by a Transaction Savepoint Rollback.";
		case ERROR_STREAM_MINIVERSION_NOT_FOUND:
			return "The specified file miniversion was not found for this transacted file open.";
		case ERROR_STREAM_MINIVERSION_NOT_VALID:
			return "The specified file miniversion was found but has been invalidated.Most likely cause is a transaction savepoint rollback.";
		case ERROR_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION:
			return "A miniversion may only be opened in the context of the transaction that created it.";
		case ERROR_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT:
			return "It is not possible to open a miniversion with modify access.";
		case ERROR_CANT_CREATE_MORE_STREAM_MINIVERSIONS:
			return "It is not possible to create any more miniversions for this stream.";
		case ERROR_REMOTE_FILE_VERSION_MISMATCH:
			return "The remote server sent mismatching version number or Fid for a file opened with transactions.";
		case ERROR_HANDLE_NO_LONGER_VALID:
			return "The handle has been invalidated by a transaction.The most likely cause is the presence of memory mapping on a file or an open handle when the transaction ended or rolled back to savepoint.";
		case ERROR_NO_TXF_METADATA:
			return "There is no transaction metadata on the file.";
		case ERROR_LOG_CORRUPTION_DETECTED:
			return "The log data is corrupt.";
		case ERROR_CANT_RECOVER_WITH_HANDLE_OPEN:
			return "The file can't be recovered because there is a handle still open on it.";
		case ERROR_RM_DISCONNECTED:
			return "The transaction outcome is unavailable because the resource manager responsible for it has disconnected.";
		case ERROR_ENLISTMENT_NOT_SUPERIOR:
			return "The request was rejected because the enlistment in question is not a superior enlistment.";
		case ERROR_RECOVERY_NOT_NEEDED:
			return "The transactional resource manager is already consistent.Recovery is not needed.";
		case ERROR_RM_ALREADY_STARTED:
			return "The transactional resource manager has already been started.";
		case ERROR_FILE_IDENTITY_NOT_PERSISTENT:
			return "The file cannot be opened transactionally, because its identity depends on the outcome of an unresolved transaction.";
		case ERROR_CANT_BREAK_TRANSACTIONAL_DEPENDENCY:
			return "The operation cannot be performed because another transaction is depending on the fact that this property will not change.";
		case ERROR_CANT_CROSS_RM_BOUNDARY:
			return "The operation would involve a single file with two transactional resource managers and is therefore not allowed.";
		case ERROR_TXF_DIR_NOT_EMPTY:
			return "The $Txf directory must be empty for this operation to succeed.";
		case ERROR_INDOUBT_TRANSACTIONS_EXIST:
			return "The operation would leave a transactional resource manager in an inconsistent state and is therefore not allowed.";
		case ERROR_TM_VOLATILE:
			return "The operation could not be completed because the transaction manager does not have a log.";
		case ERROR_ROLLBACK_TIMER_EXPIRED:
			return "A rollback could not be scheduled because a previously scheduled rollback has already executed or been queued for execution.";
		case ERROR_TXF_ATTRIBUTE_CORRUPT:
			return "The transactional metadata attribute on the file or directory is corrupt and unreadable.";
		case ERROR_EFS_NOT_ALLOWED_IN_TRANSACTION:
			return "The encryption operation could not be completed because a transaction is active.";
		case ERROR_TRANSACTIONAL_OPEN_NOT_ALLOWED:
			return "This object is not allowed to be opened in a transaction.";
		case ERROR_LOG_GROWTH_FAILED:
			return "An attempt to create space in the transactional resource manager's log failed.The failure status has been recorded in the event log.";
		case ERROR_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE:
			return "Memory mapping (creating a mapped section) a remote file under a transaction is not supported.";
		case ERROR_TXF_METADATA_ALREADY_PRESENT:
			return "Transaction metadata is already present on this file and cannot be superseded.";
		case ERROR_TRANSACTION_SCOPE_CALLBACKS_NOT_SET:
			return "A transaction scope could not be entered because the scope handler has not been initialized.";
		case ERROR_TRANSACTION_REQUIRED_PROMOTION:
			return "Promotion was required in order to allow the resource manager to enlist, but the transaction was set to disallow it.";
		case ERROR_CANNOT_EXECUTE_FILE_IN_TRANSACTION:
			return "This file is open for modification in an unresolved transaction and may be opened for execute only by a transacted reader.";
		case ERROR_TRANSACTIONS_NOT_FROZEN:
			return "The request to thaw frozen transactions was ignored because transactions had not previously been frozen.";
		case ERROR_TRANSACTION_FREEZE_IN_PROGRESS:
			return "Transactions cannot be frozen because a freeze is already in progress.";
		case ERROR_NOT_SNAPSHOT_VOLUME:
			return "The target volume is not a snapshot volume.This operation is only valid on a volume mounted as a snapshot.";
		case ERROR_NO_SAVEPOINT_WITH_OPEN_FILES:
			return "The savepoint operation failed because files are open on the transaction.This is not permitted.";
		case ERROR_DATA_LOST_REPAIR:
			return "Windows has discovered corruption in a file, and that file has since been repaired.Data loss may have occurred.";
		case ERROR_SPARSE_NOT_ALLOWED_IN_TRANSACTION:
			return "The sparse operation could not be completed because a transaction is active on the file.";
		case ERROR_TM_IDENTITY_MISMATCH:
			return "The call to create a TransactionManager object failed because the Tm Identity stored in the logfile does not match the Tm Identity that was passed in as an argument.";
		case ERROR_FLOATED_SECTION:
			return "I/O was attempted on a section object that has been floated as a result of a transaction ending.There is no valid data.";
		case ERROR_CANNOT_ACCEPT_TRANSACTED_WORK:
			return "The transactional resource manager cannot currently accept transacted work due to a transient condition such as low resources.";
		case ERROR_CANNOT_ABORT_TRANSACTIONS:
			return "The transactional resource manager had too many tranactions outstanding that could not be aborted.The transactional resource manger has been shut down.";
		case ERROR_BAD_CLUSTERS:
			return "The operation could not be completed due to bad clusters on disk.";
		case ERROR_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION:
			return "The compression operation could not be completed because a transaction is active on the file.";
		case ERROR_VOLUME_DIRTY:
			return "The operation could not be completed because the volume is dirty.Please run chkdsk and try again.";
		case ERROR_NO_LINK_TRACKING_IN_TRANSACTION:
			return "The link tracking operation could not be completed because a transaction is active.";
		case ERROR_OPERATION_NOT_SUPPORTED_IN_TRANSACTION:
			return "This operation cannot be performed in a transaction.";
		case ERROR_EXPIRED_HANDLE:
			return "The handle is no longer properly associated with its transaction.It may have been opened in a transactional resource manager that was subsequently forced to restart.Please close the handle and open a new one.";
		case ERROR_TRANSACTION_NOT_ENLISTED:
			return "The specified operation could not be performed because the resource manager is not enlisted in the transaction.";
		case ERROR_CTX_WINSTATION_NAME_INVALID:
			return "The specified session name is invalid.";
		case ERROR_CTX_INVALID_PD:
			return "The specified protocol driver is invalid.";
		case ERROR_CTX_PD_NOT_FOUND:
			return "The specified protocol driver was not found in the system path.";
		case ERROR_CTX_WD_NOT_FOUND:
			return "The specified terminal connection driver was not found in the system path.";
		case ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY:
			return "A registry key for event logging could not be created for this session.";
		case ERROR_CTX_SERVICE_NAME_COLLISION:
			return "A service with the same name already exists on the system.";
		case ERROR_CTX_CLOSE_PENDING:
			return "A close operation is pending on the session.";
		case ERROR_CTX_NO_OUTBUF:
			return "There are no free output buffers available.";
		case ERROR_CTX_MODEM_INF_NOT_FOUND:
			return "The MODEM.INF file was not found.";
		case ERROR_CTX_INVALID_MODEMNAME:
			return "The modem name was not found in MODEM.INF.";
		case ERROR_CTX_MODEM_RESPONSE_ERROR:
			return "The modem did not accept the command sent to it.Verify that the configured modem name matches the attached modem.";
		case ERROR_CTX_MODEM_RESPONSE_TIMEOUT:
			return "The modem did not respond to the command sent to it.Verify that the modem is properly cabled and powered on.";
		case ERROR_CTX_MODEM_RESPONSE_NO_CARRIER:
			return "Carrier detect has failed or carrier has been dropped due to disconnect.";
		case ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE:
			return "Dial tone not detected within the required time.Verify that the phone cable is properly attached and functional.";
		case ERROR_CTX_MODEM_RESPONSE_BUSY:
			return "Busy signal detected at remote site on callback.";
		case ERROR_CTX_MODEM_RESPONSE_VOICE:
			return "Voice detected at remote site on callback.";
		case ERROR_CTX_TD_ERROR:
			return "Transport driver error.";
		case ERROR_CTX_WINSTATION_NOT_FOUND:
			return "The specified session cannot be found.";
		case ERROR_CTX_WINSTATION_ALREADY_EXISTS:
			return "The specified session name is already in use.";
		case ERROR_CTX_WINSTATION_BUSY:
			return "The task you are trying to do can't be completed because Remote Desktop Services is currently busy.Please try again in a few minutes.Other users should still be able to log on.";
		case ERROR_CTX_BAD_VIDEO_MODE:
			return "An attempt has been made to connect to a session whose video mode is not supported by the current client.";
		case ERROR_CTX_GRAPHICS_INVALID:
			return "The application attempted to enable DOS graphics mode.DOS graphics mode is not supported.";
		case ERROR_CTX_LOGON_DISABLED:
			return "Your interactive logon privilege has been disabled.Please contact your administrator.";
		case ERROR_CTX_NOT_CONSOLE:
			return "The requested operation can be performed only on the system console.This is most often the result of a driver or system DLL requiring direct console access.";
		case ERROR_CTX_CLIENT_QUERY_TIMEOUT:
			return "The client failed to respond to the server connect message.";
		case ERROR_CTX_CONSOLE_DISCONNECT:
			return "Disconnecting the console session is not supported.";
		case ERROR_CTX_CONSOLE_CONNECT:
			return "Reconnecting a disconnected session to the console is not supported.";
		case ERROR_CTX_SHADOW_DENIED:
			return "The request to control another session remotely was denied.";
		case ERROR_CTX_WINSTATION_ACCESS_DENIED:
			return "The requested session access is denied.";
		case ERROR_CTX_INVALID_WD:
			return "The specified terminal connection driver is invalid.";
		case ERROR_CTX_SHADOW_INVALID:
			return "The requested session cannot be controlled remotely.This may be because the session is disconnected or does not currently have a user logged on.";
		case ERROR_CTX_SHADOW_DISABLED:
			return "The requested session is not configured to allow remote control.";
		case ERROR_CTX_CLIENT_LICENSE_IN_USE:
			return "Your request to connect to this Terminal Server has been rejected.Your Terminal Server client license number is currently being used by another user.Please call your system administrator to obtain a unique license number.";
		case ERROR_CTX_CLIENT_LICENSE_NOT_SET:
			return "Your request to connect to this Terminal Server has been rejected.Your Terminal Server client license number has not been entered for this copy of the Terminal Server client.Please contact your system administrator.";
		case ERROR_CTX_LICENSE_NOT_AVAILABLE:
			return "The number of connections to this computer is limited and all connections are in use right now.Try connecting later or contact your system administrator.";
		case ERROR_CTX_LICENSE_CLIENT_INVALID:
			return "The client you are using is not licensed to use this system.Your logon request is denied.";
		case ERROR_CTX_LICENSE_EXPIRED:
			return "The system license has expired.Your logon request is denied.";
		case ERROR_CTX_SHADOW_NOT_RUNNING:
			return "Remote control could not be terminated because the specified session is not currently being remotely controlled.";
		case ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE:
			return "The remote control of the console was terminated because the display mode was changed.Changing the display mode in a remote control session is not supported.";
		case ERROR_ACTIVATION_COUNT_EXCEEDED:
			return "Activation has already been reset the maximum number of times for this installation.Your activation timer will not be cleared.";
		case ERROR_CTX_WINSTATIONS_DISABLED:
			return "Remote logins are currently disabled.";
		case ERROR_CTX_ENCRYPTION_LEVEL_REQUIRED:
			return "You do not have the proper encryption level to access this Session.";
		case ERROR_CTX_SESSION_IN_USE:
			return "The user %s\\%s is currently logged on to this computer.Only the current user or an administrator can log on to this computer.";
		case ERROR_CTX_NO_FORCE_LOGOFF:
			return "The user %s\\%s is already logged on to the console of this computer.You do not have permission to log in at this time.To resolve this issue, contact %s\\%s and have them log off.";
		case ERROR_CTX_ACCOUNT_RESTRICTION:
			return "Unable to log you on because of an account restriction.";
		case ERROR_RDP_PROTOCOL_ERROR:
			return "The RDP protocol component %2 detected an error in the protocol stream and has disconnected the client.";
		case ERROR_CTX_CDM_CONNECT:
			return "The Client Drive Mapping Service Has Connected on Terminal Connection.";
		case ERROR_CTX_CDM_DISCONNECT:
			return "The Client Drive Mapping Service Has Disconnected on Terminal Connection.";
		case ERROR_CTX_SECURITY_LAYER_ERROR:
			return "The Terminal Server security layer detected an error in the protocol stream and has disconnected the client.";
		case ERROR_TS_INCOMPATIBLE_SESSIONS:
			return "The target session is incompatible with the current session.";
		case ERROR_TS_VIDEO_SUBSYSTEM_ERROR:
			return "Windows can't connect to your session because a problem occurred in the Windows video subsystem.Try connecting again later, or contact the server administrator for assistance.";
		case FRS_ERR_INVALID_API_SEQUENCE:
			return "The file replication service API was called incorrectly.";
		case FRS_ERR_STARTING_SERVICE:
			return "The file replication service cannot be started.";
		case FRS_ERR_STOPPING_SERVICE:
			return "The file replication service cannot be stopped.";
		case FRS_ERR_INTERNAL_API:
			return "The file replication service API terminated the request.The event log may have more information.";
		case FRS_ERR_INTERNAL:
			return "The file replication service terminated the request.The event log may have more information.";
		case FRS_ERR_SERVICE_COMM:
			return "The file replication service cannot be contacted.The event log may have more information.";
		case FRS_ERR_INSUFFICIENT_PRIV:
			return "The file replication service cannot satisfy the request because the user has insufficient privileges.The event log may have more information.";
		case FRS_ERR_AUTHENTICATION:
			return "The file replication service cannot satisfy the request because authenticated RPC is not available.The event log may have more information.";
		case FRS_ERR_PARENT_INSUFFICIENT_PRIV:
			return "The file replication service cannot satisfy the request because the user has insufficient privileges on the domain controller.The event log may have more information.";
		case FRS_ERR_PARENT_AUTHENTICATION:
			return "The file replication service cannot satisfy the request because authenticated RPC is not available on the domain controller.The event log may have more information.";
		case FRS_ERR_CHILD_TO_PARENT_COMM:
			return "The file replication service cannot communicate with the file replication service on the domain controller.The event log may have more information.";
		case FRS_ERR_PARENT_TO_CHILD_COMM:
			return "The file replication service on the domain controller cannot communicate with the file replication service on this computer.The event log may have more information.";
		case FRS_ERR_SYSVOL_POPULATE:
			return "The file replication service cannot populate the system volume because of an internal error.The event log may have more information.";
		case FRS_ERR_SYSVOL_POPULATE_TIMEOUT:
			return "The file replication service cannot populate the system volume because of an internal timeout.The event log may have more information.";
		case FRS_ERR_SYSVOL_IS_BUSY:
			return "The file replication service cannot process the request.The system volume is busy with a previous request.";
		case FRS_ERR_SYSVOL_DEMOTE:
			return "The file replication service cannot stop replicating the system volume because of an internal error.The event log may have more information.";
		case FRS_ERR_INVALID_SERVICE_PARAMETER:
			return "The file replication service detected an invalid parameter.";
		case ERROR_DS_NOT_INSTALLED:
			return "An error occurred while installing the directory service.For more information, see the event log.";
		case ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY:
			return "The directory service evaluated group memberships locally.";
		case ERROR_DS_NO_ATTRIBUTE_OR_VALUE:
			return "The specified directory service attribute or value does not exist.";
		case ERROR_DS_INVALID_ATTRIBUTE_SYNTAX:
			return "The attribute syntax specified to the directory service is invalid.";
		case ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED:
			return "The attribute type specified to the directory service is not defined.";
		case ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS:
			return "The specified directory service attribute or value already exists.";
		case ERROR_DS_BUSY:
			return "The directory service is busy.";
		case ERROR_DS_UNAVAILABLE:
			return "The directory service is unavailable.";
		case ERROR_DS_NO_RIDS_ALLOCATED:
			return "The directory service was unable to allocate a relative identifier.";
		case ERROR_DS_NO_MORE_RIDS:
			return "The directory service has exhausted the pool of relative identifiers.";
		case ERROR_DS_INCORRECT_ROLE_OWNER:
			return "The requested operation could not be performed because the directory service is not the master for that type of operation.";
		case ERROR_DS_RIDMGR_INIT_ERROR:
			return "The directory service was unable to initialize the subsystem that allocates relative identifiers.";
		case ERROR_DS_OBJ_CLASS_VIOLATION:
			return "The requested operation did not satisfy one or more constraints associated with the class of the object.";
		case ERROR_DS_CANT_ON_NON_LEAF:
			return "The directory service can perform the requested operation only on a leaf object.";
		case ERROR_DS_CANT_ON_RDN:
			return "The directory service cannot perform the requested operation on the RDN attribute of an object.";
		case ERROR_DS_CANT_MOD_OBJ_CLASS:
			return "The directory service detected an attempt to modify the object class of an object.";
		case ERROR_DS_CROSS_DOM_MOVE_ERROR:
			return "The requested cross-domain move operation could not be performed.";
		case ERROR_DS_GC_NOT_AVAILABLE:
			return "Unable to contact the global catalog server.";
		case ERROR_SHARED_POLICY:
			return "The policy object is shared and can only be modified at the root.";
		case ERROR_POLICY_OBJECT_NOT_FOUND:
			return "The policy object does not exist.";
		case ERROR_POLICY_ONLY_IN_DS:
			return "The requested policy information is only in the directory service.";
		case ERROR_PROMOTION_ACTIVE:
			return "A domain controller promotion is currently active.";
		case ERROR_NO_PROMOTION_ACTIVE:
			return "A domain controller promotion is not currently active.";
		case ERROR_DS_OPERATIONS_ERROR:
			return "An operations error occurred.";
		case ERROR_DS_PROTOCOL_ERROR:
			return "A protocol error occurred.";
		case ERROR_DS_TIMELIMIT_EXCEEDED:
			return "The time limit for this request was exceeded.";
		case ERROR_DS_SIZELIMIT_EXCEEDED:
			return "The size limit for this request was exceeded.";
		case ERROR_DS_ADMIN_LIMIT_EXCEEDED:
			return "The administrative limit for this request was exceeded.";
		case ERROR_DS_COMPARE_FALSE:
			return "The compare response was false.";
		case ERROR_DS_COMPARE_TRUE:
			return "The compare response was true.";
		case ERROR_DS_AUTH_METHOD_NOT_SUPPORTED:
			return "The requested authentication method is not supported by the server.";
		case ERROR_DS_STRONG_AUTH_REQUIRED:
			return "A more secure authentication method is required for this server.";
		case ERROR_DS_INAPPROPRIATE_AUTH:
			return "Inappropriate authentication.";
		case ERROR_DS_AUTH_UNKNOWN:
			return "The authentication mechanism is unknown.";
		case ERROR_DS_REFERRAL:
			return "A referral was return ed from the server.";
		case ERROR_DS_UNAVAILABLE_CRIT_EXTENSION:
			return "The server does not support the requested critical extension.";
		case ERROR_DS_CONFIDENTIALITY_REQUIRED:
			return "This request requires a secure connection.";
		case ERROR_DS_INAPPROPRIATE_MATCHING:
			return "Inappropriate matching.";
		case ERROR_DS_CONSTRAINT_VIOLATION:
			return "A constraint violation occurred.";
		case ERROR_DS_NO_SUCH_OBJECT:
			return "There is no such object on the server.";
		case ERROR_DS_ALIAS_PROBLEM:
			return "There is an alias problem.";
		case ERROR_DS_INVALID_DN_SYNTAX:
			return "An invalid dn syntax has been specified.";
		case ERROR_DS_IS_LEAF:
			return "The object is a leaf object.";
		case ERROR_DS_ALIAS_DEREF_PROBLEM:
			return "There is an alias dereferencing problem.";
		case ERROR_DS_UNWILLING_TO_PERFORM:
			return "The server is unwilling to process the request.";
		case ERROR_DS_LOOP_DETECT:
			return "A loop has been detected.";
		case ERROR_DS_NAMING_VIOLATION:
			return "There is a naming violation.";
		case ERROR_DS_OBJECT_RESULTS_TOO_LARGE:
			return "The result set is too large.";
		case ERROR_DS_AFFECTS_MULTIPLE_DSAS:
			return "The operation affects multiple DSAs.";
		case ERROR_DS_SERVER_DOWN:
			return "The server is not operational.";
		case ERROR_DS_LOCAL_ERROR:
			return "A local error has occurred.";
		case ERROR_DS_ENCODING_ERROR:
			return "An encoding error has occurred.";
		case ERROR_DS_DECODING_ERROR:
			return "A decoding error has occurred.";
		case ERROR_DS_FILTER_UNKNOWN:
			return "The search filter cannot be recognized.";
		case ERROR_DS_PARAM_ERROR:
			return "One or more parameters are illegal.";
		case ERROR_DS_NOT_SUPPORTED:
			return "The specified method is not supported.";
		case ERROR_DS_NO_RESULTS_RETURNED:
			return "No results were return ed.";
		case ERROR_DS_CONTROL_NOT_FOUND:
			return "The specified control is not supported by the server.";
		case ERROR_DS_CLIENT_LOOP:
			return "A referral loop was detected by the client.";
		case ERROR_DS_REFERRAL_LIMIT_EXCEEDED:
			return "The preset referral limit was exceeded.";
		case ERROR_DS_SORT_CONTROL_MISSING:
			return "The search requires a SORT control.";
		case ERROR_DS_OFFSET_RANGE_ERROR:
			return "The search results exceed the offset range specified.";
		case ERROR_DS_RIDMGR_DISABLED:
			return "The directory service detected the subsystem that allocates relative identifiers is disabled.This can occur as a protective mechanism when the system determines a significant portion of relative identifiers (RIDs) have been exhausted.Please see http://go.microsoft.com/fwlink/p/?linkid=228610 for recommended diagnostic steps and the procedure to re-enable account creation.";
		case ERROR_DS_ROOT_MUST_BE_NC:
			return "The root object must be the head of a naming context.The root object cannot have an instantiated parent.";
		case ERROR_DS_ADD_REPLICA_INHIBITED:
			return "The add replica operation cannot be performed.The naming context must be writeable in order to create the replica.";
		case ERROR_DS_ATT_NOT_DEF_IN_SCHEMA:
			return "A reference to an attribute that is not defined in the schema occurred.";
		case ERROR_DS_MAX_OBJ_SIZE_EXCEEDED:
			return "The maximum size of an object has been exceeded.";
		case ERROR_DS_OBJ_STRING_NAME_EXISTS:
			return "An attempt was made to add an object to the directory with a name that is already in use.";
		case ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA:
			return "An attempt was made to add an object of a class that does not have an RDN defined in the schema.";
		case ERROR_DS_RDN_DOESNT_MATCH_SCHEMA:
			return "An attempt was made to add an object using an RDN that is not the RDN defined in the schema.";
		case ERROR_DS_NO_REQUESTED_ATTS_FOUND:
			return "None of the requested attributes were found on the objects.";
		case ERROR_DS_USER_BUFFER_TO_SMALL:
			return "The user buffer is too small.";
		case ERROR_DS_ATT_IS_NOT_ON_OBJ:
			return "The attribute specified in the operation is not present on the object.";
		case ERROR_DS_ILLEGAL_MOD_OPERATION:
			return "Illegal modify operation.Some aspect of the modification is not permitted.";
		case ERROR_DS_OBJ_TOO_LARGE:
			return "The specified object is too large.";
		case ERROR_DS_BAD_INSTANCE_TYPE:
			return "The specified instance type is not valid.";
		case ERROR_DS_MASTERDSA_REQUIRED:
			return "The operation must be performed at a master DSA.";
		case ERROR_DS_OBJECT_CLASS_REQUIRED:
			return "The object class attribute must be specified.";
		case ERROR_DS_MISSING_REQUIRED_ATT:
			return "A required attribute is missing.";
		case ERROR_DS_ATT_NOT_DEF_FOR_CLASS:
			return "An attempt was made to modify an object to include an attribute that is not legal for its class.";
		case ERROR_DS_ATT_ALREADY_EXISTS:
			return "The specified attribute is already present on the object.";
		case ERROR_DS_CANT_ADD_ATT_VALUES:
			return "The specified attribute is not present, or has no values.";
		case ERROR_DS_SINGLE_VALUE_CONSTRAINT:
			return "Multiple values were specified for an attribute that can have only one value.";
		case ERROR_DS_RANGE_CONSTRAINT:
			return "A value for the attribute was not in the acceptable range of values.";
		case ERROR_DS_ATT_VAL_ALREADY_EXISTS:
			return "The specified value already exists.";
		case ERROR_DS_CANT_REM_MISSING_ATT:
			return "The attribute cannot be removed because it is not present on the object.";
		case ERROR_DS_CANT_REM_MISSING_ATT_VAL:
			return "The attribute value cannot be removed because it is not present on the object.";
		case ERROR_DS_ROOT_CANT_BE_SUBREF:
			return "The specified root object cannot be a subref.";
		case ERROR_DS_NO_CHAINING:
			return "Chaining is not permitted.";
		case ERROR_DS_NO_CHAINED_EVAL:
			return "Chained evaluation is not permitted.";
		case ERROR_DS_NO_PARENT_OBJECT:
			return "The operation could not be performed because the object's parent is either uninstantiated or deleted.";
		case ERROR_DS_PARENT_IS_AN_ALIAS:
			return "Having a parent that is an alias is not permitted.Aliases are leaf objects.";
		case ERROR_DS_CANT_MIX_MASTER_AND_REPS:
			return "The object and parent must be of the same type, either both masters or both replicas.";
		case ERROR_DS_CHILDREN_EXIST:
			return "The operation cannot be performed because child objects exist.This operation can only be performed on a leaf object.";
		case ERROR_DS_OBJ_NOT_FOUND:
			return "Directory object not found.";
		case ERROR_DS_ALIASED_OBJ_MISSING:
			return "The aliased object is missing.";
		case ERROR_DS_BAD_NAME_SYNTAX:
			return "The object name has bad syntax.";
		case ERROR_DS_ALIAS_POINTS_TO_ALIAS:
			return "It is not permitted for an alias to refer to another alias.";
		case ERROR_DS_CANT_DEREF_ALIAS:
			return "The alias cannot be dereferenced.";
		case ERROR_DS_OUT_OF_SCOPE:
			return "The operation is out of scope.";
		case ERROR_DS_OBJECT_BEING_REMOVED:
			return "The operation cannot continue because the object is in the process of being removed.";
		case ERROR_DS_CANT_DELETE_DSA_OBJ:
			return "The DSA object cannot be deleted.";
		case ERROR_DS_GENERIC_ERROR:
			return "A directory service error has occurred.";
		case ERROR_DS_DSA_MUST_BE_INT_MASTER:
			return "The operation can only be performed on an internal master DSA object.";
		case ERROR_DS_CLASS_NOT_DSA:
			return "The object must be of class DSA.";
		case ERROR_DS_INSUFF_ACCESS_RIGHTS:
			return "Insufficient access rights to perform the operation.";
		case ERROR_DS_ILLEGAL_SUPERIOR:
			return "The object cannot be added because the parent is not on the list of possible superiors.";
		case ERROR_DS_ATTRIBUTE_OWNED_BY_SAM:
			return "Access to the attribute is not permitted because the attribute is owned by the Security Accounts Manager (SAM).";
		case ERROR_DS_NAME_TOO_MANY_PARTS:
			return "The name has too many parts.";
		case ERROR_DS_NAME_TOO_LONG:
			return "The name is too long.";
		case ERROR_DS_NAME_VALUE_TOO_LONG:
			return "The name value is too long.";
		case ERROR_DS_NAME_UNPARSEABLE:
			return "The directory service encountered an error parsing a name.";
		case ERROR_DS_NAME_TYPE_UNKNOWN:
			return "The directory service cannot get the attribute type for a name.";
		case ERROR_DS_NOT_AN_OBJECT:
			return "The name does not identify an object; the name identifies a phantom.";
		case ERROR_DS_SEC_DESC_TOO_SHORT:
			return "The security descriptor is too short.";
		case ERROR_DS_SEC_DESC_INVALID:
			return "The security descriptor is invalid.";
		case ERROR_DS_NO_DELETED_NAME:
			return "Failed to create name for deleted object.";
		case ERROR_DS_SUBREF_MUST_HAVE_PARENT:
			return "The parent of a new subref must exist.";
		case ERROR_DS_NCNAME_MUST_BE_NC:
			return "The object must be a naming context.";
		case ERROR_DS_CANT_ADD_SYSTEM_ONLY:
			return "It is not permitted to add an attribute which is owned by the system.";
		case ERROR_DS_CLASS_MUST_BE_CONCRETE:
			return "The class of the object must be structural; you cannot instantiate an abstract class.";
		case ERROR_DS_INVALID_DMD:
			return "The schema object could not be found.";
		case ERROR_DS_OBJ_GUID_EXISTS:
			return "A local object with this GUID (dead or alive) already exists.";
		case ERROR_DS_NOT_ON_BACKLINK:
			return "The operation cannot be performed on a back link.";
		case ERROR_DS_NO_CROSSREF_FOR_NC:
			return "The cross reference for the specified naming context could not be found.";
		case ERROR_DS_SHUTTING_DOWN:
			return "The operation could not be performed because the directory service is shutting down.";
		case ERROR_DS_UNKNOWN_OPERATION:
			return "The directory service request is invalid.";
		case ERROR_DS_INVALID_ROLE_OWNER:
			return "The role owner attribute could not be read.";
		case ERROR_DS_COULDNT_CONTACT_FSMO:
			return "The requested FSMO operation failed.The current FSMO holder could not be contacted.";
		case ERROR_DS_CROSS_NC_DN_RENAME:
			return "Modification of a DN across a naming context is not permitted.";
		case ERROR_DS_CANT_MOD_SYSTEM_ONLY:
			return "The attribute cannot be modified because it is owned by the system.";
		case ERROR_DS_REPLICATOR_ONLY:
			return "Only the replicator can perform this function.";
		case ERROR_DS_OBJ_CLASS_NOT_DEFINED:
			return "The specified class is not defined.";
		case ERROR_DS_OBJ_CLASS_NOT_SUBCLASS:
			return "The specified class is not a subclass.";
		case ERROR_DS_NAME_REFERENCE_INVALID:
			return "The name reference is invalid.";
		case ERROR_DS_CROSS_REF_EXISTS:
			return "A cross reference already exists.";
		case ERROR_DS_CANT_DEL_MASTER_CROSSREF:
			return "It is not permitted to delete a master cross reference.";
		case ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD:
			return "Subtree notifications are only supported on NC heads.";
		case ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX:
			return "Notification filter is too complex.";
		case ERROR_DS_DUP_RDN:
			return "Schema update failed: duplicate RDN.";
		case ERROR_DS_DUP_OID:
			return "Schema update failed: duplicate OID.";
		case ERROR_DS_DUP_MAPI_ID:
			return "Schema update failed: duplicate MAPI identifier.";
		case ERROR_DS_DUP_SCHEMA_ID_GUID:
			return "Schema update failed: duplicate schema-id GUID.";
		case ERROR_DS_DUP_LDAP_DISPLAY_NAME:
			return "Schema update failed: duplicate LDAP display name.";
		case ERROR_DS_SEMANTIC_ATT_TEST:
			return "Schema update failed: range-lower less than range upper.";
		case ERROR_DS_SYNTAX_MISMATCH:
			return "Schema update failed: syntax mismatch.";
		case ERROR_DS_EXISTS_IN_MUST_HAVE:
			return "Schema deletion failed: attribute is used in must-contain.";
		case ERROR_DS_EXISTS_IN_MAY_HAVE:
			return "Schema deletion failed: attribute is used in may-contain.";
		case ERROR_DS_NONEXISTENT_MAY_HAVE:
			return "Schema update failed: attribute in may-contain does not exist.";
		case ERROR_DS_NONEXISTENT_MUST_HAVE:
			return "Schema update failed: attribute in must-contain does not exist.";
		case ERROR_DS_AUX_CLS_TEST_FAIL:
			return "Schema update failed: class in aux-class list does not exist or is not an auxiliary class.";
		case ERROR_DS_NONEXISTENT_POSS_SUP:
			return "Schema update failed: class in poss-superiors does not exist.";
		case ERROR_DS_SUB_CLS_TEST_FAIL:
			return "Schema update failed: class in subclassof list does not exist or does not satisfy hierarchy rules.";
		case ERROR_DS_BAD_RDN_ATT_ID_SYNTAX:
			return "Schema update failed: Rdn-Att-Id has wrong syntax.";
		case ERROR_DS_EXISTS_IN_AUX_CLS:
			return "Schema deletion failed: class is used as auxiliary class.";
		case ERROR_DS_EXISTS_IN_SUB_CLS:
			return "Schema deletion failed: class is used as sub class.";
		case ERROR_DS_EXISTS_IN_POSS_SUP:
			return "Schema deletion failed: class is used as poss superior.";
		case ERROR_DS_RECALCSCHEMA_FAILED:
			return "Schema update failed in recalculating validation cache.";
		case ERROR_DS_TREE_DELETE_NOT_FINISHED:
			return "The tree deletion is not finished.The request must be made again to continue deleting the tree.";
		case ERROR_DS_CANT_DELETE:
			return "The requested delete operation could not be performed.";
		case ERROR_DS_ATT_SCHEMA_REQ_ID:
			return "Cannot read the governs class identifier for the schema record.";
		case ERROR_DS_BAD_ATT_SCHEMA_SYNTAX:
			return "The attribute schema has bad syntax.";
		case ERROR_DS_CANT_CACHE_ATT:
			return "The attribute could not be cached.";
		case ERROR_DS_CANT_CACHE_CLASS:
			return "The class could not be cached.";
		case ERROR_DS_CANT_REMOVE_ATT_CACHE:
			return "The attribute could not be removed from the cache.";
		case ERROR_DS_CANT_REMOVE_CLASS_CACHE:
			return "The class could not be removed from the cache.";
		case ERROR_DS_CANT_RETRIEVE_DN:
			return "The distinguished name attribute could not be read.";
		case ERROR_DS_MISSING_SUPREF:
			return "No superior reference has been configured for the directory service.The directory service is therefore unable to issue referrals to objects outside this forest.";
		case ERROR_DS_CANT_RETRIEVE_INSTANCE:
			return "The instance type attribute could not be retrieved.";
		case ERROR_DS_CODE_INCONSISTENCY:
			return "An internal error has occurred.";
		case ERROR_DS_DATABASE_ERROR:
			return "A database error has occurred.";
		case ERROR_DS_GOVERNSID_MISSING:
			return "The attribute GOVERNSID is missing.";
		case ERROR_DS_MISSING_EXPECTED_ATT:
			return "An expected attribute is missing.";
		case ERROR_DS_NCNAME_MISSING_CR_REF:
			return "The specified naming context is missing a cross reference.";
		case ERROR_DS_SECURITY_CHECKING_ERROR:
			return "A security checking error has occurred.";
		case ERROR_DS_SCHEMA_NOT_LOADED:
			return "The schema is not loaded.";
		case ERROR_DS_SCHEMA_ALLOC_FAILED:
			return "Schema allocation failed.Please check if the machine is running low on memory.";
		case ERROR_DS_ATT_SCHEMA_REQ_SYNTAX:
			return "Failed to obtain the required syntax for the attribute schema.";
		case ERROR_DS_GCVERIFY_ERROR:
			return "The global catalog verification failed.The global catalog is not available or does not support the operation.Some part of the directory is currently not available.";
		case ERROR_DS_DRA_SCHEMA_MISMATCH:
			return "The replication operation failed because of a schema mismatch between the servers involved.";
		case ERROR_DS_CANT_FIND_DSA_OBJ:
			return "The DSA object could not be found.";
		case ERROR_DS_CANT_FIND_EXPECTED_NC:
			return "The naming context could not be found.";
		case ERROR_DS_CANT_FIND_NC_IN_CACHE:
			return "The naming context could not be found in the cache.";
		case ERROR_DS_CANT_RETRIEVE_CHILD:
			return "The child object could not be retrieved.";
		case ERROR_DS_SECURITY_ILLEGAL_MODIFY:
			return "The modification was not permitted for security reasons.";
		case ERROR_DS_CANT_REPLACE_HIDDEN_REC:
			return "The operation cannot replace the hidden record.";
		case ERROR_DS_BAD_HIERARCHY_FILE:
			return "The hierarchy file is invalid.";
		case ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED:
			return "The attempt to build the hierarchy table failed.";
		case ERROR_DS_CONFIG_PARAM_MISSING:
			return "The directory configuration parameter is missing from the registry.";
		case ERROR_DS_COUNTING_AB_INDICES_FAILED:
			return "The attempt to count the address book indices failed.";
		case ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED:
			return "The allocation of the hierarchy table failed.";
		case ERROR_DS_INTERNAL_FAILURE:
			return "The directory service encountered an internal failure.";
		case ERROR_DS_UNKNOWN_ERROR:
			return "The directory service encountered an unknown failure.";
		case ERROR_DS_ROOT_REQUIRES_CLASS_TOP:
			return "A root object requires a class of 'top'.";
		case ERROR_DS_REFUSING_FSMO_ROLES:
			return "This directory server is shutting down, and cannot take ownership of new floating single-master operation roles.";
		case ERROR_DS_MISSING_FSMO_SETTINGS:
			return "The directory service is missing mandatory configuration information, and is unable to determine the ownership of floating single-master operation roles.";
		case ERROR_DS_UNABLE_TO_SURRENDER_ROLES:
			return "The directory service was unable to transfer ownership of one or more floating single-master operation roles to other servers.";
		case ERROR_DS_DRA_GENERIC:
			return "The replication operation failed.";
		case ERROR_DS_DRA_INVALID_PARAMETER:
			return "An invalid parameter was specified for this replication operation.";
		case ERROR_DS_DRA_BUSY:
			return "The directory service is too busy to complete the replication operation at this time.";
		case ERROR_DS_DRA_BAD_DN:
			return "The distinguished name specified for this replication operation is invalid.";
		case ERROR_DS_DRA_BAD_NC:
			return "The naming context specified for this replication operation is invalid.";
		case ERROR_DS_DRA_DN_EXISTS:
			return "The distinguished name specified for this replication operation already exists.";
		case ERROR_DS_DRA_INTERNAL_ERROR:
			return "The replication system encountered an internal error.";
		case ERROR_DS_DRA_INCONSISTENT_DIT:
			return "The replication operation encountered a database inconsistency.";
		case ERROR_DS_DRA_CONNECTION_FAILED:
			return "The server specified for this replication operation could not be contacted.";
		case ERROR_DS_DRA_BAD_INSTANCE_TYPE:
			return "The replication operation encountered an object with an invalid instance type.";
		case ERROR_DS_DRA_OUT_OF_MEM:
			return "The replication operation failed to allocate memory.";
		case ERROR_DS_DRA_MAIL_PROBLEM:
			return "The replication operation encountered an error with the mail system.";
		case ERROR_DS_DRA_REF_ALREADY_EXISTS:
			return "The replication reference information for the target server already exists.";
		case ERROR_DS_DRA_REF_NOT_FOUND:
			return "The replication reference information for the target server does not exist.";
		case ERROR_DS_DRA_OBJ_IS_REP_SOURCE:
			return "The naming context cannot be removed because it is replicated to another server.";
		case ERROR_DS_DRA_DB_ERROR:
			return "The replication operation encountered a database error.";
		case ERROR_DS_DRA_NO_REPLICA:
			return "The naming context is in the process of being removed or is not replicated from the specified server.";
		case ERROR_DS_DRA_ACCESS_DENIED:
			return "Replication access was denied.";
		case ERROR_DS_DRA_NOT_SUPPORTED:
			return "The requested operation is not supported by this version of the directory service.";
		case ERROR_DS_DRA_RPC_CANCELLED:
			return "The replication remote procedure call was cancelled.";
		case ERROR_DS_DRA_SOURCE_DISABLED:
			return "The source server is currently rejecting replication requests.";
		case ERROR_DS_DRA_SINK_DISABLED:
			return "The destination server is currently rejecting replication requests.";
		case ERROR_DS_DRA_NAME_COLLISION:
			return "The replication operation failed due to a collision of object names.";
		case ERROR_DS_DRA_SOURCE_REINSTALLED:
			return "The replication source has been reinstalled.";
		case ERROR_DS_DRA_MISSING_PARENT:
			return "The replication operation failed because a required parent object is missing.";
		case ERROR_DS_DRA_PREEMPTED:
			return "The replication operation was preempted.";
		case ERROR_DS_DRA_ABANDON_SYNC:
			return "The replication synchronization attempt was abandoned because of a lack of updates.";
		case ERROR_DS_DRA_SHUTDOWN:
			return "The replication operation was terminated because the system is shutting down.";
		case ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET:
			return "Synchronization attempt failed because the destination DC is currently waiting to synchronize new partial attributes from source.This condition is normal if a recent schema change modified the partial attribute set.The destination partial attribute set is not a subset of source partial attribute set.";
		case ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA:
			return "The replication synchronization attempt failed because a master replica attempted to sync from a partial replica.";
		case ERROR_DS_DRA_EXTN_CONNECTION_FAILED:
			return "The server specified for this replication operation was contacted, but that server was unable to contact an additional server needed to complete the operation.";
		case ERROR_DS_INSTALL_SCHEMA_MISMATCH:
			return "The version of the directory service schema of the source forest is not compatible with the version of directory service on this computer.";
		case ERROR_DS_DUP_LINK_ID:
			return "Schema update failed: An attribute with the same link identifier already exists.";
		case ERROR_DS_NAME_ERROR_RESOLVING:
			return "Name translation: Generic processing error.";
		case ERROR_DS_NAME_ERROR_NOT_FOUND:
			return "Name translation: Could not find the name or insufficient right to see name.";
		case ERROR_DS_NAME_ERROR_NOT_UNIQUE:
			return "Name translation: Input name mapped to more than one output name.";
		case ERROR_DS_NAME_ERROR_NO_MAPPING:
			return "Name translation: Input name found, but not the associated output format.";
		case ERROR_DS_NAME_ERROR_DOMAIN_ONLY:
			return "Name translation: Unable to resolve completely, only the domain was found.";
		case ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING:
			return "Name translation: Unable to perform purely syntactical mapping at the client without going out to the wire.";
		case ERROR_DS_CONSTRUCTED_ATT_MOD:
			return "Modification of a constructed attribute is not allowed.";
		case ERROR_DS_WRONG_OM_OBJ_CLASS:
			return "The OM-Object-Class specified is incorrect for an attribute with the specified syntax.";
		case ERROR_DS_DRA_REPL_PENDING:
			return "The replication request has been posted; waiting for reply.";
		case ERROR_DS_DS_REQUIRED:
			return "The requested operation requires a directory service, and none was available.";
		case ERROR_DS_INVALID_LDAP_DISPLAY_NAME:
			return "The LDAP display name of the class or attribute contains non-ASCII characters.";
		case ERROR_DS_NON_BASE_SEARCH:
			return "The requested search operation is only supported for base searches.";
		case ERROR_DS_CANT_RETRIEVE_ATTS:
			return "The search failed to retrieve attributes from the database.";
		case ERROR_DS_BACKLINK_WITHOUT_LINK:
			return "The schema update operation tried to add a backward link attribute that has no corresponding forward link.";
		case ERROR_DS_EPOCH_MISMATCH:
			return "Source and destination of a cross-domain move do not agree on the object's epoch number.Either source or destination does not have the latest version of the object.";
		case ERROR_DS_SRC_NAME_MISMATCH:
			return "Source and destination of a cross-domain move do not agree on the object's current name.Either source or destination does not have the latest version of the object.";
		case ERROR_DS_SRC_AND_DST_NC_IDENTICAL:
			return "Source and destination for the cross-domain move operation are identical.Caller should use local move operation instead of cross-domain move operation.";
		case ERROR_DS_DST_NC_MISMATCH:
			return "Source and destination for a cross-domain move are not in agreement on the naming contexts in the forest.Either source or destination does not have the latest version of the Partitions container.";
		case ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC:
			return "Destination of a cross-domain move is not authoritative for the destination naming context.";
		case ERROR_DS_SRC_GUID_MISMATCH:
			return "Source and destination of a cross-domain move do not agree on the identity of the source object.Either source or destination does not have the latest version of the source object.";
		case ERROR_DS_CANT_MOVE_DELETED_OBJECT:
			return "Object being moved across-domains is already known to be deleted by the destination server.The source server does not have the latest version of the source object.";
		case ERROR_DS_PDC_OPERATION_IN_PROGRESS:
			return "Another operation which requires exclusive access to the PDC FSMO is already in progress.";
		case ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD:
			return "A cross-domain move operation failed such that two versions of the moved object exist - one each in the source and destination domains.The destination object needs to be removed to restore the system to a consistent state.";
		case ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION:
			return "This object may not be moved across domain boundaries either because cross-domain moves for this class are disallowed, or the object has some special characteristics, e.g.: trust account or restricted RID, which prevent its move.";
		case ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS:
			return "Can't move objects with memberships across domain boundaries as once moved, this would violate the membership conditions of the account group.Remove the object from any account group memberships and retry.";
		case ERROR_DS_NC_MUST_HAVE_NC_PARENT:
			return "A naming context head must be the immediate child of another naming context head, not of an interior node.";
		case ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE:
			return "The directory cannot validate the proposed naming context name because it does not hold a replica of the naming context above the proposed naming context.Please ensure that the domain naming master role is held by a server that is configured as a global catalog server, and that the server is up to date with its replication partners.(Applies only to Windows 2000 Domain Naming masters.)";
		case ERROR_DS_DST_DOMAIN_NOT_NATIVE:
			return "Destination domain must be in native mode.";
		case ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER:
			return "The operation cannot be performed because the server does not have an infrastructure container in the domain of interest.";
		case ERROR_DS_CANT_MOVE_ACCOUNT_GROUP:
			return "Cross-domain move of non-empty account groups is not allowed.";
		case ERROR_DS_CANT_MOVE_RESOURCE_GROUP:
			return "Cross-domain move of non-empty resource groups is not allowed.";
		case ERROR_DS_INVALID_SEARCH_FLAG:
			return "The search flags for the attribute are invalid.The ANR bit is valid only on attributes of Unicode or Teletex strings.";
		case ERROR_DS_NO_TREE_DELETE_ABOVE_NC:
			return "Tree deletions starting at an object which has an NC head as a descendant are not allowed.";
		case ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE:
			return "The directory service failed to lock a tree in preparation for a tree deletion because the tree was in use.";
		case ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE:
			return "The directory service failed to identify the list of objects to delete while attempting a tree deletion.";
		case ERROR_DS_SAM_INIT_FAILURE:
			return "Security Accounts Manager initialization failed because of the following error: %1.Error Status: 0x%2.Please shutdown this system and reboot into Directory Services Restore Mode, check the event log for more detailed information.";
		case ERROR_DS_SENSITIVE_GROUP_VIOLATION:
			return "Only an administrator can modify the membership list of an administrative group.";
		case ERROR_DS_CANT_MOD_PRIMARYGROUPID:
			return "Cannot change the primary group ID of a domain controller account.";
		case ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD:
			return "An attempt is made to modify the base schema.";
		case ERROR_DS_NONSAFE_SCHEMA_CHANGE:
			return "Adding a new mandatory attribute to an existing class, deleting a mandatory attribute from an existing class, or adding an optional attribute to the special class Top that is not a backlink attribute (directly or through inheritance, for example, by adding or deleting an auxiliary class) is not allowed.";
		case ERROR_DS_SCHEMA_UPDATE_DISALLOWED:
			return "Schema update is not allowed on this DC because the DC is not the schema FSMO Role Owner.";
		case ERROR_DS_CANT_CREATE_UNDER_SCHEMA:
			return "An object of this class cannot be created under the schema container.You can only create attribute-schema and class-schema objects under the schema container.";
		case ERROR_DS_INSTALL_NO_SRC_SCH_VERSION:
			return "The replica/child install failed to get the objectVersion attribute on the schema container on the source DC.Either the attribute is missing on the schema container or the credentials supplied do not have permission to read it.";
		case ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE:
			return "The replica/child install failed to read the objectVersion attribute in the SCHEMA section of the file schema.ini in the system32 directory.";
		case ERROR_DS_INVALID_GROUP_TYPE:
			return "The specified group type is invalid.";
		case ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN:
			return "You cannot nest global groups in a mixed domain if the group is security-enabled.";
		case ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN:
			return "You cannot nest local groups in a mixed domain if the group is security-enabled.";
		case ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER:
			return "A global group cannot have a local group as a member.";
		case ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER:
			return "A global group cannot have a universal group as a member.";
		case ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER:
			return "A universal group cannot have a local group as a member.";
		case ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER:
			return "A global group cannot have a cross-domain member.";
		case ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER:
			return "A local group cannot have another cross domain local group as a member.";
		case ERROR_DS_HAVE_PRIMARY_MEMBERS:
			return "A group with primary members cannot change to a security-disabled group.";
		case ERROR_DS_STRING_SD_CONVERSION_FAILED:
			return "The schema cache load failed to convert the string default SD on a class-schema object.";
		case ERROR_DS_NAMING_MASTER_GC:
			return "Only DSAs configured to be Global Catalog servers should be allowed to hold the Domain Naming Master FSMO role.(Applies only to Windows 2000 servers.)";
		case ERROR_DS_DNS_LOOKUP_FAILURE:
			return "The DSA operation is unable to proceed because of a DNS lookup failure.";
		case ERROR_DS_COULDNT_UPDATE_SPNS:
			return "While processing a change to the DNS Host Name for an object, the Service Principal Name values could not be kept in sync.";
		case ERROR_DS_CANT_RETRIEVE_SD:
			return "The Security Descriptor attribute could not be read.";
		case ERROR_DS_KEY_NOT_UNIQUE:
			return "The object requested was not found, but an object with that key was found.";
		case ERROR_DS_WRONG_LINKED_ATT_SYNTAX:
			return "The syntax of the linked attribute being added is incorrect.Forward links can only have syntax 2.5.5.1, 2.5.5.7, and 2.5.5.14, and backlinks can only have syntax 2.5.5.1.";
		case ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD:
			return "Security Account Manager needs to get the boot password.";
		case ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY:
			return "Security Account Manager needs to get the boot key from floppy disk.";
		case ERROR_DS_CANT_START:
			return "Directory Service cannot start.";
		case ERROR_DS_INIT_FAILURE:
			return "Directory Services could not start.";
		case ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION:
			return "The connection between client and server requires packet privacy or better.";
		case ERROR_DS_SOURCE_DOMAIN_IN_FOREST:
			return "The source domain may not be in the same forest as destination.";
		case ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST:
			return "The destination domain must be in the forest.";
		case ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED:
			return "The operation requires that destination domain auditing be enabled.";
		case ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN:
			return "The operation couldn't locate a DC for the source domain.";
		case ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER:
			return "The source object must be a group or user.";
		case ERROR_DS_SRC_SID_EXISTS_IN_FOREST:
			return "The source object's SID already exists in destination forest.";
		case ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH:
			return "The source and destination object must be of the same type.";
		case ERROR_SAM_INIT_FAILURE:
			return "Security Accounts Manager initialization failed because of the following error: %1.Error Status: 0x%2.Click OK to shut down the system and reboot into Safe Mode.Check the event log for detailed information.";
		case ERROR_DS_DRA_SCHEMA_INFO_SHIP:
			return "Schema information could not be included in the replication request.";
		case ERROR_DS_DRA_SCHEMA_CONFLICT:
			return "The replication operation could not be completed due to a schema incompatibility.";
		case ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT:
			return "The replication operation could not be completed due to a previous schema incompatibility.";
		case ERROR_DS_DRA_OBJ_NC_MISMATCH:
			return "The replication update could not be applied because either the source or the destination has not yet received information regarding a recent cross-domain move operation.";
		case ERROR_DS_NC_STILL_HAS_DSAS:
			return "The requested domain could not be deleted because there exist domain controllers that still host this domain.";
		case ERROR_DS_GC_REQUIRED:
			return "The requested operation can be performed only on a global catalog server.";
		case ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY:
			return "A local group can only be a member of other local groups in the same domain.";
		case ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS:
			return "Foreign security principals cannot be members of universal groups.";
		case ERROR_DS_CANT_ADD_TO_GC:
			return "The attribute is not allowed to be replicated to the GC because of security reasons.";
		case ERROR_DS_NO_CHECKPOINT_WITH_PDC:
			return "The checkpoint with the PDC could not be taken because there too many modifications being processed currently.";
		case ERROR_DS_SOURCE_AUDITING_NOT_ENABLED:
			return "The operation requires that source domain auditing be enabled.";
		case ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC:
			return "Security principal objects can only be created inside domain naming contexts.";
		case ERROR_DS_INVALID_NAME_FOR_SPN:
			return "A Service Principal Name (SPN) could not be constructed because the provided hostname is not in the necessary format.";
		case ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS:
			return "A Filter was passed that uses constructed attributes.";
		case ERROR_DS_UNICODEPWD_NOT_IN_QUOTES:
			return "The unicodePwd attribute value must be enclosed in double quotes.";
		case ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED:
			return "Your computer could not be joined to the domain.You have exceeded the maximum number of computer accounts you are allowed to create in this domain.Contact your system administrator to have this limit reset or increased.";
		case ERROR_DS_MUST_BE_RUN_ON_DST_DC:
			return "For security reasons, the operation must be run on the destination DC.";
		case ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER:
			return "For security reasons, the source DC must be NT4SP4 or greater.";
		case ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ:
			return "Critical Directory Service System objects cannot be deleted during tree delete operations.The tree delete may have been partially performed.";
		case ERROR_DS_INIT_FAILURE_CONSOLE:
			return "Directory Services could not start because of the following error: %1.Error Status: 0x%2.Please click OK to shutdown the system.You can use the recovery console to diagnose the system further.";
		case ERROR_DS_SAM_INIT_FAILURE_CONSOLE:
			return "Security Accounts Manager initialization failed because of the following error: %1.Error Status: 0x%2.Please click OK to shutdown the system.You can use the recovery console to diagnose the system further.";
		case ERROR_DS_FOREST_VERSION_TOO_HIGH:
			return "The version of the operating system is incompatible with the current AD DS forest functional level or AD LDS Configuration Set functional level.You must upgrade to a new version of the operating system before this server can become an AD DS Domain Controller or add an AD LDS Instance in this AD DS Forest or AD LDS Configuration Set.";
		case ERROR_DS_DOMAIN_VERSION_TOO_HIGH:
			return "The version of the operating system installed is incompatible with the current domain functional level.You must upgrade to a new version of the operating system before this server can become a domain controller in this domain.";
		case ERROR_DS_FOREST_VERSION_TOO_LOW:
			return "The version of the operating system installed on this server no longer supports the current AD DS Forest functional level or AD LDS Configuration Set functional level.You must raise the AD DS Forest functional level or AD LDS Configuration Set functional level before this server can become an AD DS Domain Controller or an AD LDS Instance in this Forest or Configuration Set.";
		case ERROR_DS_DOMAIN_VERSION_TOO_LOW:
			return "The version of the operating system installed on this server no longer supports the current domain functional level.You must raise the domain functional level before this server can become a domain controller in this domain.";
		case ERROR_DS_INCOMPATIBLE_VERSION:
			return "The version of the operating system installed on this server is incompatible with the functional level of the domain or forest.";
		case ERROR_DS_LOW_DSA_VERSION:
			return "The functional level of the domain (or forest) cannot be raised to the requested value, because there exist one or more domain controllers in the domain (or forest) that are at a lower incompatible functional level.";
		case ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN:
			return "The forest functional level cannot be raised to the requested value since one or more domains are still in mixed domain mode.All domains in the forest must be in native mode, for you to raise the forest functional level.";
		case ERROR_DS_NOT_SUPPORTED_SORT_ORDER:
			return "The sort order requested is not supported.";
		case ERROR_DS_NAME_NOT_UNIQUE:
			return "The requested name already exists as a unique identifier.";
		case ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4:
			return "The machine account was created pre-NT4.The account needs to be recreated.";
		case ERROR_DS_OUT_OF_VERSION_STORE:
			return "The database is out of version store.";
		case ERROR_DS_INCOMPATIBLE_CONTROLS_USED:
			return "Unable to continue operation because multiple conflicting controls were used.";
		case ERROR_DS_NO_REF_DOMAIN:
			return "Unable to find a valid security descriptor reference domain for this partition.";
		case ERROR_DS_RESERVED_LINK_ID:
			return "Schema update failed: The link identifier is reserved.";
		case ERROR_DS_LINK_ID_NOT_AVAILABLE:
			return "Schema update failed: There are no link identifiers available.";
		case ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER:
			return "An account group cannot have a universal group as a member.";
		case ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE:
			return "Rename or move operations on naming context heads or read-only objects are not allowed.";
		case ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC:
			return "Move operations on objects in the schema naming context are not allowed.";
		case ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG:
			return "A system flag has been set on the object and does not allow the object to be moved or renamed.";
		case ERROR_DS_MODIFYDN_WRONG_GRANDPARENT:
			return "This object is not allowed to change its grandparent container.Moves are not forbidden on this object, but are restricted to sibling containers.";
		case ERROR_DS_NAME_ERROR_TRUST_REFERRAL:
			return "Unable to resolve completely, a referral to another forest is generated.";
		case ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER:
			return "The requested action is not supported on standard server.";
		case ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD:
			return "Could not access a partition of the directory service located on a remote server.Make sure at least one server is running for the partition in question.";
		case ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2:
			return "The directory cannot validate the proposed naming context (or partition) name because it does not hold a replica nor can it contact a replica of the naming context above the proposed naming context.Please ensure that the parent naming context is properly registered in DNS, and at least one replica of this naming context is reachable by the Domain Naming master.";
		case ERROR_DS_THREAD_LIMIT_EXCEEDED:
			return "The thread limit for this request was exceeded.";
		case ERROR_DS_NOT_CLOSEST:
			return "The Global catalog server is not in the closest site.";
		case ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF:
			return "The DS cannot derive a service principal name (SPN) with which to mutually authenticate the target server because the corresponding server object in the local DS database has no serverReference attribute.";
		case ERROR_DS_SINGLE_USER_MODE_FAILED:
			return "The Directory Service failed to enter single user mode.";
		case ERROR_DS_NTDSCRIPT_SYNTAX_ERROR:
			return "The Directory Service cannot parse the script because of a syntax error.";
		case ERROR_DS_NTDSCRIPT_PROCESS_ERROR:
			return "The Directory Service cannot process the script because of an error.";
		case ERROR_DS_DIFFERENT_REPL_EPOCHS:
			return "The directory service cannot perform the requested operation because the servers involved are of different replication epochs (which is usually related to a domain rename that is in progress).";
		case ERROR_DS_DRS_EXTENSIONS_CHANGED:
			return "The directory service binding must be renegotiated due to a change in the server extensions information.";
		case ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR:
			return "Operation not allowed on a disabled cross ref.";
		case ERROR_DS_NO_MSDS_INTID:
			return "Schema update failed: No values for msDS-IntId are available.";
		case ERROR_DS_DUP_MSDS_INTID:
			return "Schema update failed: Duplicate msDS-INtId.Retry the operation.";
		case ERROR_DS_EXISTS_IN_RDNATTID:
			return "Schema deletion failed: attribute is used in rDNAttID.";
		case ERROR_DS_AUTHORIZATION_FAILED:
			return "The directory service failed to authorize the request.";
		case ERROR_DS_INVALID_SCRIPT:
			return "The Directory Service cannot process the script because it is invalid.";
		case ERROR_DS_REMOTE_CROSSREF_OP_FAILED:
			return "The remote create cross reference operation failed on the Domain Naming Master FSMO.The operation's error is in the extended data.";
		case ERROR_DS_CROSS_REF_BUSY:
			return "A cross reference is in use locally with the same name.";
		case ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN:
			return "The DS cannot derive a service principal name (SPN) with which to mutually authenticate the target server because the server's domain has been deleted from the forest.";
		case ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC:
			return "Writeable NCs prevent this DC from demoting.";
		case ERROR_DS_DUPLICATE_ID_FOUND:
			return "The requested object has a non-unique identifier and cannot be retrieved.";
		case ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT:
			return "Insufficient attributes were given to create an object.This object may not exist because it may have been deleted and already garbage collected.";
		case ERROR_DS_GROUP_CONVERSION_ERROR:
			return "The group cannot be converted due to attribute restrictions on the requested group type.";
		case ERROR_DS_CANT_MOVE_APP_BASIC_GROUP:
			return "Cross-domain move of non-empty basic application groups is not allowed.";
		case ERROR_DS_CANT_MOVE_APP_QUERY_GROUP:
			return "Cross-domain move of non-empty query based application groups is not allowed.";
		case ERROR_DS_ROLE_NOT_VERIFIED:
			return "The FSMO role ownership could not be verified because its directory partition has not replicated successfully with at least one replication partner.";
		case ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL:
			return "The target container for a redirection of a well known object container cannot already be a special container.";
		case ERROR_DS_DOMAIN_RENAME_IN_PROGRESS:
			return "The Directory Service cannot perform the requested operation because a domain rename operation is in progress.";
		case ERROR_DS_EXISTING_AD_CHILD_NC:
			return "The directory service detected a child partition below the requested partition name.The partition hierarchy must be created in a top down method.";
		case ERROR_DS_REPL_LIFETIME_EXCEEDED:
			return "The directory service cannot replicate with this server because the time since the last replication with this server has exceeded the tombstone lifetime.";
		case ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER:
			return "The requested operation is not allowed on an object under the system container.";
		case ERROR_DS_LDAP_SEND_QUEUE_FULL:
			return "The LDAP servers network send queue has filled up because the client is not processing the results of its requests fast enough.No more requests will be processed until the client catches up.If the client does not catch up then it will be disconnected.";
		case ERROR_DS_DRA_OUT_SCHEDULE_WINDOW:
			return "The scheduled replication did not take place because the system was too busy to execute the request within the schedule window.The replication queue is overloaded.Consider reducing the number of partners or decreasing the scheduled replication frequency.";
		case ERROR_DS_POLICY_NOT_KNOWN:
			return "At this time, it cannot be determined if the branch replication policy is available on the hub domain controller.Please retry at a later time to account for replication latencies.";
		case ERROR_NO_SITE_SETTINGS_OBJECT:
			return "The site settings object for the specified site does not exist.";
		case ERROR_NO_SECRETS:
			return "The local account store does not contain secret material for the specified account.";
		case ERROR_NO_WRITABLE_DC_FOUND:
			return "Could not find a writable domain controller in the domain.";
		case ERROR_DS_NO_SERVER_OBJECT:
			return "The server object for the domain controller does not exist.";
		case ERROR_DS_NO_NTDSA_OBJECT:
			return "The NTDS Settings object for the domain controller does not exist.";
		case ERROR_DS_NON_ASQ_SEARCH:
			return "The requested search operation is not supported for ASQ searches.";
		case ERROR_DS_AUDIT_FAILURE:
			return "A required audit event could not be generated for the operation.";
		case ERROR_DS_INVALID_SEARCH_FLAG_SUBTREE:
			return "The search flags for the attribute are invalid.The subtree index bit is valid only on single valued attributes.";
		case ERROR_DS_INVALID_SEARCH_FLAG_TUPLE:
			return "The search flags for the attribute are invalid.The tuple index bit is valid only on attributes of Unicode strings.";
		case ERROR_DS_HIERARCHY_TABLE_TOO_DEEP:
			return "The address books are nested too deeply.Failed to build the hierarchy table.";
		case ERROR_DS_DRA_CORRUPT_UTD_VECTOR:
			return "The specified up-to-date-ness vector is corrupt.";
		case ERROR_DS_DRA_SECRETS_DENIED:
			return "The request to replicate secrets is denied.";
		case ERROR_DS_RESERVED_MAPI_ID:
			return "Schema update failed: The MAPI identifier is reserved.";
		case ERROR_DS_MAPI_ID_NOT_AVAILABLE:
			return "Schema update failed: There are no MAPI identifiers available.";
		case ERROR_DS_DRA_MISSING_KRBTGT_SECRET:
			return "The replication operation failed because the required attributes of the local krbtgt object are missing.";
		case ERROR_DS_DOMAIN_NAME_EXISTS_IN_FOREST:
			return "The domain name of the trusted domain already exists in the forest.";
		case ERROR_DS_FLAT_NAME_EXISTS_IN_FOREST:
			return "The flat name of the trusted domain already exists in the forest.";
		case ERROR_INVALID_USER_PRINCIPAL_NAME:
			return "The User Principal Name (UPN) is invalid.";
		case ERROR_DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS:
			return "OID mapped groups cannot have members.";
		case ERROR_DS_OID_NOT_FOUND:
			return "The specified OID cannot be found.";
		case ERROR_DS_DRA_RECYCLED_TARGET:
			return "The replication operation failed because the target object referred by a link value is recycled.";
		case ERROR_DS_DISALLOWED_NC_REDIRECT:
			return "The redirect operation failed because the target object is in a NC different from the domain NC of the current domain controller.";
		case ERROR_DS_HIGH_ADLDS_FFL:
			return "The functional level of the AD LDS configuration set cannot be lowered to the requested value.";
		case ERROR_DS_HIGH_DSA_VERSION:
			return "The functional level of the domain (or forest) cannot be lowered to the requested value.";
		case ERROR_DS_LOW_ADLDS_FFL:
			return "The functional level of the AD LDS configuration set cannot be raised to the requested value, because there exist one or more ADLDS instances that are at a lower incompatible functional level.";
		case ERROR_DOMAIN_SID_SAME_AS_LOCAL_WORKSTATION:
			return "The domain join cannot be completed because the SID of the domain you attempted to join was identical to the SID of this machine.This is a symptom of an improperly cloned operating system install.You should run sysprep on this machine in order to generate a new machine SID.Please see http://go.microsoft.com/fwlink/p/?linkid=168895 for more information.";
		case ERROR_DS_UNDELETE_SAM_VALIDATION_FAILED:
			return "The undelete operation failed because the Sam Account Name or Additional Sam Account Name of the object being undeleted conflicts with an existing live object.";
		case ERROR_INCORRECT_ACCOUNT_TYPE:
			return "The system is not authoritative for the specified account and therefore cannot complete the operation.Please retry the operation using the provider associated with this account.If this is an online provider please use the provider's online site.";
		case DNS_ERROR_RCODE_FORMAT_ERROR:
			return "DNS server unable to interpret format.";
		case DNS_ERROR_RCODE_SERVER_FAILURE:
			return "DNS server failure.";
		case DNS_ERROR_RCODE_NAME_ERROR:
			return "DNS name does not exist.";
		case DNS_ERROR_RCODE_NOT_IMPLEMENTED:
			return "DNS request not supported by name server.";
		case DNS_ERROR_RCODE_REFUSED:
			return "DNS operation refused.";
		case DNS_ERROR_RCODE_YXDOMAIN:
			return "DNS name that ought not exist, does exist.";
		case DNS_ERROR_RCODE_YXRRSET:
			return "DNS RR set that ought not exist, does exist.";
		case DNS_ERROR_RCODE_NXRRSET:
			return "DNS RR set that ought to exist, does not exist.";
		case DNS_ERROR_RCODE_NOTAUTH:
			return "DNS server not authoritative for zone.";
		case DNS_ERROR_RCODE_NOTZONE:
			return "DNS name in update or prereq is not in zone.";
		case DNS_ERROR_RCODE_BADSIG:
			return "DNS signature failed to verify.";
		case DNS_ERROR_RCODE_BADKEY:
			return "DNS bad key.";
		case DNS_ERROR_RCODE_BADTIME:
			return "DNS signature validity expired.";
		case DNS_ERROR_KEYMASTER_REQUIRED:
			return "Only the DNS server acting as the key master for the zone may perform this operation.";
		case DNS_ERROR_NOT_ALLOWED_ON_SIGNED_ZONE:
			return "This operation is not allowed on a zone that is signed or has signing keys.";
		case DNS_ERROR_NSEC3_INCOMPATIBLE_WITH_RSA_SHA1:
			return "NSEC3 is not compatible with the RSA-SHA-1 algorithm.Choose a different algorithm or use NSEC.This value was also named DNS_ERROR_INVALID_NSEC3_PARAMETERS";
		case DNS_ERROR_NOT_ENOUGH_SIGNING_KEY_DESCRIPTORS:
			return "The zone does not have enough signing keys.There must be at least one key signing key (KSK) and at least one zone signing key (ZSK).";
		case DNS_ERROR_UNSUPPORTED_ALGORITHM:
			return "The specified algorithm is not supported.";
		case DNS_ERROR_INVALID_KEY_SIZE:
			return "The specified key size is not supported.";
		case DNS_ERROR_SIGNING_KEY_NOT_ACCESSIBLE:
			return "One or more of the signing keys for a zone are not accessible to the DNS server.Zone signing will not be operational until this error is resolved.";
		case DNS_ERROR_KSP_DOES_NOT_SUPPORT_PROTECTION:
			return "The specified key storage provider does not support DPAPI++ data protection.Zone signing will not be operational until this error is resolved.";
		case DNS_ERROR_UNEXPECTED_DATA_PROTECTION_ERROR:
			return "An unexpected DPAPI++ error was encountered.Zone signing will not be operational until this error is resolved.";
		case DNS_ERROR_UNEXPECTED_CNG_ERROR:
			return "An unexpected crypto error was encountered.Zone signing may not be operational until this error is resolved.";
		case DNS_ERROR_UNKNOWN_SIGNING_PARAMETER_VERSION:
			return "The DNS server encountered a signing key with an unknown version.Zone signing will not be operational until this error is resolved.";
		case DNS_ERROR_KSP_NOT_ACCESSIBLE:
			return "The specified key service provider cannot be opened by the DNS server.";
		case DNS_ERROR_TOO_MANY_SKDS:
			return "The DNS server cannot accept any more signing keys with the specified algorithm and KSK flag value for this zone.";
		case DNS_ERROR_INVALID_ROLLOVER_PERIOD:
			return "The specified rollover period is invalid.";
		case DNS_ERROR_INVALID_INITIAL_ROLLOVER_OFFSET:
			return "The specified initial rollover offset is invalid.";
		case DNS_ERROR_ROLLOVER_IN_PROGRESS:
			return "The specified signing key is already in process of rolling over keys.";
		case DNS_ERROR_STANDBY_KEY_NOT_PRESENT:
			return "The specified signing key does not have a standby key to revoke.";
		case DNS_ERROR_NOT_ALLOWED_ON_ZSK:
			return "This operation is not allowed on a zone signing key (ZSK).";
		case DNS_ERROR_NOT_ALLOWED_ON_ACTIVE_SKD:
			return "This operation is not allowed on an active signing key.";
		case DNS_ERROR_ROLLOVER_ALREADY_QUEUED:
			return "The specified signing key is already queued for rollover.";
		case DNS_ERROR_NOT_ALLOWED_ON_UNSIGNED_ZONE:
			return "This operation is not allowed on an unsigned zone.";
		case DNS_ERROR_BAD_KEYMASTER:
			return "This operation could not be completed because the DNS server listed as the current key master for this zone is down or misconfigured.Resolve the problem on the current key master for this zone or use another DNS server to seize the key master role.";
		case DNS_ERROR_INVALID_SIGNATURE_VALIDITY_PERIOD:
			return "The specified signature validity period is invalid.";
		case DNS_ERROR_INVALID_NSEC3_ITERATION_COUNT:
			return "The specified NSEC3 iteration count is higher than allowed by the minimum key length used in the zone.";
		case DNS_ERROR_DNSSEC_IS_DISABLED:
			return "This operation could not be completed because the DNS server has been configured with DNSSEC features disabled.Enable DNSSEC on the DNS server.";
		case DNS_ERROR_INVALID_XML:
			return "This operation could not be completed because the XML stream received is empty or syntactically invalid.";
		case DNS_ERROR_NO_VALID_TRUST_ANCHORS:
			return "This operation completed, but no trust anchors were added because all of the trust anchors received were either invalid, unsupported, expired, or would not become valid in less than 30 days.";
		case DNS_ERROR_ROLLOVER_NOT_POKEABLE:
			return "The specified signing key is not waiting for parental DS update.";
		case DNS_ERROR_NSEC3_NAME_COLLISION:
			return "Hash collision detected during NSEC3 signing.Specify a different user-provided salt, or use a randomly generated salt, and attempt to sign the zone again.";
		case DNS_ERROR_NSEC_INCOMPATIBLE_WITH_NSEC3_RSA_SHA1:
			return "NSEC is not compatible with the NSEC3-RSA-SHA-1 algorithm.Choose a different algorithm or use NSEC3.";
		case DNS_INFO_NO_RECORDS:
			return "No records found for given DNS query.";
		case DNS_ERROR_BAD_PACKET:
			return "Bad DNS packet.";
		case DNS_ERROR_NO_PACKET:
			return "No DNS packet.";
		case DNS_ERROR_RCODE:
			return "DNS error, check rcode.";
		case DNS_ERROR_UNSECURE_PACKET:
			return "Unsecured DNS packet.";
		case DNS_REQUEST_PENDING:
			return "DNS query request is pending.";
		case DNS_ERROR_INVALID_TYPE:
			return "Invalid DNS type.";
		case DNS_ERROR_INVALID_IP_ADDRESS:
			return "Invalid IP address.";
		case DNS_ERROR_INVALID_PROPERTY:
			return "Invalid property.";
		case DNS_ERROR_TRY_AGAIN_LATER:
			return "Try DNS operation again later.";
		case DNS_ERROR_NOT_UNIQUE:
			return "Record for given name and type is not unique.";
		case DNS_ERROR_NON_RFC_NAME:
			return "DNS name does not comply with RFC specifications.";
		case DNS_STATUS_FQDN:
			return "DNS name is a fully-qualified DNS name.";
		case DNS_STATUS_DOTTED_NAME:
			return "DNS name is dotted (multi-label).";
		case DNS_STATUS_SINGLE_PART_NAME:
			return "DNS name is a single-part name.";
		case DNS_ERROR_INVALID_NAME_CHAR:
			return "DNS name contains an invalid character.";
		case DNS_ERROR_NUMERIC_NAME:
			return "DNS name is entirely numeric.";
		case DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER:
			return "The operation requested is not permitted on a DNS root server.";
		case DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION:
			return "The record could not be created because this part of the DNS namespace has been delegated to another server.";
		case DNS_ERROR_CANNOT_FIND_ROOT_HINTS:
			return "The DNS server could not find a set of root hints.";
		case DNS_ERROR_INCONSISTENT_ROOT_HINTS:
			return "The DNS server found root hints but they were not consistent across all adapters.";
		case DNS_ERROR_DWORD_VALUE_TOO_SMALL:
			return "The specified value is too small for this parameter.";
		case DNS_ERROR_DWORD_VALUE_TOO_LARGE:
			return "The specified value is too large for this parameter.";
		case DNS_ERROR_BACKGROUND_LOADING:
			return "This operation is not allowed while the DNS server is loading zones in the background.Please try again later.";
		case DNS_ERROR_NOT_ALLOWED_ON_RODC:
			return "The operation requested is not permitted on against a DNS server running on a read-only DC.";
		case DNS_ERROR_NOT_ALLOWED_UNDER_DNAME:
			return "No data is allowed to exist underneath a DNAME record.";
		case DNS_ERROR_DELEGATION_REQUIRED:
			return "This operation requires credentials delegation.";
		case DNS_ERROR_INVALID_POLICY_TABLE:
			return "Name resolution policy table has been corrupted.DNS resolution will fail until it is fixed.Contact your network administrator.";
		case DNS_ERROR_ZONE_DOES_NOT_EXIST:
			return "DNS zone does not exist.";
		case DNS_ERROR_NO_ZONE_INFO:
			return "DNS zone information not available.";
		case DNS_ERROR_INVALID_ZONE_OPERATION:
			return "Invalid operation for DNS zone.";
		case DNS_ERROR_ZONE_CONFIGURATION_ERROR:
			return "Invalid DNS zone configuration.";
		case DNS_ERROR_ZONE_HAS_NO_SOA_RECORD:
			return "DNS zone has no start of authority (SOA) record.";
		case DNS_ERROR_ZONE_HAS_NO_NS_RECORDS:
			return "DNS zone has no Name Server (NS) record.";
		case DNS_ERROR_ZONE_LOCKED:
			return "DNS zone is locked.";
		case DNS_ERROR_ZONE_CREATION_FAILED:
			return "DNS zone creation failed.";
		case DNS_ERROR_ZONE_ALREADY_EXISTS:
			return "DNS zone already exists.";
		case DNS_ERROR_AUTOZONE_ALREADY_EXISTS:
			return "DNS automatic zone already exists.";
		case DNS_ERROR_INVALID_ZONE_TYPE:
			return "Invalid DNS zone type.";
		case DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP:
			return "Secondary DNS zone requires master IP address.";
		case DNS_ERROR_ZONE_NOT_SECONDARY:
			return "DNS zone not secondary.";
		case DNS_ERROR_NEED_SECONDARY_ADDRESSES:
			return "Need secondary IP address.";
		case DNS_ERROR_WINS_INIT_FAILED:
			return "WINS initialization failed.";
		case DNS_ERROR_NEED_WINS_SERVERS:
			return "Need WINS servers.";
		case DNS_ERROR_NBSTAT_INIT_FAILED:
			return "NBTSTAT initialization call failed.";
		case DNS_ERROR_SOA_DELETE_INVALID:
			return "Invalid delete of start of authority (SOA).";
		case DNS_ERROR_FORWARDER_ALREADY_EXISTS:
			return "A conditional forwarding zone already exists for that name.";
		case DNS_ERROR_ZONE_REQUIRES_MASTER_IP:
			return "This zone must be configured with one or more master DNS server IP addresses.";
		case DNS_ERROR_ZONE_IS_SHUTDOWN:
			return "The operation cannot be performed because this zone is shut down.";
		case DNS_ERROR_ZONE_LOCKED_FOR_SIGNING:
			return "This operation cannot be performed because the zone is currently being signed.Please try again later.";
		case DNS_ERROR_PRIMARY_REQUIRES_DATAFILE:
			return "Primary DNS zone requires datafile.";
		case DNS_ERROR_INVALID_DATAFILE_NAME:
			return "Invalid datafile name for DNS zone.";
		case DNS_ERROR_DATAFILE_OPEN_FAILURE:
			return "Failed to open datafile for DNS zone.";
		case DNS_ERROR_FILE_WRITEBACK_FAILED:
			return "Failed to write datafile for DNS zone.";
		case DNS_ERROR_DATAFILE_PARSING:
			return "Failure while reading datafile for DNS zone.";
		case DNS_ERROR_RECORD_DOES_NOT_EXIST:
			return "DNS record does not exist.";
		case DNS_ERROR_RECORD_FORMAT:
			return "DNS record format error.";
		case DNS_ERROR_NODE_CREATION_FAILED:
			return "Node creation failure in DNS.";
		case DNS_ERROR_UNKNOWN_RECORD_TYPE:
			return "Unknown DNS record type.";
		case DNS_ERROR_RECORD_TIMED_OUT:
			return "DNS record timed out.";
		case DNS_ERROR_NAME_NOT_IN_ZONE:
			return "Name not in DNS zone.";
		case DNS_ERROR_CNAME_LOOP:
			return "CNAME loop detected.";
		case DNS_ERROR_NODE_IS_CNAME:
			return "Node is a CNAME DNS record.";
		case DNS_ERROR_CNAME_COLLISION:
			return "A CNAME record already exists for given name.";
		case DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT:
			return "Record only at DNS zone root.";
		case DNS_ERROR_RECORD_ALREADY_EXISTS:
			return "DNS record already exists.";
		case DNS_ERROR_SECONDARY_DATA:
			return "Secondary DNS zone data error.";
		case DNS_ERROR_NO_CREATE_CACHE_DATA:
			return "Could not create DNS cache data.";
		case DNS_ERROR_NAME_DOES_NOT_EXIST:
			return "DNS name does not exist.";
		case DNS_WARNING_PTR_CREATE_FAILED:
			return "Could not create pointer (PTR) record.";
		case DNS_WARNING_DOMAIN_UNDELETED:
			return "DNS domain was undeleted.";
		case DNS_ERROR_DS_UNAVAILABLE:
			return "The directory service is unavailable.";
		case DNS_ERROR_DS_ZONE_ALREADY_EXISTS:
			return "DNS zone already exists in the directory service.";
		case DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE:
			return "DNS server not creating or reading the boot file for the directory service integrated DNS zone.";
		case DNS_ERROR_NODE_IS_DNAME:
			return "Node is a DNAME DNS record.";
		case DNS_ERROR_DNAME_COLLISION:
			return "A DNAME record already exists for given name.";
		case DNS_ERROR_ALIAS_LOOP:
			return "An alias loop has been detected with either CNAME or DNAME records.";
		case DNS_INFO_AXFR_COMPLETE:
			return "DNS AXFR (zone transfer) complete.";
		case DNS_ERROR_AXFR:
			return "DNS zone transfer failed.";
		case DNS_INFO_ADDED_LOCAL_WINS:
			return "Added local WINS server.";
		case DNS_STATUS_CONTINUE_NEEDED:
			return "Secure update call needs to continue update request.";
		case DNS_ERROR_NO_TCPIP:
			return "TCP/IP network protocol not installed.";
		case DNS_ERROR_NO_DNS_SERVERS:
			return "No DNS servers configured for local system.";
		case DNS_ERROR_DP_DOES_NOT_EXIST:
			return "The specified directory partition does not exist.";
		case DNS_ERROR_DP_ALREADY_EXISTS:
			return "The specified directory partition already exists.";
		case DNS_ERROR_DP_NOT_ENLISTED:
			return "This DNS server is not enlisted in the specified directory partition.";
		case DNS_ERROR_DP_ALREADY_ENLISTED:
			return "This DNS server is already enlisted in the specified directory partition.";
		case DNS_ERROR_DP_NOT_AVAILABLE:
			return "The directory partition is not available at this time.Please wait a few minutes and try again.";
		case DNS_ERROR_DP_FSMO_ERROR:
			return "The operation failed because the domain naming master FSMO role could not be reached.The domain controller holding the domain naming master FSMO role is down or unable to service the request or is not running Windows Server 2003 or later.";
		case WSAEINTR:
			return "A blocking operation was interrupted by a call to WSACancelBlockingCall.";
		case WSAEBADF:
			return "The file handle supplied is not valid.";
		case WSAEACCES:
			return "An attempt was made to access a socket in a way forbidden by its access permissions.";
		case WSAEFAULT:
			return "The system detected an invalid pointer address in attempting to use a pointer argument in a call.";
		case WSAEINVAL:
			return "An invalid argument was supplied.";
		case WSAEMFILE:
			return "Too many open sockets.";
		case WSAEWOULDBLOCK:
			return "A non-blocking socket operation could not be completed immediately.";
		case WSAEINPROGRESS:
			return "A blocking operation is currently executing.";
		case WSAEALREADY:
			return "An operation was attempted on a non-blocking socket that already had an operation in progress.";
		case WSAENOTSOCK:
			return "An operation was attempted on something that is not a socket.";
		case WSAEDESTADDRREQ:
			return "A required address was omitted from an operation on a socket.";
		case WSAEMSGSIZE:
			return "A message sent on a datagram socket was larger than the internal message buffer or some other network limit, or the buffer used to receive a datagram into was smaller than the datagram itself.";
		case WSAEPROTOTYPE:
			return "A protocol was specified in the socket function call that does not support the semantics of the socket type requested.";
		case WSAENOPROTOOPT:
			return "An unknown, invalid, or unsupported option or level was specified in a getsockopt or setsockopt call.";
		case WSAEPROTONOSUPPORT:
			return "The requested protocol has not been configured into the system, or no implementation for it exists.";
		case WSAESOCKTNOSUPPORT:
			return "The support for the specified socket type does not exist in this address family.";
		case WSAEOPNOTSUPP:
			return "The attempted operation is not supported for the type of object referenced.";
		case WSAEPFNOSUPPORT:
			return "The protocol family has not been configured into the system or no implementation for it exists.";
		case WSAEAFNOSUPPORT:
			return "An address incompatible with the requested protocol was used.";
		case WSAEADDRINUSE:
			return "Only one usage of each socket address (protocol/network address/port) is normally permitted.";
		case WSAEADDRNOTAVAIL:
			return "The requested address is not valid in its context.";
		case WSAENETDOWN:
			return "A socket operation encountered a dead network.";
		case WSAENETUNREACH:
			return "A socket operation was attempted to an unreachable network.";
		case WSAENETRESET:
			return "The connection has been broken due to keep-alive activity detecting a failure while the operation was in progress.";
		case WSAECONNABORTED:
			return "An established connection was aborted by the software in your host machine.";
		case WSAECONNRESET:
			return "An existing connection was forcibly closed by the remote host.";
		case WSAENOBUFS:
			return "An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full.";
		case WSAEISCONN:
			return "A connect request was made on an already connected socket.";
		case WSAENOTCONN:
			return "A request to send or receive data was disallowed because the socket is not connected and (when sending on a datagram socket using a sendto call) no address was supplied.";
		case WSAESHUTDOWN:
			return "A request to send or receive data was disallowed because the socket had already been shut down in that direction with a previous shutdown call.";
		case WSAETOOMANYREFS:
			return "Too many references to some kernel object.";
		case WSAETIMEDOUT:
			return "A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.";
		case WSAECONNREFUSED:
			return "No connection could be made because the target machine actively refused it.";
		case WSAELOOP:
			return "Cannot translate name.";
		case WSAENAMETOOLONG:
			return "Name component or name was too long.";
		case WSAEHOSTDOWN:
			return "A socket operation failed because the destination host was down.";
		case WSAEHOSTUNREACH:
			return "A socket operation was attempted to an unreachable host.";
		case WSAENOTEMPTY:
			return "Cannot remove a directory that is not empty.";
		case WSAEPROCLIM:
			return "A Windows Sockets implementation may have a limit on the number of applications that may use it simultaneously.";
		case WSAEUSERS:
			return "Ran out of quota.";
		case WSAEDQUOT:
			return "Ran out of disk quota.";
		case WSAESTALE:
			return "File handle reference is no longer available.";
		case WSAEREMOTE:
			return "Item is not available locally.";
		case WSASYSNOTREADY:
			return "WSAStartup cannot function at this time because the underlying system it uses to provide network services is currently unavailable.";
		case WSAVERNOTSUPPORTED:
			return "The Windows Sockets version requested is not supported.";
		case WSANOTINITIALISED:
			return "Either the application has not called WSAStartup, or WSAStartup failed.";
		case WSAEDISCON:
			return "Returned by WSARecv or WSARecvFrom to indicate the remote party has initiated a graceful shutdown sequence.";
		case WSAENOMORE:
			return "No more results can be return ed by WSALookupServiceNext.";
		case WSAECANCELLED:
			return "A call to WSALookupServiceEnd was made while this call was still processing.The call has been canceled.";
		case WSAEINVALIDPROCTABLE:
			return "The procedure call table is invalid.";
		case WSAEINVALIDPROVIDER:
			return "The requested service provider is invalid.";
		case WSAEPROVIDERFAILEDINIT:
			return "The requested service provider could not be loaded or initialized.";
		case WSASYSCALLFAILURE:
			return "A system call has failed.";
		case WSASERVICE_NOT_FOUND:
			return "No such service is known.The service cannot be found in the specified name space.";
		case WSATYPE_NOT_FOUND:
			return "The specified class was not found.";
		case WSA_E_NO_MORE:
			return "No more results can be return ed by WSALookupServiceNext.";
		case WSA_E_CANCELLED:
			return "A call to WSALookupServiceEnd was made while this call was still processing.The call has been canceled.";
		case WSAEREFUSED:
			return "A database query failed because it was actively refused.";
		case WSAHOST_NOT_FOUND:
			return "No such host is known.";
		case WSATRY_AGAIN:
			return "This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server.";
		case WSANO_RECOVERY:
			return "A non-recoverable error occurred during a database lookup.";
		case WSANO_DATA:
			return "The requested name is valid, but no data of the requested type was found.";
		case WSA_QOS_RECEIVERS:
			return "At least one reserve has arrived.";
		case WSA_QOS_SENDERS:
			return "At least one path has arrived.";
		case WSA_QOS_NO_SENDERS:
			return "There are no senders.";
		case WSA_QOS_NO_RECEIVERS:
			return "There are no receivers.";
		case WSA_QOS_REQUEST_CONFIRMED:
			return "Reserve has been confirmed.";
		case WSA_QOS_ADMISSION_FAILURE:
			return "Error due to lack of resources.";
		case WSA_QOS_POLICY_FAILURE:
			return "Rejected for administrative reasons - bad credentials.";
		case WSA_QOS_BAD_STYLE:
			return "Unknown or conflicting style.";
		case WSA_QOS_BAD_OBJECT:
			return "Problem with some part of the filterspec or providerspecific buffer in general.";
		case WSA_QOS_TRAFFIC_CTRL_ERROR:
			return "Problem with some part of the flowspec.";
		case WSA_QOS_GENERIC_ERROR:
			return "General QOS error.";
		case WSA_QOS_ESERVICETYPE:
			return "An invalid or unrecognized service type was found in the flowspec.";
		case WSA_QOS_EFLOWSPEC:
			return "An invalid or inconsistent flowspec was found in the QOS structure.";
		case WSA_QOS_EPROVSPECBUF:
			return "Invalid QOS provider-specific buffer.";
		case WSA_QOS_EFILTERSTYLE:
			return "An invalid QOS filter style was used.";
		case WSA_QOS_EFILTERTYPE:
			return "An invalid QOS filter type was used.";
		case WSA_QOS_EFILTERCOUNT:
			return "An incorrect number of QOS FILTERSPECs were specified in the FLOWDESCRIPTOR.";
		case WSA_QOS_EOBJLENGTH:
			return "An object with an invalid ObjectLength field was specified in the QOS provider-specific buffer.";
		case WSA_QOS_EFLOWCOUNT:
			return "An incorrect number of flow descriptors was specified in the QOS structure.";
		case WSA_QOS_EUNKOWNPSOBJ:
			return "An unrecognized object was found in the QOS provider-specific buffer.";
		case WSA_QOS_EPOLICYOBJ:
			return "An invalid policy object was found in the QOS provider-specific buffer.";
		case WSA_QOS_EFLOWDESC:
			return "An invalid QOS flow descriptor was found in the flow descriptor list.";
		case WSA_QOS_EPSFLOWSPEC:
			return "An invalid or inconsistent flowspec was found in the QOS provider specific buffer.";
		case WSA_QOS_EPSFILTERSPEC:
			return "An invalid FILTERSPEC was found in the QOS provider-specific buffer.";
		case WSA_QOS_ESDMODEOBJ:
			return "An invalid shape discard mode object was found in the QOS provider specific buffer.";
		case WSA_QOS_ESHAPERATEOBJ:
			return "An invalid shaping rate object was found in the QOS provider-specific buffer.";
		case WSA_QOS_RESERVED_PETYPE:
			return "A reserved policy element was found in the QOS provider-specific buffer.";
		case WSA_SECURE_HOST_NOT_FOUND:
			return "No such host is known securely.";
		case WSA_IPSEC_NAME_POLICY_ERROR:
			return "Name based IPSEC policy could not be added.";
		case ERROR_INTERNET_X:
			return "See Internet Error Codes and WinInet.h.";
		case ERROR_IPSEC_QM_POLICY_EXISTS:
			return "The specified quick mode policy already exists.";
		case ERROR_IPSEC_QM_POLICY_NOT_FOUND:
			return "The specified quick mode policy was not found.";
		case ERROR_IPSEC_QM_POLICY_IN_USE:
			return "The specified quick mode policy is being used.";
		case ERROR_IPSEC_MM_POLICY_EXISTS:
			return "The specified main mode policy already exists.";
		case ERROR_IPSEC_MM_POLICY_NOT_FOUND:
			return "The specified main mode policy was not found.";
		case ERROR_IPSEC_MM_POLICY_IN_USE:
			return "The specified main mode policy is being used.";
		case ERROR_IPSEC_MM_FILTER_EXISTS:
			return "The specified main mode filter already exists.";
		case ERROR_IPSEC_MM_FILTER_NOT_FOUND:
			return "The specified main mode filter was not found.";
		case ERROR_IPSEC_TRANSPORT_FILTER_EXISTS:
			return "The specified transport mode filter already exists.";
		case ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND:
			return "The specified transport mode filter does not exist.";
		case ERROR_IPSEC_MM_AUTH_EXISTS:
			return "The specified main mode authentication list exists.";
		case ERROR_IPSEC_MM_AUTH_NOT_FOUND:
			return "The specified main mode authentication list was not found.";
		case ERROR_IPSEC_MM_AUTH_IN_USE:
			return "The specified main mode authentication list is being used.";
		case ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND:
			return "The specified default main mode policy was not found.";
		case ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND:
			return "The specified default main mode authentication list was not found.";
		case ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND:
			return "The specified default quick mode policy was not found.";
		case ERROR_IPSEC_TUNNEL_FILTER_EXISTS:
			return "The specified tunnel mode filter exists.";
		case ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND:
			return "The specified tunnel mode filter was not found.";
		case ERROR_IPSEC_MM_FILTER_PENDING_DELETION:
			return "The Main Mode filter is pending deletion.";
		case ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION:
			return "The transport filter is pending deletion.";
		case ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION:
			return "The tunnel filter is pending deletion.";
		case ERROR_IPSEC_MM_POLICY_PENDING_DELETION:
			return "The Main Mode policy is pending deletion.";
		case ERROR_IPSEC_MM_AUTH_PENDING_DELETION:
			return "The Main Mode authentication bundle is pending deletion.";
		case ERROR_IPSEC_QM_POLICY_PENDING_DELETION:
			return "The Quick Mode policy is pending deletion.";
		case WARNING_IPSEC_MM_POLICY_PRUNED:
			return "The Main Mode policy was successfully added, but some of the requested offers are not supported.";
		case WARNING_IPSEC_QM_POLICY_PRUNED:
			return "The Quick Mode policy was successfully added, but some of the requested offers are not supported.";
		case ERROR_IPSEC_IKE_NEG_STATUS_BEGIN:
			return "ERROR_IPSEC_IKE_NEG_STATUS_BEGIN";
		case ERROR_IPSEC_IKE_AUTH_FAIL:
			return "IKE authentication credentials are unacceptable.";
		case ERROR_IPSEC_IKE_ATTRIB_FAIL:
			return "IKE security attributes are unacceptable.";
		case ERROR_IPSEC_IKE_NEGOTIATION_PENDING:
			return "IKE Negotiation in progress.";
		case ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR:
			return "General processing error.";
		case ERROR_IPSEC_IKE_TIMED_OUT:
			return "Negotiation timed out.";
		case ERROR_IPSEC_IKE_NO_CERT:
			return "IKE failed to find valid machine certificate.Contact your Network Security Administrator about installing a valid certificate in the appropriate Certificate Store.";
		case ERROR_IPSEC_IKE_SA_DELETED:
			return "IKE SA deleted by peer before establishment completed.";
		case ERROR_IPSEC_IKE_SA_REAPED:
			return "IKE SA deleted before establishment completed.";
		case ERROR_IPSEC_IKE_MM_ACQUIRE_DROP:
			return "Negotiation request sat in Queue too long.";
		case ERROR_IPSEC_IKE_QM_ACQUIRE_DROP:
			return "Negotiation request sat in Queue too long.";
		case ERROR_IPSEC_IKE_QUEUE_DROP_MM:
			return "Negotiation request sat in Queue too long.";
		case ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM:
			return "Negotiation request sat in Queue too long.";
		case ERROR_IPSEC_IKE_DROP_NO_RESPONSE:
			return "No response from peer.";
		case ERROR_IPSEC_IKE_MM_DELAY_DROP:
			return "Negotiation took too long.";
		case ERROR_IPSEC_IKE_QM_DELAY_DROP:
			return "Negotiation took too long.";
		case ERROR_IPSEC_IKE_ERROR:
			return "Unknown error occurred.";
		case ERROR_IPSEC_IKE_CRL_FAILED:
			return "Certificate Revocation Check failed.";
		case ERROR_IPSEC_IKE_INVALID_KEY_USAGE:
			return "Invalid certificate key usage.";
		case ERROR_IPSEC_IKE_INVALID_CERT_TYPE:
			return "Invalid certificate type.";
		case ERROR_IPSEC_IKE_NO_PRIVATE_KEY:
			return "IKE negotiation failed because the machine certificate used does not have a private key.IPsec certificates require a private key.Contact your Network Security administrator about replacing with a certificate that has a private key.";
		case ERROR_IPSEC_IKE_SIMULTANEOUS_REKEY:
			return "Simultaneous rekeys were detected.";
		case ERROR_IPSEC_IKE_DH_FAIL:
			return "Failure in Diffie-Hellman computation.";
		case ERROR_IPSEC_IKE_CRITICAL_PAYLOAD_NOT_RECOGNIZED:
			return "Don't know how to process critical payload.";
		case ERROR_IPSEC_IKE_INVALID_HEADER:
			return "Invalid header.";
		case ERROR_IPSEC_IKE_NO_POLICY:
			return "No policy configured.";
		case ERROR_IPSEC_IKE_INVALID_SIGNATURE:
			return "Failed to verify signature.";
		case ERROR_IPSEC_IKE_KERBEROS_ERROR:
			return "Failed to authenticate using Kerberos.";
		case ERROR_IPSEC_IKE_NO_PUBLIC_KEY:
			return "Peer's certificate did not have a public key.";
		case ERROR_IPSEC_IKE_PROCESS_ERR:
			return "Error processing error payload.";
		case ERROR_IPSEC_IKE_PROCESS_ERR_SA:
			return "Error processing SA payload.";
		case ERROR_IPSEC_IKE_PROCESS_ERR_PROP:
			return "Error processing Proposal payload.";
		case ERROR_IPSEC_IKE_PROCESS_ERR_TRANS:
			return "Error processing Transform payload.";
		case ERROR_IPSEC_IKE_PROCESS_ERR_KE:
			return "Error processing KE payload.";
		case ERROR_IPSEC_IKE_PROCESS_ERR_ID:
			return "Error processing ID payload.";
		case ERROR_IPSEC_IKE_PROCESS_ERR_CERT:
			return "Error processing Cert payload.";
		case ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ:
			return "Error processing Certificate Request payload.";
		case ERROR_IPSEC_IKE_PROCESS_ERR_HASH:
			return "Error processing Hash payload.";
		case ERROR_IPSEC_IKE_PROCESS_ERR_SIG:
			return "Error processing Signature payload.";
		case ERROR_IPSEC_IKE_PROCESS_ERR_NONCE:
			return "Error processing Nonce payload.";
		case ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY:
			return "Error processing Notify payload.";
		case ERROR_IPSEC_IKE_PROCESS_ERR_DELETE:
			return "Error processing Delete Payload.";
		case ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR:
			return "Error processing VendorId payload.";
		case ERROR_IPSEC_IKE_INVALID_PAYLOAD:
			return "Invalid payload received.";
		case ERROR_IPSEC_IKE_LOAD_SOFT_SA:
			return "Soft SA loaded.";
		case ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN:
			return "Soft SA torn down.";
		case ERROR_IPSEC_IKE_INVALID_COOKIE:
			return "Invalid cookie received.";
		case ERROR_IPSEC_IKE_NO_PEER_CERT:
			return "Peer failed to send valid machine certificate.";
		case ERROR_IPSEC_IKE_PEER_CRL_FAILED:
			return "Certification Revocation check of peer's certificate failed.";
		case ERROR_IPSEC_IKE_POLICY_CHANGE:
			return "New policy invalidated SAs formed with old policy.";
		case ERROR_IPSEC_IKE_NO_MM_POLICY:
			return "There is no available Main Mode IKE policy.";
		case ERROR_IPSEC_IKE_NOTCBPRIV:
			return "Failed to enabled TCB privilege.";
		case ERROR_IPSEC_IKE_SECLOADFAIL:
			return "Failed to load SECURITY.DLL.";
		case ERROR_IPSEC_IKE_FAILSSPINIT:
			return "Failed to obtain security function table dispatch address from SSPI.";
		case ERROR_IPSEC_IKE_FAILQUERYSSP:
			return "Failed to query Kerberos package to obtain max token size.";
		case ERROR_IPSEC_IKE_SRVACQFAIL:
			return "Failed to obtain Kerberos server credentials for ISAKMP/ERROR_IPSEC_IKE service.Kerberos authentication will not function.The most likely reason for this is lack of domain membership.This is normal if your computer is a member of a workgroup.";
		case ERROR_IPSEC_IKE_SRVQUERYCRED:
			return "Failed to determine SSPI principal name for ISAKMP/ERROR_IPSEC_IKE service (QueryCredentialsAttributes).";
		case ERROR_IPSEC_IKE_GETSPIFAIL:
			return "Failed to obtain new SPI for the inbound SA from IPsec driver.The most common cause for this is that the driver does not have the correct filter.Check your policy to verify the filters.";
		case ERROR_IPSEC_IKE_INVALID_FILTER:
			return "Given filter is invalid.";
		case ERROR_IPSEC_IKE_OUT_OF_MEMORY:
			return "Memory allocation failed.";
		case ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED:
			return "Failed to add Security Association to IPsec Driver.The most common cause for this is if the IKE negotiation took too long to complete.If the problem persists, reduce the load on the faulting machine.";
		case ERROR_IPSEC_IKE_INVALID_POLICY:
			return "Invalid policy.";
		case ERROR_IPSEC_IKE_UNKNOWN_DOI:
			return "Invalid DOI.";
		case ERROR_IPSEC_IKE_INVALID_SITUATION:
			return "Invalid situation.";
		case ERROR_IPSEC_IKE_DH_FAILURE:
			return "Diffie-Hellman failure.";
		case ERROR_IPSEC_IKE_INVALID_GROUP:
			return "Invalid Diffie-Hellman group.";
		case ERROR_IPSEC_IKE_ENCRYPT:
			return "Error encrypting payload.";
		case ERROR_IPSEC_IKE_DECRYPT:
			return "Error decrypting payload.";
		case ERROR_IPSEC_IKE_POLICY_MATCH:
			return "Policy match error.";
		case ERROR_IPSEC_IKE_UNSUPPORTED_ID:
			return "Unsupported ID.";
		case ERROR_IPSEC_IKE_INVALID_HASH:
			return "Hash verification failed.";
		case ERROR_IPSEC_IKE_INVALID_HASH_ALG:
			return "Invalid hash algorithm.";
		case ERROR_IPSEC_IKE_INVALID_HASH_SIZE:
			return "Invalid hash size.";
		case ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG:
			return "Invalid encryption algorithm.";
		case ERROR_IPSEC_IKE_INVALID_AUTH_ALG:
			return "Invalid authentication algorithm.";
		case ERROR_IPSEC_IKE_INVALID_SIG:
			return "Invalid certificate signature.";
		case ERROR_IPSEC_IKE_LOAD_FAILED:
			return "Load failed.";
		case ERROR_IPSEC_IKE_RPC_DELETE:
			return "Deleted via RPC call.";
		case ERROR_IPSEC_IKE_BENIGN_REINIT:
			return "Temporary state created to perform reinitialization.This is not a real failure.";
		case ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY:
			return "The lifetime value received in the Responder Lifetime Notify is below the Windows 2000 configured minimum value.Please fix the policy on the peer machine.";
		case ERROR_IPSEC_IKE_INVALID_MAJOR_VERSION:
			return "The recipient cannot handle version of IKE specified in the header.";
		case ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN:
			return "Key length in certificate is too small for configured security requirements.";
		case ERROR_IPSEC_IKE_MM_LIMIT:
			return "Max number of established MM SAs to peer exceeded.";
		case ERROR_IPSEC_IKE_NEGOTIATION_DISABLED:
			return "IKE received a policy that disables negotiation.";
		case ERROR_IPSEC_IKE_QM_LIMIT:
			return "Reached maximum quick mode limit for the main mode.New main mode will be started.";
		case ERROR_IPSEC_IKE_MM_EXPIRED:
			return "Main mode SA lifetime expired or peer sent a main mode delete.";
		case ERROR_IPSEC_IKE_PEER_MM_ASSUMED_INVALID:
			return "Main mode SA assumed to be invalid because peer stopped responding.";
		case ERROR_IPSEC_IKE_CERT_CHAIN_POLICY_MISMATCH:
			return "Certificate doesn't chain to a trusted root in IPsec policy.";
		case ERROR_IPSEC_IKE_UNEXPECTED_MESSAGE_ID:
			return "Received unexpected message ID.";
		case ERROR_IPSEC_IKE_INVALID_AUTH_PAYLOAD:
			return "Received invalid authentication offers.";
		case ERROR_IPSEC_IKE_DOS_COOKIE_SENT:
			return "Sent DoS cookie notify to initiator.";
		case ERROR_IPSEC_IKE_SHUTTING_DOWN:
			return "IKE service is shutting down.";
		case ERROR_IPSEC_IKE_CGA_AUTH_FAILED:
			return "Could not verify binding between CGA address and certificate.";
		case ERROR_IPSEC_IKE_PROCESS_ERR_NATOA:
			return "Error processing NatOA payload.";
		case ERROR_IPSEC_IKE_INVALID_MM_FOR_QM:
			return "Parameters of the main mode are invalid for this quick mode.";
		case ERROR_IPSEC_IKE_QM_EXPIRED:
			return "Quick mode SA was expired by IPsec driver.";
		case ERROR_IPSEC_IKE_TOO_MANY_FILTERS:
			return "Too many dynamically added IKEEXT filters were detected.";
		case ERROR_IPSEC_IKE_NEG_STATUS_END:
			return "ERROR_IPSEC_IKE_NEG_STATUS_END";
		case ERROR_IPSEC_IKE_KILL_DUMMY_NAP_TUNNEL:
			return "NAP reauth succeeded and must delete the dummy NAP IKEv2 tunnel.";
		case ERROR_IPSEC_IKE_INNER_IP_ASSIGNMENT_FAILURE:
			return "Error in assigning inner IP address to initiator in tunnel mode.";
		case ERROR_IPSEC_IKE_REQUIRE_CP_PAYLOAD_MISSING:
			return "Require configuration payload missing.";
		case ERROR_IPSEC_KEY_MODULE_IMPERSONATION_NEGOTIATION_PENDING:
			return "A negotiation running as the security principle who issued the connection is in progress.";
		case ERROR_IPSEC_IKE_COEXISTENCE_SUPPRESS:
			return "SA was deleted due to IKEv1/AuthIP co-existence suppress check.";
		case ERROR_IPSEC_IKE_RATELIMIT_DROP:
			return "Incoming SA request was dropped due to peer IP address rate limiting.";
		case ERROR_IPSEC_IKE_PEER_DOESNT_SUPPORT_MOBIKE:
			return "Peer does not support MOBIKE.";
		case ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE:
			return "SA establishment is not authorized.";
		case ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_FAILURE:
			return "SA establishment is not authorized because there is not a sufficiently strong PKINIT-based credential.";
		case ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE_WITH_OPTIONAL_RETRY:
			return "SA establishment is not authorized.You may need to enter updated or different credentials such as a smartcard.";
		case ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_AND_CERTMAP_FAILURE:
			return "SA establishment is not authorized because there is not a sufficiently strong PKINIT-based credential.This might be related to certificate-to-account mapping failure for the SA.";
		case ERROR_IPSEC_IKE_NEG_STATUS_EXTENDED_END:
			return "ERROR_IPSEC_IKE_NEG_STATUS_EXTENDED_END";
		case ERROR_IPSEC_BAD_SPI:
			return "The SPI in the packet does not match a valid IPsec SA.";
		case ERROR_IPSEC_SA_LIFETIME_EXPIRED:
			return "Packet was received on an IPsec SA whose lifetime has expired.";
		case ERROR_IPSEC_WRONG_SA:
			return "Packet was received on an IPsec SA that does not match the packet characteristics.";
		case ERROR_IPSEC_REPLAY_CHECK_FAILED:
			return "Packet sequence number replay check failed.";
		case ERROR_IPSEC_INVALID_PACKET:
			return "IPsec header and/or trailer in the packet is invalid.";
		case ERROR_IPSEC_INTEGRITY_CHECK_FAILED:
			return "IPsec integrity check failed.";
		case ERROR_IPSEC_CLEAR_TEXT_DROP:
			return "IPsec dropped a clear text packet.";
		case ERROR_IPSEC_AUTH_FIREWALL_DROP:
			return "IPsec dropped an incoming ESP packet in authenticated firewall mode.This drop is benign.";
		case ERROR_IPSEC_THROTTLE_DROP:
			return "IPsec dropped a packet due to DoS throttling.";
		case ERROR_IPSEC_DOSP_BLOCK:
			return "IPsec DoS Protection matched an explicit block rule.";
		case ERROR_IPSEC_DOSP_RECEIVED_MULTICAST:
			return "IPsec DoS Protection received an IPsec specific multicast packet which is not allowed.";
		case ERROR_IPSEC_DOSP_INVALID_PACKET:
			return "IPsec DoS Protection received an incorrectly formatted packet.";
		case ERROR_IPSEC_DOSP_STATE_LOOKUP_FAILED:
			return "IPsec DoS Protection failed to look up state.";
		case ERROR_IPSEC_DOSP_MAX_ENTRIES:
			return "IPsec DoS Protection failed to create state because the maximum number of entries allowed by policy has been reached.";
		case ERROR_IPSEC_DOSP_KEYMOD_NOT_ALLOWED:
			return "IPsec DoS Protection received an IPsec negotiation packet for a keying module which is not allowed by policy.";
		case ERROR_IPSEC_DOSP_NOT_INSTALLED:
			return "IPsec DoS Protection has not been enabled.";
		case ERROR_IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES:
			return "IPsec DoS Protection failed to create a per internal IP rate limit queue because the maximum number of queues allowed by policy has been reached.";
		case ERROR_SXS_SECTION_NOT_FOUND:
			return "The requested section was not present in the activation context.";
		case ERROR_SXS_CANT_GEN_ACTCTX:
			return "The application has failed to start because its side-by-side configuration is incorrect.Please see the application event log or use the command-line sxstrace.exe tool for more detail.";
		case ERROR_SXS_INVALID_ACTCTXDATA_FORMAT:
			return "The application binding data format is invalid.";
		case ERROR_SXS_ASSEMBLY_NOT_FOUND:
			return "The referenced assembly is not installed on your system.";
		case ERROR_SXS_MANIFEST_FORMAT_ERROR:
			return "The manifest file does not begin with the required tag and format information.";
		case ERROR_SXS_MANIFEST_PARSE_ERROR:
			return "The manifest file contains one or more syntax errors.";
		case ERROR_SXS_ACTIVATION_CONTEXT_DISABLED:
			return "The application attempted to activate a disabled activation context.";
		case ERROR_SXS_KEY_NOT_FOUND:
			return "The requested lookup key was not found in any active activation context.";
		case ERROR_SXS_VERSION_CONFLICT:
			return "A component version required by the application conflicts with another component version already active.";
		case ERROR_SXS_WRONG_SECTION_TYPE:
			return "The type requested activation context section does not match the query API used.";
		case ERROR_SXS_THREAD_QUERIES_DISABLED:
			return "Lack of system resources has required isolated activation to be disabled for the current thread of execution.";
		case ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET:
			return "An attempt to set the process default activation context failed because the process default activation context was already set.";
		case ERROR_SXS_UNKNOWN_ENCODING_GROUP:
			return "The encoding group identifier specified is not recognized.";
		case ERROR_SXS_UNKNOWN_ENCODING:
			return "The encoding requested is not recognized.";
		case ERROR_SXS_INVALID_XML_NAMESPACE_URI:
			return "The manifest contains a reference to an invalid URI.";
		case ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED:
			return "The application manifest contains a reference to a dependent assembly which is not installed.";
		case ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED:
			return "The manifest for an assembly used by the application has a reference to a dependent assembly which is not installed.";
		case ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE:
			return "The manifest contains an attribute for the assembly identity which is not valid.";
		case ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE:
			return "The manifest is missing the required default namespace specification on the assembly element.";
		case ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE:
			return "The manifest has a default namespace specified on the assembly element but its value is not \"urn:schemas-microsoft-com:asm.v1\".";
		case ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT:
			return "The private manifest probed has crossed a path with an unsupported reparse point.";
		case ERROR_SXS_DUPLICATE_DLL_NAME:
			return "Two or more components referenced directly or indirectly by the application manifest have files by the same name.";
		case ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME:
			return "Two or more components referenced directly or indirectly by the application manifest have window classes with the same name.";
		case ERROR_SXS_DUPLICATE_CLSID:
			return "Two or more components referenced directly or indirectly by the application manifest have the same COM server CLSIDs.";
		case ERROR_SXS_DUPLICATE_IID:
			return "Two or more components referenced directly or indirectly by the application manifest have proxies for the same COM interface IIDs.";
		case ERROR_SXS_DUPLICATE_TLBID:
			return "Two or more components referenced directly or indirectly by the application manifest have the same COM type library TLBIDs.";
		case ERROR_SXS_DUPLICATE_PROGID:
			return "Two or more components referenced directly or indirectly by the application manifest have the same COM ProgIDs.";
		case ERROR_SXS_DUPLICATE_ASSEMBLY_NAME:
			return "Two or more components referenced directly or indirectly by the application manifest are different versions of the same component which is not permitted.";
		case ERROR_SXS_FILE_HASH_MISMATCH:
			return "A component's file does not match the verification information present in the component manifest.";
		case ERROR_SXS_POLICY_PARSE_ERROR:
			return "The policy manifest contains one or more syntax errors.";
		case ERROR_SXS_XML_E_MISSINGQUOTE:
			return "Manifest Parse Error : A string literal was expected, but no opening quote character was found.";
		case ERROR_SXS_XML_E_COMMENTSYNTAX:
			return "Manifest Parse Error : Incorrect syntax was used in a comment.";
		case ERROR_SXS_XML_E_BADSTARTNAMECHAR:
			return "Manifest Parse Error : A name was started with an invalid character.";
		case ERROR_SXS_XML_E_BADNAMECHAR:
			return "Manifest Parse Error : A name contained an invalid character.";
		case ERROR_SXS_XML_E_BADCHARINSTRING:
			return "Manifest Parse Error : A string literal contained an invalid character.";
		case ERROR_SXS_XML_E_XMLDECLSYNTAX:
			return "Manifest Parse Error : Invalid syntax for an xml declaration.";
		case ERROR_SXS_XML_E_BADCHARDATA:
			return "Manifest Parse Error : An Invalid character was found in text content.";
		case ERROR_SXS_XML_E_MISSINGWHITESPACE:
			return "Manifest Parse Error : Required white space was missing.";
		case ERROR_SXS_XML_E_EXPECTINGTAGEND:
			return "Manifest Parse Error : The character '>' was expected.";
		case ERROR_SXS_XML_E_MISSINGSEMICOLON:
			return "Manifest Parse Error : A semi colon character was expected.";
		case ERROR_SXS_XML_E_UNBALANCEDPAREN:
			return "Manifest Parse Error : Unbalanced parentheses.";
		case ERROR_SXS_XML_E_INTERNALERROR:
			return "Manifest Parse Error : Internal error.";
		case ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE:
			return "Manifest Parse Error : Whitespace is not allowed at this location.";
		case ERROR_SXS_XML_E_INCOMPLETE_ENCODING:
			return "Manifest Parse Error : End of file reached in invalid state for current encoding.";
		case ERROR_SXS_XML_E_MISSING_PAREN:
			return "Manifest Parse Error : Missing parenthesis.";
		case ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE:
			return "Manifest Parse Error : A single or double closing quote character (\' or \") is missing.";
		case ERROR_SXS_XML_E_MULTIPLE_COLONS:
			return "Manifest Parse Error : Multiple colons are not allowed in a name.";
		case ERROR_SXS_XML_E_INVALID_DECIMAL:
			return "Manifest Parse Error : Invalid character for decimal digit.";
		case ERROR_SXS_XML_E_INVALID_HEXIDECIMAL:
			return "Manifest Parse Error : Invalid character for hexadecimal digit.";
		case ERROR_SXS_XML_E_INVALID_UNICODE:
			return "Manifest Parse Error : Invalid unicode character value for this platform.";
		case ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK:
			return "Manifest Parse Error : Expecting whitespace or '?'.";
		case ERROR_SXS_XML_E_UNEXPECTEDENDTAG:
			return "Manifest Parse Error : End tag was not expected at this location.";
		case ERROR_SXS_XML_E_UNCLOSEDTAG:
			return "Manifest Parse Error : The following tags were not closed: %1.";
		case ERROR_SXS_XML_E_DUPLICATEATTRIBUTE:
			return "Manifest Parse Error : Duplicate attribute.";
		case ERROR_SXS_XML_E_MULTIPLEROOTS:
			return "Manifest Parse Error : Only one top level element is allowed in an XML document.";
		case ERROR_SXS_XML_E_INVALIDATROOTLEVEL:
			return "Manifest Parse Error : Invalid at the top level of the document.";
		case ERROR_SXS_XML_E_BADXMLDECL:
			return "Manifest Parse Error : Invalid xml declaration.";
		case ERROR_SXS_XML_E_MISSINGROOT:
			return "Manifest Parse Error : XML document must have a top level element.";
		case ERROR_SXS_XML_E_UNEXPECTEDEOF:
			return "Manifest Parse Error : Unexpected end of file.";
		case ERROR_SXS_XML_E_BADPEREFINSUBSET:
			return "Manifest Parse Error : Parameter entities cannot be used inside markup declarations in an internal subset.";
		case ERROR_SXS_XML_E_UNCLOSEDSTARTTAG:
			return "Manifest Parse Error : Element was not closed.";
		case ERROR_SXS_XML_E_UNCLOSEDENDTAG:
			return "Manifest Parse Error : End element was missing the character '>'.";
		case ERROR_SXS_XML_E_UNCLOSEDSTRING:
			return "Manifest Parse Error : A string literal was not closed.";
		case ERROR_SXS_XML_E_UNCLOSEDCOMMENT:
			return "Manifest Parse Error : A comment was not closed.";
		case ERROR_SXS_XML_E_UNCLOSEDDECL:
			return "Manifest Parse Error : A declaration was not closed.";
		case ERROR_SXS_XML_E_UNCLOSEDCDATA:
			return "Manifest Parse Error : A CDATA section was not closed.";
		case ERROR_SXS_XML_E_RESERVEDNAMESPACE:
			return "Manifest Parse Error : The namespace prefix is not allowed to start with the reserved string \"xml\".";
		case ERROR_SXS_XML_E_INVALIDENCODING:
			return "Manifest Parse Error : System does not support the specified encoding.";
		case ERROR_SXS_XML_E_INVALIDSWITCH:
			return "Manifest Parse Error : Switch from current encoding to specified encoding not supported.";
		case ERROR_SXS_XML_E_BADXMLCASE:
			return "Manifest Parse Error : The name 'xml' is reserved and must be lower case .";
		case ERROR_SXS_XML_E_INVALID_STANDALONE:
			return "Manifest Parse Error : The standalone attribute must have the value 'yes' or 'no'.";
		case ERROR_SXS_XML_E_UNEXPECTED_STANDALONE:
			return "Manifest Parse Error : The standalone attribute cannot be used in external entities.";
		case ERROR_SXS_XML_E_INVALID_VERSION:
			return "Manifest Parse Error : Invalid version number.";
		case ERROR_SXS_XML_E_MISSINGEQUALS:
			return "Manifest Parse Error : Missing equals sign between attribute and attribute value.";
		case ERROR_SXS_PROTECTION_RECOVERY_FAILED:
			return "Assembly Protection Error : Unable to recover the specified assembly.";
		case ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT:
			return "Assembly Protection Error : The public key for an assembly was too short to be allowed.";
		case ERROR_SXS_PROTECTION_CATALOG_NOT_VALID:
			return "Assembly Protection Error : The catalog for an assembly is not valid, or does not match the assembly's manifest.";
		case ERROR_SXS_UNTRANSLATABLE_HRESULT:
			return "An HRESULT could not be translated to a corresponding Win32 error code.";
		case ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING:
			return "Assembly Protection Error : The catalog for an assembly is missing.";
		case ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE:
			return "The supplied assembly identity is missing one or more attributes which must be present in this context.";
		case ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME:
			return "The supplied assembly identity has one or more attribute names that contain characters not permitted in XML names.";
		case ERROR_SXS_ASSEMBLY_MISSING:
			return "The referenced assembly could not be found.";
		case ERROR_SXS_CORRUPT_ACTIVATION_STACK:
			return "The activation context activation stack for the running thread of execution is corrupt.";
		case ERROR_SXS_CORRUPTION:
			return "The application isolation metadata for this process or thread has become corrupt.";
		case ERROR_SXS_EARLY_DEACTIVATION:
			return "The activation context being deactivated is not the most recently activated one.";
		case ERROR_SXS_INVALID_DEACTIVATION:
			return "The activation context being deactivated is not active for the current thread of execution.";
		case ERROR_SXS_MULTIPLE_DEACTIVATION:
			return "The activation context being deactivated has already been deactivated.";
		case ERROR_SXS_PROCESS_TERMINATION_REQUESTED:
			return "A component used by the isolation facility has requested to terminate the process.";
		case ERROR_SXS_RELEASE_ACTIVATION_CONTEXT:
			return "A kernel mode component is releasing a reference on an activation context.";
		case ERROR_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY:
			return "The activation context of system default assembly could not be generated.";
		case ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE:
			return "The value of an attribute in an identity is not within the legal range.";
		case ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME:
			return "The name of an attribute in an identity is not within the legal range.";
		case ERROR_SXS_IDENTITY_DUPLICATE_ATTRIBUTE:
			return "An identity contains two definitions for the same attribute.";
		case ERROR_SXS_IDENTITY_PARSE_ERROR:
			return "The identity string is malformed.This may be due to a trailing comma, more than two unnamed attributes, missing attribute name or missing attribute value.";
		case ERROR_MALFORMED_SUBSTITUTION_STRING:
			return "A string containing localized substitutable content was malformed.Either a dollar sign ($) was followed by something other than a left parenthesis or another dollar sign or an substitution's right parenthesis was not found.";
		case ERROR_SXS_INCORRECT_PUBLIC_KEY_TOKEN:
			return "The public key token does not correspond to the public key specified.";
		case ERROR_UNMAPPED_SUBSTITUTION_STRING:
			return "A substitution string had no mapping.";
		case ERROR_SXS_ASSEMBLY_NOT_LOCKED:
			return "The component must be locked before making the request.";
		case ERROR_SXS_COMPONENT_STORE_CORRUPT:
			return "The component store has been corrupted.";
		case ERROR_ADVANCED_INSTALLER_FAILED:
			return "An advanced installer failed during setup or servicing.";
		case ERROR_XML_ENCODING_MISMATCH:
			return "The character encoding in the XML declaration did not match the encoding used in the document.";
		case ERROR_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT:
			return "The identities of the manifests are identical but their contents are different.";
		case ERROR_SXS_IDENTITIES_DIFFERENT:
			return "The component identities are different.";
		case ERROR_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT:
			return "The assembly is not a deployment.";
		case ERROR_SXS_FILE_NOT_PART_OF_ASSEMBLY:
			return "The file is not a part of the assembly.";
		case ERROR_SXS_MANIFEST_TOO_BIG:
			return "The size of the manifest exceeds the maximum allowed.";
		case ERROR_SXS_SETTING_NOT_REGISTERED:
			return "The setting is not registered.";
		case ERROR_SXS_TRANSACTION_CLOSURE_INCOMPLETE:
			return "One or more required members of the transaction are not present.";
		case ERROR_SMI_PRIMITIVE_INSTALLER_FAILED:
			return "The SMI primitive installer failed during setup or servicing.";
		case ERROR_GENERIC_COMMAND_FAILED:
			return "A generic command executable return ed a result that indicates failure.";
		case ERROR_SXS_FILE_HASH_MISSING:
			return "A component is missing file verification information in its manifest.";
		case ERROR_EVT_INVALID_CHANNEL_PATH:
			return "The specified channel path is invalid.";
		case ERROR_EVT_INVALID_QUERY:
			return "The specified query is invalid.";
		case ERROR_EVT_PUBLISHER_METADATA_NOT_FOUND:
			return "The publisher metadata cannot be found in the resource.";
		case ERROR_EVT_EVENT_TEMPLATE_NOT_FOUND:
			return "The template for an event definition cannot be found in the resource (error = %1).";
		case ERROR_EVT_INVALID_PUBLISHER_NAME:
			return "The specified publisher name is invalid.";
		case ERROR_EVT_INVALID_EVENT_DATA:
			return "The event data raised by the publisher is not compatible with the event template definition in the publisher's manifest.";
		case ERROR_EVT_CHANNEL_NOT_FOUND:
			return "The specified channel could not be found.Check channel configuration.";
		case ERROR_EVT_MALFORMED_XML_TEXT:
			return "The specified xml text was not well-formed.See Extended Error for more details.";
		case ERROR_EVT_SUBSCRIPTION_TO_DIRECT_CHANNEL:
			return "The caller is trying to subscribe to a direct channel which is not allowed.The events for a direct channel go directly to a logfile and cannot be subscribed to.";
		case ERROR_EVT_CONFIGURATION_ERROR:
			return "Configuration error.";
		case ERROR_EVT_QUERY_RESULT_STALE:
			return "The query result is stale / invalid.This may be due to the log being cleared or rolling over after the query result was created.Users should handle this code by releasing the query result object and reissuing the query.";
		case ERROR_EVT_QUERY_RESULT_INVALID_POSITION:
			return "Query result is currently at an invalid position.";
		case ERROR_EVT_NON_VALIDATING_MSXML:
			return "Registered MSXML doesn't support validation.";
		case ERROR_EVT_FILTER_ALREADYSCOPED:
			return "An expression can only be followed by a change of scope operation if it itself evaluates to a node set and is not already part of some other change of scope operation.";
		case ERROR_EVT_FILTER_NOTELTSET:
			return "Can't perform a step operation from a term that does not represent an element set.";
		case ERROR_EVT_FILTER_INVARG:
			return "Left hand side arguments to binary operators must be either attributes, nodes or variables and right hand side arguments must be constants.";
		case ERROR_EVT_FILTER_INVTEST:
			return "A step operation must involve either a node test or, in the case  of a predicate, an algebraic expression against which to test each node in the node set identified by the preceeding node set can be evaluated.";
		case ERROR_EVT_FILTER_INVTYPE:
			return "This data type is currently unsupported.";
		case ERROR_EVT_FILTER_PARSEERR:
			return "A syntax error occurred at position %1!d!.";
		case ERROR_EVT_FILTER_UNSUPPORTEDOP:
			return "This operator is unsupported by this implementation of the filter.";
		case ERROR_EVT_FILTER_UNEXPECTEDTOKEN:
			return "The token encountered was unexpected.";
		case ERROR_EVT_INVALID_OPERATION_OVER_ENABLED_DIRECT_CHANNEL:
			return "The requested operation cannot be performed over an enabled direct channel.The channel must first be disabled before performing the requested operation.";
		case ERROR_EVT_INVALID_CHANNEL_PROPERTY_VALUE:
			return "Channel property %1!s! contains invalid value.The value has invalid type, is outside of valid range, can't be updated or is not supported by this type of channel.";
		case ERROR_EVT_INVALID_PUBLISHER_PROPERTY_VALUE:
			return "Publisher property %1!s! contains invalid value.The value has invalid type, is outside of valid range, can't be updated or is not supported by this type of publisher.";
		case ERROR_EVT_CHANNEL_CANNOT_ACTIVATE:
			return "The channel fails to activate.";
		case ERROR_EVT_FILTER_TOO_COMPLEX:
			return "The xpath expression exceeded supported complexity.Please symplify it or split it into two or more simple expressions.";
		case ERROR_EVT_MESSAGE_NOT_FOUND:
			return "the message resource is present but the message is not found in the string/message table.";
		case ERROR_EVT_MESSAGE_ID_NOT_FOUND:
			return "The message id for the desired message could not be found.";
		case ERROR_EVT_UNRESOLVED_VALUE_INSERT:
			return "The substitution string for insert index (%1) could not be found.";
		case ERROR_EVT_UNRESOLVED_PARAMETER_INSERT:
			return "The description string for parameter reference (%1) could not be found.";
		case ERROR_EVT_MAX_INSERTS_REACHED:
			return "The maximum number of replacements has been reached.";
		case ERROR_EVT_EVENT_DEFINITION_NOT_FOUND:
			return "The event definition could not be found for event id (%1).";
		case ERROR_EVT_MESSAGE_LOCALE_NOT_FOUND:
			return "The locale specific resource for the desired message is not present.";
		case ERROR_EVT_VERSION_TOO_OLD:
			return "The resource is too old to be compatible.";
		case ERROR_EVT_VERSION_TOO_NEW:
			return "The resource is too new to be compatible.";
		case ERROR_EVT_CANNOT_OPEN_CHANNEL_OF_QUERY:
			return "The channel at index %1!d! of the query can't be opened.";
		case ERROR_EVT_PUBLISHER_DISABLED:
			return "The publisher has been disabled and its resource is not available.This usually occurs when the publisher is in the process of being uninstalled or upgraded.";
		case ERROR_EVT_FILTER_OUT_OF_RANGE:
			return "Attempted to create a numeric type that is outside of its valid range.";
		case ERROR_EC_SUBSCRIPTION_CANNOT_ACTIVATE:
			return "The subscription fails to activate.";
		case ERROR_EC_LOG_DISABLED:
			return "The log of the subscription is in disabled state, and can not be used to forward events to.The log must first be enabled before the subscription can be activated.";
		case ERROR_EC_CIRCULAR_FORWARDING:
			return "When forwarding events from local machine to itself, the query of the subscription can't contain target log of the subscription.";
		case ERROR_EC_CREDSTORE_FULL:
			return "The credential store that is used to save credentials is full.";
		case ERROR_EC_CRED_NOT_FOUND:
			return "The credential used by this subscription can't be found in credential store.";
		case ERROR_EC_NO_ACTIVE_CHANNEL:
			return "No active channel is found for the query.";
		case ERROR_MUI_FILE_NOT_FOUND:
			return "The resource loader failed to find MUI file.";
		case ERROR_MUI_INVALID_FILE:
			return "The resource loader failed to load MUI file because the file fail to pass validation.";
		case ERROR_MUI_INVALID_RC_CONFIG:
			return "The RC Manifest is corrupted with garbage data or unsupported version or missing required item.";
		case ERROR_MUI_INVALID_LOCALE_NAME:
			return "The RC Manifest has invalid culture name.";
		case ERROR_MUI_INVALID_ULTIMATEFALLBACK_NAME:
			return "The RC Manifest has invalid ultimatefallback name.";
		case ERROR_MUI_FILE_NOT_LOADED:
			return "The resource loader cache doesn't have loaded MUI entry.";
		case ERROR_RESOURCE_ENUM_USER_STOP:
			return "User stopped resource enumeration.";
		case ERROR_MUI_INTLSETTINGS_UILANG_NOT_INSTALLED:
			return "UI language installation failed.";
		case ERROR_MUI_INTLSETTINGS_INVALID_LOCALE_NAME:
			return "Locale installation failed.";
		case ERROR_MRM_RUNTIME_NO_DEFAULT_OR_NEUTRAL_RESOURCE:
			return "A resource does not have default or neutral value.";
		case ERROR_MRM_INVALID_PRICONFIG:
			return "Invalid PRI config file.";
		case ERROR_MRM_INVALID_FILE_TYPE:
			return "Invalid file type.";
		case ERROR_MRM_UNKNOWN_QUALIFIER:
			return "Unknown qualifier.";
		case ERROR_MRM_INVALID_QUALIFIER_VALUE:
			return "Invalid qualifier value.";
		case ERROR_MRM_NO_CANDIDATE:
			return "No Candidate found.";
		case ERROR_MRM_NO_MATCH_OR_DEFAULT_CANDIDATE:
			return "The ResourceMap or NamedResource has an item that does not have default or neutral resource.";
		case ERROR_MRM_RESOURCE_TYPE_MISMATCH:
			return "Invalid ResourceCandidate type.";
		case ERROR_MRM_DUPLICATE_MAP_NAME:
			return "Duplicate Resource Map.";
		case ERROR_MRM_DUPLICATE_ENTRY:
			return "Duplicate Entry.";
		case ERROR_MRM_INVALID_RESOURCE_IDENTIFIER:
			return "Invalid Resource Identifier.";
		case ERROR_MRM_FILEPATH_TOO_LONG:
			return "Filepath too long.";
		case ERROR_MRM_UNSUPPORTED_DIRECTORY_TYPE:
			return "Unsupported directory type.";
		case ERROR_MRM_INVALID_PRI_FILE:
			return "Invalid PRI File.";
		case ERROR_MRM_NAMED_RESOURCE_NOT_FOUND:
			return "NamedResource Not Found.";
		case ERROR_MRM_MAP_NOT_FOUND:
			return "ResourceMap Not Found.";
		case ERROR_MRM_UNSUPPORTED_PROFILE_TYPE:
			return "Unsupported MRT profile type.";
		case ERROR_MRM_INVALID_QUALIFIER_OPERATOR:
			return "Invalid qualifier operator.";
		case ERROR_MRM_INDETERMINATE_QUALIFIER_VALUE:
			return "Unable to determine qualifier value or qualifier value has not been set.";
		case ERROR_MRM_AUTOMERGE_ENABLED:
			return "Automerge is enabled in the PRI file.";
		case ERROR_MRM_TOO_MANY_RESOURCES:
			return "Too many resources defined for package.";
		case ERROR_MCA_INVALID_CAPABILITIES_STRING:
			return "The monitor return ed a DDC/CI capabilities string that did not comply with the ACCESS.bus 3.0, DDC/CI 1.1 or MCCS 2 Revision 1 specification.";
		case ERROR_MCA_INVALID_VCP_VERSION:
			return "The monitor's VCP Version (0xDF) VCP code return ed an invalid version value.";
		case ERROR_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION:
			return "The monitor does not comply with the MCCS specification it claims to support.";
		case ERROR_MCA_MCCS_VERSION_MISMATCH:
			return "The MCCS version in a monitor's mccs_ver capability does not match the MCCS version the monitor reports when the VCP Version (0xDF) VCP code is used.";
		case ERROR_MCA_UNSUPPORTED_MCCS_VERSION:
			return "The Monitor Configuration API only works with monitors that support the MCCS 1.0 specification, MCCS 2.0 specification or the MCCS 2.0 Revision 1 specification.";
		case ERROR_MCA_INTERNAL_ERROR:
			return "An internal Monitor Configuration API error occurred.";
		case ERROR_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED:
			return "The monitor return ed an invalid monitor technology type.CRT, Plasma and LCD (TFT) are examples of monitor technology types.This error implies that the monitor violated the MCCS 2.0 or MCCS 2.0 Revision 1 specification.";
		case ERROR_MCA_UNSUPPORTED_COLOR_TEMPERATURE:
			return "The caller of SetMonitorColorTemperature specified a color temperature that the current monitor did not support.This error implies that the monitor violated the MCCS 2.0 or MCCS 2.0 Revision 1 specification.";
		case ERROR_AMBIGUOUS_SYSTEM_DEVICE:
			return "The requested system device cannot be identified due to multiple indistinguishable devices potentially matching the identification criteria.";
		case ERROR_SYSTEM_DEVICE_NOT_FOUND:
			return "The requested system device cannot be found.";
		case ERROR_HASH_NOT_SUPPORTED:
			return "Hash generation for the specified hash version and hash type is not enabled on the server.";
		case ERROR_HASH_NOT_PRESENT:
			return "The hash requested from the server is not available or no longer valid.";
		case ERROR_SECONDARY_IC_PROVIDER_NOT_REGISTERED:
			return "The secondary interrupt controller instance that manages the specified interrupt is not registered.";
		case ERROR_GPIO_CLIENT_INFORMATION_INVALID:
			return "The information supplied by the GPIO client driver is invalid.";
		case ERROR_GPIO_VERSION_NOT_SUPPORTED:
			return "The version specified by the GPIO client driver is not supported.";
		case ERROR_GPIO_INVALID_REGISTRATION_PACKET:
			return "The registration packet supplied by the GPIO client driver is not valid.";
		case ERROR_GPIO_OPERATION_DENIED:
			return "The requested operation is not suppported for the specified handle.";
		case ERROR_GPIO_INCOMPATIBLE_CONNECT_MODE:
			return "The requested connect mode conflicts with an existing mode on one or more of the specified pins.";
		case ERROR_GPIO_INTERRUPT_ALREADY_UNMASKED:
			return "The interrupt requested to be unmasked is not masked.";
		case ERROR_CANNOT_SWITCH_RUNLEVEL:
			return "The requested run level switch cannot be completed successfully.";
		case ERROR_INVALID_RUNLEVEL_SETTING:
			return "The service has an invalid run level setting.The run level for a service must not be higher than the run level of its dependent services.";
		case ERROR_RUNLEVEL_SWITCH_TIMEOUT:
			return "The requested run level switch cannot be completed successfully since one or more services will not stop or restart within the specified timeout.";
		case ERROR_RUNLEVEL_SWITCH_AGENT_TIMEOUT:
			return "A run level switch agent did not respond within the specified timeout.";
		case ERROR_RUNLEVEL_SWITCH_IN_PROGRESS:
			return "A run level switch is currently in progress.";
		case ERROR_SERVICES_FAILED_AUTOSTART:
			return "One or more services failed to start during the service startup phase of a run level switch.";
		case ERROR_COM_TASK_STOP_PENDING:
			return "The task stop request cannot be completed immediately since task needs more time to shutdown.";
		case ERROR_INSTALL_OPEN_PACKAGE_FAILED:
			return "Package could not be opened.";
		case ERROR_INSTALL_PACKAGE_NOT_FOUND:
			return "Package was not found.";
		case ERROR_INSTALL_INVALID_PACKAGE:
			return "Package data is invalid.";
		case ERROR_INSTALL_RESOLVE_DEPENDENCY_FAILED:
			return "Package failed updates, dependency or conflict validation.";
		case ERROR_INSTALL_OUT_OF_DISK_SPACE:
			return "There is not enough disk space on your computer.Please free up some space and try again.";
		case ERROR_INSTALL_NETWORK_FAILURE:
			return "There was a problem downloading your product.";
		case ERROR_INSTALL_REGISTRATION_FAILURE:
			return "Package could not be registered.";
		case ERROR_INSTALL_DEREGISTRATION_FAILURE:
			return "Package could not be unregistered.";
		case ERROR_INSTALL_CANCEL:
			return "User cancelled the install request.";
		case ERROR_INSTALL_FAILED:
			return "Install failed.Please contact your software vendor.";
		case ERROR_REMOVE_FAILED:
			return "Removal failed.Please contact your software vendor.";
		case ERROR_PACKAGE_ALREADY_EXISTS:
			return "The provided package is already installed, and reinstallation of the package was blocked.Check the AppXDeployment-Server event log for details.";
		case ERROR_NEEDS_REMEDIATION:
			return "The application cannot be started.Try reinstalling the application to fix the problem.";
		case ERROR_INSTALL_PREREQUISITE_FAILED:
			return "A Prerequisite for an install could not be satisfied.";
		case ERROR_PACKAGE_REPOSITORY_CORRUPTED:
			return "The package repository is corrupted.";
		case ERROR_INSTALL_POLICY_FAILURE:
			return "To install this application you need either a Windows developer license or a sideloading-enabled system.";
		case ERROR_PACKAGE_UPDATING:
			return "The application cannot be started because it is currently updating.";
		case ERROR_DEPLOYMENT_BLOCKED_BY_POLICY:
			return "The package deployment operation is blocked by policy.Please contact your system administrator.";
		case ERROR_PACKAGES_IN_USE:
			return "The package could not be installed because resources it modifies are currently in use.";
		case ERROR_RECOVERY_FILE_CORRUPT:
			return "The package could not be recovered because necessary data for recovery have been corrupted.";
		case ERROR_INVALID_STAGED_SIGNATURE:
			return "The signature is invalid.To register in developer mode, AppxSignature.p7x and AppxBlockMap.xml must be valid or should not be present.";
		case ERROR_DELETING_EXISTING_APPLICATIONDATA_STORE_FAILED:
			return "An error occurred while deleting the package's previously existing application data.";
		case ERROR_INSTALL_PACKAGE_DOWNGRADE:
			return "The package could not be installed because a higher version of this package is already installed.";
		case ERROR_SYSTEM_NEEDS_REMEDIATION:
			return "An error in a system binary was detected.Try refreshing the PC to fix the problem.";
		case ERROR_APPX_INTEGRITY_FAILURE_CLR_NGEN:
			return "A corrupted CLR NGEN binary was detected on the system.";
		case ERROR_RESILIENCY_FILE_CORRUPT:
			return "The operation could not be resumed because necessary data for recovery have been corrupted.";
		case ERROR_INSTALL_FIREWALL_SERVICE_NOT_RUNNING:
			return "The package could not be installed because the Windows Firewall service is not running.Enable the Windows Firewall service and try again.";
		case APPMODEL_ERROR_NO_PACKAGE:
			return "The process has no package identity.";
		case APPMODEL_ERROR_PACKAGE_RUNTIME_CORRUPT:
			return "The package runtime information is corrupted.";
		case APPMODEL_ERROR_PACKAGE_IDENTITY_CORRUPT:
			return "The package identity is corrupted.";
		case APPMODEL_ERROR_NO_APPLICATION:
			return "The process has no application identity.";
		case ERROR_STATE_LOAD_STORE_FAILED:
			return "Loading the state store failed.";
		case ERROR_STATE_GET_VERSION_FAILED:
			return "Retrieving the state version for the application failed.";
		case ERROR_STATE_SET_VERSION_FAILED:
			return "Setting the state version for the application failed.";
		case ERROR_STATE_STRUCTURED_RESET_FAILED:
			return "Resetting the structured state of the application failed.";
		case ERROR_STATE_OPEN_CONTAINER_FAILED:
			return "State Manager failed to open the container.";
		case ERROR_STATE_CREATE_CONTAINER_FAILED:
			return "State Manager failed to create the container.";
		case ERROR_STATE_DELETE_CONTAINER_FAILED:
			return "State Manager failed to delete the container.";
		case ERROR_STATE_READ_SETTING_FAILED:
			return "State Manager failed to read the setting.";
		case ERROR_STATE_WRITE_SETTING_FAILED:
			return "State Manager failed to write the setting.";
		case ERROR_STATE_DELETE_SETTING_FAILED:
			return "State Manager failed to delete the setting.";
		case ERROR_STATE_QUERY_SETTING_FAILED:
			return "State Manager failed to query the setting.";
		case ERROR_STATE_READ_COMPOSITE_SETTING_FAILED:
			return "State Manager failed to read the composite setting.";
		case ERROR_STATE_WRITE_COMPOSITE_SETTING_FAILED:
			return "State Manager failed to write the composite setting.";
		case ERROR_STATE_ENUMERATE_CONTAINER_FAILED:
			return "State Manager failed to enumerate the containers.";
		case ERROR_STATE_ENUMERATE_SETTINGS_FAILED:
			return "State Manager failed to enumerate the settings.";
		case ERROR_STATE_COMPOSITE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED:
			return "The size of the state manager composite setting value has exceeded the limit.";
		case ERROR_STATE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED:
			return "The size of the state manager setting value has exceeded the limit.";
		case ERROR_STATE_SETTING_NAME_SIZE_LIMIT_EXCEEDED:
			return "The length of the state manager setting name has exceeded the limit.";
		case ERROR_STATE_CONTAINER_NAME_SIZE_LIMIT_EXCEEDED:
			return "The length of the state manager container name has exceeded the limit.";
		case ERROR_API_UNAVAILABLE:
			return "This API cannot be used in the context of the caller's application type.";
		default:
		}
		return "";
	}
}

你可能感兴趣的:(Java,Windows技术)