Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

WINERROR (Constants)
 
.
Summary
Values from winerror.h

C# Constants:

const int ERROR_SUCCESS = 0;
const int ERROR_FILE_NOT_FOUND = 2;
const int ERROR_ACCESS_DENIED = 5;

some more in one struct

    /// <summary>provides win32 error codes</summary>
    public struct ERROR
    {
        /// <summary> 0 - The operation completed successfully. </summary>
        public const int SUCCESS = 0;
        /// <summary> 1 - Incorrect function. </summary>
        public const int INVALID_FUNCTION = 1;
        /// <summary> 2 - The system cannot find the file specified. </summary>
        public const int FILE_NOT_FOUND = 2;
        /// <summary> 3 - The system cannot find the path specified. </summary>
        public const int PATH_NOT_FOUND = 3;
        /// <summary> 4 - The system cannot open the file. </summary>
        public const int TOO_MANY_OPEN_FILES = 4;
        /// <summary> 5 - Access is denied. </summary>
        public const int ACCESS_DENIED = 5;
        /// <summary> 6 - The handle is invalid. </summary>
        public const int INVALID_HANDLE = 6;
        /// <summary> 7 - The storage control blocks were destroyed. </summary>
        public const int ARENA_TRASHED = 7;
        /// <summary> 8 - Not enough storage is available to process this command. </summary>
        public const int NOT_ENOUGH_MEMORY = 8;
        /// <summary> 9 - The storage control block address is invalid. </summary>
        public const int INVALID_BLOCK = 9;
        /// <summary> 10 - The environment is incorrect. </summary>
        public const int BAD_ENVIRONMENT = 10;
        /// <summary> 11 - An attempt was made to load a program with an incorrect format. </summary>
        public const int BAD_FORMAT = 11;
        /// <summary> 12 - The access code is invalid. </summary>
        public const int INVALID_ACCESS = 12;
        /// <summary> 13 - The data is invalid. </summary>
        public const int INVALID_DATA = 13;
        /// <summary> 14 - Not enough storage is available to complete this operation. </summary>
        public const int OUTOFMEMORY = 14;
        /// <summary> 15 - The system cannot find the drive specified. </summary>
        public const int INVALID_DRIVE = 15;
        /// <summary> 16 - The directory cannot be removed. </summary>
        public const int CURRENT_DIRECTORY = 16;
        /// <summary> 17 - The system cannot move the file to a different disk drive. </summary>
        public const int NOT_SAME_DEVICE = 17;
        /// <summary> 18 - There are no more files. </summary>
        public const int NO_MORE_FILES = 18;
        /// <summary> 19 - The media is write protected. </summary>
        public const int WRITE_PROTECT = 19;
        /// <summary> 20 - The system cannot find the device specified. </summary>
        public const int BAD_UNIT = 20;
        /// <summary> 21 - The device is not ready. </summary>
        public const int NOT_READY = 21;
        /// <summary> 22 - The device does not recognize the command. </summary>
        public const int BAD_COMMAND = 22;
        /// <summary> 23 - Data error (cyclic redundancy check). </summary>
        public const int CRC = 23;
        /// <summary> 24 - The program issued a command but the command length is incorrect. </summary>
        public const int BAD_LENGTH = 24;
        /// <summary> 25 - The drive cannot locate a specific area or track on the disk. </summary>
        public const int SEEK = 25;
        /// <summary> 26 - The specified disk or diskette cannot be accessed. </summary>
        public const int NOT_DOS_DISK = 26;
        /// <summary> 27 - The drive cannot find the sector requested. </summary>
        public const int SECTOR_NOT_FOUND = 27;
        /// <summary> 28 - The printer is out of paper. </summary>
        public const int OUT_OF_PAPER = 28;
        /// <summary> 29 - The system cannot write to the specified device. </summary>
        public const int WRITE_FAULT = 29;
        /// <summary> 30 - The system cannot read from the specified device. </summary>
        public const int READ_FAULT = 30;
        /// <summary> 31 - A device attached to the system is not functioning. </summary>
        public const int GEN_FAILURE = 31;
        /// <summary> 32 - The process cannot access the file because it is being used by another process. </summary>
        public const int SHARING_VIOLATION = 32;
        /// <summary> 33 - The process cannot access the file because another process has locked a portion of the file. </summary>
        public const int LOCK_VIOLATION = 33;
        /// <summary> 34 - The wrong diskette is in the drive. Insert %2 (Volume Serial Number: %3) into drive %1. </summary>
        public const int WRONG_DISK = 34;
        /// <summary> 36 - Too many files opened for sharing. </summary>
        public const int SHARING_BUFFER_EXCEEDED = 36;
        /// <summary> 38 - Reached the end of the file. </summary>
        public const int HANDLE_EOF = 38;
        /// <summary> 39 - The disk is full. </summary>
        public const int HANDLE_DISK_FULL = 39;
        /// <summary> 50 - The request is not supported. </summary>
        public const int NOT_SUPPORTED = 50;
        /// <summary> 51 - 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. </summary>
        public const int REM_NOT_LIST = 51;
        /// <summary> 52 - You were not connected because a duplicate name exists on the network. Go to System in the Control Panel to change the computer name and try again. </summary>
        public const int DUP_NAME = 52;
        /// <summary> 53 - The network path was not found. </summary>
        public const int BAD_NETPATH = 53;
        /// <summary> 54 - The network is busy. </summary>
        public const int NETWORK_BUSY = 54;
        /// <summary> 55 - The specified network resource or device is no longer available. </summary>
        public const int DEV_NOT_EXIST = 55;
        /// <summary> 56 - The network BIOS command limit has been reached. </summary>
        public const int TOO_MANY_CMDS = 56;
        /// <summary> 57 - A network adapter hardware error occurred. </summary>
        public const int ADAP_HDW_ERR = 57;
        /// <summary> 58 - The specified server cannot perform the requested operation. </summary>
        public const int BAD_NET_RESP = 58;
        /// <summary> 59 - An unexpected network error occurred. </summary>
        public const int UNEXP_NET_ERR = 59;
        /// <summary> 60 - The remote adapter is not compatible. </summary>
        public const int BAD_REM_ADAP = 60;
        /// <summary> 61 - The printer queue is full. </summary>
        public const int PRINTQ_FULL = 61;
        /// <summary> 62 - Space to store the file waiting to be printed is not available on the server. </summary>
        public const int NO_SPOOL_SPACE = 62;
        /// <summary> 63 - Your file waiting to be printed was deleted. </summary>
        public const int PRINT_CANCELLED = 63;
        /// <summary> 64 - The specified network name is no longer available. </summary>
        public const int NETNAME_DELETED = 64;
        /// <summary> 65 - Network access is denied. </summary>
        public const int NETWORK_ACCESS_DENIED = 65;
        /// <summary> 66 - The network resource type is not correct. </summary>
        public const int BAD_DEV_TYPE = 66;
        /// <summary> 67 - The network name cannot be found. </summary>
        public const int BAD_NET_NAME = 67;
        /// <summary> 68 - The name limit for the local computer network adapter card was exceeded. </summary>
        public const int TOO_MANY_NAMES = 68;
        /// <summary> 69 - The network BIOS session limit was exceeded. </summary>
        public const int TOO_MANY_SESS = 69;
        /// <summary> 70 - The remote server has been paused or is in the process of being started. </summary>
        public const int SHARING_PAUSED = 70;
        /// <summary> 71 - 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. </summary>
        public const int REQ_NOT_ACCEP = 71;
        /// <summary> 72 - The specified printer or disk device has been paused. </summary>
        public const int REDIR_PAUSED = 72;
        /// <summary> 80 - The file exists. </summary>
        public const int FILE_EXISTS = 80;
        /// <summary> 82 - The directory or file cannot be created. </summary>
        public const int CANNOT_MAKE = 82;
        /// <summary> 83 - Fail on INT 24. </summary>
        public const int FAIL_I24 = 83;
        /// <summary> 84 - Storage to process this request is not available. </summary>
        public const int OUT_OF_STRUCTURES = 84;
        /// <summary> 85 - The local device name is already in use. </summary>
        public const int ALREADY_ASSIGNED = 85;
        /// <summary> 86 - The specified network password is not correct. </summary>
        public const int INVALID_PASSWORD = 86;
        /// <summary> 87 - The parameter is incorrect. </summary>
        public const int INVALID_PARAMETER = 87;
        /// <summary> 88 - A write fault occurred on the network. </summary>
        public const int NET_WRITE_FAULT = 88;
        /// <summary> 89 - The system cannot start another process at this time. </summary>
        public const int NO_PROC_SLOTS = 89;
        /// <summary> 100 - Cannot create another system semaphore. </summary>
        public const int TOO_MANY_SEMAPHORES = 100;
        /// <summary> 101 - The exclusive semaphore is owned by another process. </summary>
        public const int EXCL_SEM_ALREADY_OWNED = 101;
        /// <summary> 102 - The semaphore is set and cannot be closed. </summary>
        public const int SEM_IS_SET = 102;
        /// <summary> 103 - The semaphore cannot be set again. </summary>
        public const int TOO_MANY_SEM_REQUESTS = 103;
        /// <summary> 104 - Cannot request exclusive semaphores at interrupt time. </summary>
        public const int INVALID_AT_INTERRUPT_TIME = 104;
        /// <summary> 105 - The previous ownership of this semaphore has ended. </summary>
        public const int SEM_OWNER_DIED = 105;
        /// <summary> 106 - Insert the diskette for drive %1. </summary>
        public const int SEM_USER_LIMIT = 106;
        /// <summary> 107 - The program stopped because an alternate diskette was not inserted. </summary>
        public const int DISK_CHANGE = 107;
        /// <summary> 108 - The disk is in use or locked by another process. </summary>
        public const int DRIVE_LOCKED = 108;
        /// <summary> 109 - The pipe has been ended. </summary>
        public const int BROKEN_PIPE = 109;
        /// <summary> 110 - The system cannot open the device or file specified. </summary>
        public const int OPEN_FAILED = 110;
        /// <summary> 111 - The file name is too long. </summary>
        public const int BUFFER_OVERFLOW = 111;
        /// <summary> 112 - There is not enough space on the disk. </summary>
        public const int DISK_FULL = 112;
        /// <summary> 113 - No more internal file identifiers available. </summary>
        public const int NO_MORE_SEARCH_HANDLES = 113;
        /// <summary> 114 - The target internal file identifier is incorrect. </summary>
        public const int INVALID_TARGET_HANDLE = 114;
        /// <summary> 117 - The IOCTL call made by the application program is not correct. </summary>
        public const int INVALID_CATEGORY = 117;
        /// <summary> 118 - The verify-on-write switch parameter value is not correct. </summary>
        public const int INVALID_VERIFY_SWITCH = 118;
        /// <summary> 119 - The system does not support the command requested. </summary>
        public const int BAD_DRIVER_LEVEL = 119;
        /// <summary> 120 - This function is not supported on this system. </summary>
        public const int CALL_NOT_IMPLEMENTED = 120;
        /// <summary> 121 - The semaphore timeout period has expired. </summary>
        public const int SEM_TIMEOUT = 121;
        /// <summary> 122 - The data area passed to a system call is too small. </summary>
        public const int INSUFFICIENT_BUFFER = 122;
        /// <summary> 123 - The filename, directory name, or volume label syntax is incorrect. </summary>
        public const int INVALID_NAME = 123;
        /// <summary> 124 - The system call level is not correct. </summary>
        public const int INVALID_LEVEL = 124;
        /// <summary> 125 - The disk has no volume label. </summary>
        public const int NO_VOLUME_LABEL = 125;
        /// <summary> 126 - The specified module could not be found. </summary>
        public const int MOD_NOT_FOUND = 126;
        /// <summary> 127 - The specified procedure could not be found. </summary>
        public const int PROC_NOT_FOUND = 127;
        /// <summary> 128 - There are no child processes to wait for. </summary>
        public const int WAIT_NO_CHILDREN = 128;
        /// <summary> 129 - The %1 application cannot be run in Win32 mode. </summary>
        public const int CHILD_NOT_COMPLETE = 129;
        /// <summary> 130 - Attempt to use a file handle to an open disk partition for an operation other than raw disk I/O. </summary>
        public const int DIRECT_ACCESS_HANDLE = 130;
        /// <summary> 131 - An attempt was made to move the file pointer before the beginning of the file. </summary>
        public const int NEGATIVE_SEEK = 131;
        /// <summary> 132 - The file pointer cannot be set on the specified device or file. </summary>
        public const int SEEK_ON_DEVICE = 132;
        /// <summary> 133 - A JOIN or SUBST command cannot be used for a drive that contains previously joined drives. </summary>
        public const int IS_JOIN_TARGET = 133;
        /// <summary> 134 - An attempt was made to use a JOIN or SUBST command on a drive that has already been joined. </summary>
        public const int IS_JOINED = 134;
        /// <summary> 135 - An attempt was made to use a JOIN or SUBST command on a drive that has already been substituted. </summary>
        public const int IS_SUBSTED = 135;
        /// <summary> 136 - The system tried to delete the JOIN of a drive that is not joined. </summary>
        public const int NOT_JOINED = 136;
        /// <summary> 137 - The system tried to delete the substitution of a drive that is not substituted. </summary>
        public const int NOT_SUBSTED = 137;
        /// <summary> 138 - The system tried to join a drive to a directory on a joined drive. </summary>
        public const int JOIN_TO_JOIN = 138;
        /// <summary> 139 - The system tried to substitute a drive to a directory on a substituted drive. </summary>
        public const int SUBST_TO_SUBST = 139;
        /// <summary> 140 - The system tried to join a drive to a directory on a substituted drive. </summary>
        public const int JOIN_TO_SUBST = 140;
        /// <summary> 141 - The system tried to SUBST a drive to a directory on a joined drive. </summary>
        public const int SUBST_TO_JOIN = 141;
        /// <summary> 142 - The system cannot perform a JOIN or SUBST at this time. </summary>
        public const int BUSY_DRIVE = 142;
        /// <summary> 143 - The system cannot join or substitute a drive to or for a directory on the same drive. </summary>
        public const int SAME_DRIVE = 143;
        /// <summary> 144 - The directory is not a subdirectory of the root directory. </summary>
        public const int DIR_NOT_ROOT = 144;
        /// <summary> 145 - The directory is not empty. </summary>
        public const int DIR_NOT_EMPTY = 145;
        /// <summary> 146 - The path specified is being used in a substitute. </summary>
        public const int IS_SUBST_PATH = 146;
        /// <summary> 147 - Not enough resources are available to process this command. </summary>
        public const int IS_JOIN_PATH = 147;
        /// <summary> 148 - The path specified cannot be used at this time. </summary>
        public const int PATH_BUSY = 148;
        /// <summary> 149 - An attempt was made to join or substitute a drive for which a directory on the drive is the target of a previous substitute. </summary>
        public const int IS_SUBST_TARGET = 149;
        /// <summary> 150 - System trace information was not specified in your CONFIG.SYS file, or tracing is disallowed. </summary>
        public const int SYSTEM_TRACE = 150;
        /// <summary> 151 - The number of specified semaphore events for DosMuxSemWait is not correct. </summary>
        public const int INVALID_EVENT_COUNT = 151;
        /// <summary> 152 - DosMuxSemWait did not execute; too many semaphores are already set. </summary>
        public const int TOO_MANY_MUXWAITERS = 152;
        /// <summary> 153 - The DosMuxSemWait list is not correct. </summary>
        public const int INVALID_LIST_FORMAT = 153;
        /// <summary> 154 - The volume label you entered exceeds the label character limit of the target file system. </summary>
        public const int LABEL_TOO_LONG = 154;
        /// <summary> 155 - Cannot create another thread. </summary>
        public const int TOO_MANY_TCBS = 155;
        /// <summary> 156 - The recipient process has refused the signal. </summary>
        public const int SIGNAL_REFUSED = 156;
        /// <summary> 157 - The segment is already discarded and cannot be locked. </summary>
        public const int DISCARDED = 157;
        /// <summary> 158 - The segment is already unlocked. </summary>
        public const int NOT_LOCKED = 158;
        /// <summary> 159 - The address for the thread ID is not correct. </summary>
        public const int BAD_THREADID_ADDR = 159;
        /// <summary> 160 - The argument string passed to DosExecPgm is not correct. </summary>
        public const int BAD_ARGUMENTS = 160;
        /// <summary> 161 - The specified path is invalid. </summary>
        public const int BAD_PATHNAME = 161;
        /// <summary> 162 - A signal is already pending. </summary>
        public const int SIGNAL_PENDING = 162;
        /// <summary> 164 - No more threads can be created in the system. </summary>
        public const int MAX_THRDS_REACHED = 164;
        /// <summary> 167 - Unable to lock a region of a file. </summary>
        public const int LOCK_FAILED = 167;
        /// <summary> 170 - The requested resource is in use. </summary>
        public const int BUSY = 170;
        /// <summary> 173 - A lock request was not outstanding for the supplied cancel region. </summary>
        public const int CANCEL_VIOLATION = 173;
        /// <summary> 174 - The file system does not support atomic changes to the lock type. </summary>
        public const int ATOMIC_LOCKS_NOT_SUPPORTED = 174;
        /// <summary> 180 - The system detected a segment number that was not correct. </summary>
        public const int INVALID_SEGMENT_NUMBER = 180;
        /// <summary> 182 - The operating system cannot run %1. </summary>
        public const int INVALID_ORDINAL = 182;
        /// <summary> 183 - Cannot create a file when that file already exists. </summary>
        public const int ALREADY_EXISTS = 183;
        /// <summary> 186 - The flag passed is not correct. </summary>
        public const int INVALID_FLAG_NUMBER = 186;
        /// <summary> 187 - The specified system semaphore name was not found. </summary>
        public const int SEM_NOT_FOUND = 187;
        /// <summary> 188 - The operating system cannot run %1. </summary>
        public const int INVALID_STARTING_CODESEG = 188;
        /// <summary> 189 - The operating system cannot run %1. </summary>
        public const int INVALID_STACKSEG = 189;
        /// <summary> 190 - The operating system cannot run %1. </summary>
        public const int INVALID_MODULETYPE = 190;
        /// <summary> 191 - Cannot run %1 in Win32 mode. </summary>
        public const int INVALID_EXE_SIGNATURE = 191;
        /// <summary> 192 - The operating system cannot run %1. </summary>
        public const int EXE_MARKED_INVALID = 192;
        /// <summary> 193 - %1 is not a valid Win32 application. </summary>
        public const int BAD_EXE_FORMAT = 193;
        /// <summary> 194 - The operating system cannot run %1. </summary>
        public const int ITERATED_DATA_EXCEEDS_64k = 194;
        /// <summary> 195 - The operating system cannot run %1. </summary>
        public const int INVALID_MINALLOCSIZE = 195;
        /// <summary> 196 - The operating system cannot run this application program. </summary>
        public const int DYNLINK_FROM_INVALID_RING = 196;
        /// <summary> 197 - The operating system is not presently configured to run this application. </summary>
        public const int IOPL_NOT_ENABLED = 197;
        /// <summary> 198 - The operating system cannot run %1. </summary>
        public const int INVALID_SEGDPL = 198;
        /// <summary> 199 - The operating system cannot run this application program. </summary>
        public const int AUTODATASEG_EXCEEDS_64k = 199;
        /// <summary> 200 - The code segment cannot be greater than or equal to 64K. </summary>
        public const int RING2SEG_MUST_BE_MOVABLE = 200;
        /// <summary> 201 - The operating system cannot run %1. </summary>
        public const int RELOC_CHAIN_XEEDS_SEGLIM = 201;
        /// <summary> 202 - The operating system cannot run %1. </summary>
        public const int INFLOOP_IN_RELOC_CHAIN = 202;
        /// <summary> 203 - The system could not find the environment option that was entered. </summary>
        public const int ENVVAR_NOT_FOUND = 203;
        /// <summary> 205 - No process in the command subtree has a signal handler. </summary>
        public const int NO_SIGNAL_SENT = 205;
        /// <summary> 206 - The filename or extension is too long. </summary>
        public const int FILENAME_EXCED_RANGE = 206;
        /// <summary> 207 - The ring 2 stack is in use. </summary>
        public const int RING2_STACK_IN_USE = 207;
        /// <summary> 208 - The global filename characters, * or ?, are entered incorrectly or too many global filename characters are specified. </summary>
        public const int META_EXPANSION_TOO_LONG = 208;
        /// <summary> 209 - The signal being posted is not correct. </summary>
        public const int INVALID_SIGNAL_NUMBER = 209;
        /// <summary> 210 - The signal handler cannot be set. </summary>
        public const int THREAD_1_INACTIVE = 210;
        /// <summary> 212 - The segment is locked and cannot be reallocated. </summary>
        public const int LOCKED = 212;
        /// <summary> 214 - Too many dynamic-link modules are attached to this program or dynamic-link module. </summary>
        public const int TOO_MANY_MODULES = 214;
        /// <summary> 215 - Cannot nest calls to LoadModule. </summary>
        public const int NESTING_NOT_ALLOWED = 215;
        /// <summary> 216 - The image file %1 is valid, but is for a machine type other than the current machine. </summary>
        public const int EXE_MACHINE_TYPE_MISMATCH = 216;
        /// <summary> 217 - The image file %1 is signed, unable to modify. </summary>
        public const int EXE_CANNOT_MODIFY_SIGNED_BINARY = 217;
        /// <summary> 218 - The image file %1 is strong signed, unable to modify. </summary>
        public const int EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY = 218;
        /// <summary> 230 - The pipe state is invalid. </summary>
        public const int BAD_PIPE = 230;
        /// <summary> 231 - All pipe instances are busy. </summary>
        public const int PIPE_BUSY = 231;
        /// <summary> 232 - The pipe is being closed. </summary>
        public const int NO_DATA = 232;
        /// <summary> 233 - No process is on the other end of the pipe. </summary>
        public const int PIPE_NOT_CONNECTED = 233;
        /// <summary> 234 - More data is available. </summary>
        public const int MORE_DATA = 234;
        /// <summary> 240 - The session was canceled. </summary>
        public const int VC_DISCONNECTED = 240;
        /// <summary> 254 - The specified extended attribute name was invalid. </summary>
        public const int INVALID_EA_NAME = 254;
        /// <summary> 255 - The extended attributes are inconsistent. </summary>
        public const int EA_LIST_INCONSISTENT = 255;
        /// <summary> 258 - The wait operation timed out. </summary>
        public const int WAIT_TIMEOUT = 258;
        /// <summary> 259 - No more data is available. </summary>
        public const int NO_MORE_ITEMS = 259;
        /// <summary> 266 - The copy functions cannot be used. </summary>
        public const int CANNOT_COPY = 266;
        /// <summary> 267 - The directory name is invalid. </summary>
        public const int DIRECTORY = 267;
        /// <summary> 275 - The extended attributes did not fit in the buffer. </summary>
        public const int EAS_DIDNT_FIT = 275;
        /// <summary> 276 - The extended attribute file on the mounted file system is corrupt. </summary>
        public const int EA_FILE_CORRUPT = 276;
        /// <summary> 277 - The extended attribute table file is full. </summary>
        public const int EA_TABLE_FULL = 277;
        /// <summary> 278 - The specified extended attribute handle is invalid. </summary>
        public const int INVALID_EA_HANDLE = 278;
        /// <summary> 282 - The mounted file system does not support extended attributes. </summary>
        public const int EAS_NOT_SUPPORTED = 282;
        /// <summary> 288 - Attempt to release mutex not owned by caller. </summary>
        public const int NOT_OWNER = 288;
        /// <summary> 298 - Too many posts were made to a semaphore. </summary>
        public const int TOO_MANY_POSTS = 298;
        /// <summary> 299 - Only part of a ReadProcessMemory or WriteProcessMemory request was completed. </summary>
        public const int PARTIAL_COPY = 299;
        /// <summary> 300 - The oplock request is denied. </summary>
        public const int OPLOCK_NOT_GRANTED = 300;
        /// <summary> 301 - An invalid oplock acknowledgment was received by the system. </summary>
        public const int INVALID_OPLOCK_PROTOCOL = 301;
        /// <summary> 302 - The volume is too fragmented to complete this operation. </summary>
        public const int DISK_TOO_FRAGMENTED = 302;
        /// <summary> 303 - The file cannot be opened because it is in the process of being deleted. </summary>
        public const int DELETE_PENDING = 303;
        /// <summary> 317 - The system cannot find message text for message number 0x%1 in the message file for %2. </summary>
        public const int MR_MID_NOT_FOUND = 317;
        /// <summary> 318 - The scope specified was not found. </summary>
        public const int SCOPE_NOT_FOUND = 318;
        /// <summary> 487 - Attempt to access invalid address. </summary>
        public const int INVALID_ADDRESS = 487;
        /// <summary> 534 - Arithmetic result exceeded 32 bits. </summary>
        public const int ARITHMETIC_OVERFLOW = 534;
        /// <summary> 535 - There is a process on other end of the pipe. </summary>
        public const int PIPE_CONNECTED = 535;
        /// <summary> 536 - Waiting for a process to open the other end of the pipe. </summary>
        public const int PIPE_LISTENING = 536;
        /// <summary> 537 - An error occurred in the ACPI subsystem. </summary>
        public const int ACPI_ERROR = 537;
        /// <summary> 538 - An error occurred in the ABIOS subsystem </summary>
        public const int ABIOS_ERROR = 538;
        /// <summary> 539 - A warning occurred in the WX86 subsystem. </summary>
        public const int WX86_WARNING = 539;
        /// <summary> 540 - An error occurred in the WX86 subsystem. </summary>
        public const int WX86_ERROR = 540;
        /// <summary> 541 - 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. </summary>
        public const int TIMER_NOT_CANCELED = 541;
        /// <summary> 542 - Unwind exception code. </summary>
        public const int UNWIND = 542;
        /// <summary> 543 - An invalid or unaligned stack was encountered during an unwind operation. </summary>
        public const int BAD_STACK = 543;
        /// <summary> 544 - An invalid unwind target was encountered during an unwind operation. </summary>
        public const int INVALID_UNWIND_TARGET = 544;
        /// <summary> 545 - Invalid Object Attributes specified to NtCreatePort or invalid Port Attributes specified to NtConnectPort </summary>
        public const int INVALID_PORT_ATTRIBUTES = 545;
        /// <summary> 546 - Length of message passed to NtRequestPort or NtRequestWaitReplyPort was longer than the maximum message allowed by the port. </summary>
        public const int PORT_MESSAGE_TOO_LONG = 546;
        /// <summary> 547 - An attempt was made to lower a quota limit below the current usage. </summary>
        public const int INVALID_QUOTA_LOWER = 547;
        /// <summary> 548 - An attempt was made to attach to a device that was already attached to another device. </summary>
        public const int DEVICE_ALREADY_ATTACHED = 548;
        /// <summary> 549 - An attempt was made to execute an instruction at an unaligned address and the host system does not support unaligned instruction references. </summary>
        public const int INSTRUCTION_MISALIGNMENT = 549;
        /// <summary> 550 - Profiling not started. </summary>
        public const int PROFILING_NOT_STARTED = 550;
        /// <summary> 551 - Profiling not stopped. </summary>
        public const int PROFILING_NOT_STOPPED = 551;
        /// <summary> 552 - The passed ACL did not contain the minimum required information. </summary>
        public const int COULD_NOT_INTERPRET = 552;
        /// <summary> 553 - The number of active profiling objects is at the maximum and no more may be started. </summary>
        public const int PROFILING_AT_LIMIT = 553;
        /// <summary> 554 - Used to indicate that an operation cannot continue without blocking for I/O. </summary>
        public const int CANT_WAIT = 554;
        /// <summary> 555 - Indicates that a thread attempted to terminate itself by default (called NtTerminateThread with NULL) and it was the last thread in the current process. </summary>
        public const int CANT_TERMINATE_SELF = 555;
        /// <summary> 556 - If an MM error is returned 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. </summary>
        public const int UNEXPECTED_MM_CREATE_ERR = 556;
        /// <summary> 557 - If an MM error is returned 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. </summary>
        public const int UNEXPECTED_MM_MAP_ERROR = 557;
        /// <summary> 558 - If an MM error is returned 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. </summary>
        public const int UNEXPECTED_MM_EXTEND_ERR = 558;
        /// <summary> 559 - A malformed function table was encountered during an unwind operation. </summary>
        public const int BAD_FUNCTION_TABLE = 559;
        /// <summary> 560 - 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. </summary>
        public const int NO_GUID_TRANSLATION = 560;
        /// <summary> 561 - 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. </summary>
        public const int INVALID_LDT_SIZE = 561;
        /// <summary> 563 - Indicates that the starting value for the LDT information was not an integral multiple of the selector size. </summary>
        public const int INVALID_LDT_OFFSET = 563;
        /// <summary> 564 - Indicates that the user supplied an invalid descriptor when trying to set up Ldt descriptors. </summary>
        public const int INVALID_LDT_DESCRIPTOR = 564;
        /// <summary> 565 - 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. </summary>
        public const int TOO_MANY_THREADS = 565;
        /// <summary> 566 - An attempt was made to operate on a thread within a specific process, but the thread specified is not in the process specified. </summary>
        public const int THREAD_NOT_IN_PROCESS = 566;
        /// <summary> 567 - Page file quota was exceeded. </summary>
        public const int PAGEFILE_QUOTA_EXCEEDED = 567;
        /// <summary> 568 - The Netlogon service cannot start because another Netlogon service running in the domain conflicts with the specified role. </summary>
        public const int LOGON_SERVER_CONFLICT = 568;
        /// <summary> 569 - The SAM database on a Windows Server is significantly out of synchronization with the copy on the Domain Controller. A complete synchronization is required. </summary>
        public const int SYNCHRONIZATION_REQUIRED = 569;
        /// <summary> 570 - The NtCreateFile API failed. This error should never be returned to an application, it is a place holder for the Windows Lan Manager Redirector to use in its internal error mapping routines. </summary>
        public const int NET_OPEN_FAILED = 570;
        /// <summary> 571 - The I/O permissions for the process could not be changed. </summary>
        public const int IO_PRIVILEGE_FAILED = 571;
        /// <summary> 572 - The application terminated as a result of a CTRL+C. </summary>
        public const int CONTROL_C_EXIT = 572;
        /// <summary> 573 - The required system file %hs is bad or missing. </summary>
        public const int MISSING_SYSTEMFILE = 573;
        /// <summary> 574 - The exception %s (0x%08lx) occurred in the application at location 0x%08lx. </summary>
        public const int UNHANDLED_EXCEPTION = 574;
        /// <summary> 575 - The application failed to initialize properly (0x%lx). Click on OK to terminate the application. </summary>
        public const int APP_INIT_FAILURE = 575;
        /// <summary> 576 - The creation of the paging file %hs failed (%lx). The requested size was %ld. </summary>
        public const int PAGEFILE_CREATE_FAILED = 576;
        /// <summary> 577 - The hash for image %hs cannot be found in the system catalogs. The image is likely corrupt or the victim or tampering. </summary>
        public const int INVALID_IMAGE_HASH = 577;
        /// <summary> 578 - No paging file was specified in the system configuration. </summary>
        public const int NO_PAGEFILE = 578;
        /// <summary> 579 - A real-mode application issued a floating-point instruction and floating-point hardware is not present. </summary>
        public const int ILLEGAL_FLOAT_CONTEXT = 579;
        /// <summary> 580 - 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. </summary>
        public const int NO_EVENT_PAIR = 580;
        /// <summary> 581 - A Windows Server has an incorrect configuration. </summary>
        public const int DOMAIN_CTRLR_CONFIG_ERROR = 581;
        /// <summary> 582 - 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. </summary>
        public const int ILLEGAL_CHARACTER = 582;
        /// <summary> 583 - The Unicode character is not defined in the Unicode character set installed on the system. </summary>
        public const int UNDEFINED_CHARACTER = 583;
        /// <summary> 584 - The paging file cannot be created on a floppy diskette. </summary>
        public const int FLOPPY_VOLUME = 584;
        /// <summary> 585 - The system bios failed to connect a system interrupt to the device or bus for which the device is connected. </summary>
        public const int BIOS_FAILED_TO_CONNECT_INTERRUPT = 585;
        /// <summary> 586 - This operation is only allowed for the Primary Domain Controller of the domain. </summary>
        public const int BACKUP_CONTROLLER = 586;
        /// <summary> 587 - An attempt was made to acquire a mutant such that its maximum count would have been exceeded. </summary>
        public const int MUTANT_LIMIT_EXCEEDED = 587;
        /// <summary> 588 - A volume has been accessed for which a file system driver is required that has not yet been loaded. </summary>
        public const int FS_DRIVER_REQUIRED = 588;
        /// <summary> 589 - The registry cannot load the hive (file): %hs or its log or alternate. It is corrupt, absent, or not writable. </summary>
        public const int CANNOT_LOAD_REGISTRY_FILE = 589;
        /// <summary> 590 - An unexpected failure occurred while processing a DebugActiveProcess API request. You may choose OK to terminate the process, or Cancel to ignore the error. </summary>
        public const int DEBUG_ATTACH_FAILED = 590;
        /// <summary> 591 - The %hs system process terminated unexpectedly with a status of 0x%08x (0x%08x 0x%08x). The system has been shut down. </summary>
        public const int SYSTEM_PROCESS_TERMINATED = 591;
        /// <summary> 592 - The TDI client could not handle the data received during an indication. </summary>
        public const int DATA_NOT_ACCEPTED = 592;
        /// <summary> 593 - NTVDM encountered a hard error. </summary>
        public const int VDM_HARD_ERROR = 593;
        /// <summary> 594 - The driver %hs failed to complete a cancelled I/O request in the allotted time. </summary>
        public const int DRIVER_CANCEL_TIMEOUT = 594;
        /// <summary> 595 - 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. </summary>
        public const int REPLY_MESSAGE_MISMATCH = 595;
        /// <summary> 596 - 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. </summary>
        public const int LOST_WRITEBEHIND_DATA = 596;
        /// <summary> 597 - 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. </summary>
        public const int CLIENT_SERVER_PARAMETERS_INVALID = 597;
        /// <summary> 598 - The stream is not a tiny stream. </summary>
        public const int NOT_TINY_STREAM = 598;
        /// <summary> 599 - The request must be handled by the stack overflow code. </summary>
        public const int STACK_OVERFLOW_READ = 599;
        /// <summary> 600 - 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. </summary>
        public const int CONVERT_TO_LARGE = 600;
        /// <summary> 601 - 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. </summary>
        public const int FOUND_OUT_OF_SCOPE = 601;
        /// <summary> 602 - The bucket array must be grown. Retry transaction after doing so. </summary>
        public const int ALLOCATE_BUCKET = 602;
        /// <summary> 603 - The user/kernel marshalling buffer has overflowed. </summary>
        public const int MARSHALL_OVERFLOW = 603;
        /// <summary> 604 - The supplied variant structure contains invalid data. </summary>
        public const int INVALID_VARIANT = 604;
        /// <summary> 605 - The specified buffer contains ill-formed data. </summary>
        public const int BAD_COMPRESSION_BUFFER = 605;
        /// <summary> 606 - An attempt to generate a security audit failed. </summary>
        public const int AUDIT_FAILED = 606;
        /// <summary> 607 - The timer resolution was not previously set by the current process. </summary>
        public const int TIMER_RESOLUTION_NOT_SET = 607;
        /// <summary> 608 - There is insufficient account information to log you on. </summary>
        public const int INSUFFICIENT_LOGON_INFO = 608;
        /// <summary> 609 - 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. </summary>
        public const int BAD_DLL_ENTRYPOINT = 609;
        /// <summary> 610 - 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. </summary>
        public const int BAD_SERVICE_ENTRYPOINT = 610;
        /// <summary> 611 - There is an IP address conflict with another system on the network </summary>
        public const int IP_ADDRESS_CONFLICT1 = 611;
        /// <summary> 612 - There is an IP address conflict with another system on the network </summary>
        public const int IP_ADDRESS_CONFLICT2 = 612;
        /// <summary> 613 - The system has reached the maximum size allowed for the system part of the registry. Additional storage requests will be ignored. </summary>
        public const int REGISTRY_QUOTA_LIMIT = 613;
        /// <summary> 614 - A callback return system service cannot be executed when no callback is active. </summary>
        public const int NO_CALLBACK_ACTIVE = 614;
        /// <summary> 615 - The password provided is too short to meet the policy of your user account. Please choose a longer password. </summary>
        public const int PWD_TOO_SHORT = 615;
        /// <summary> 616 - 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. </summary>
        public const int PWD_TOO_RECENT = 616;
        /// <summary> 617 - 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. </summary>
        public const int PWD_HISTORY_CONFLICT = 617;
        /// <summary> 618 - The specified compression format is unsupported. </summary>
        public const int UNSUPPORTED_COMPRESSION = 618;
        /// <summary> 619 - The specified hardware profile configuration is invalid. </summary>
        public const int INVALID_HW_PROFILE = 619;
        /// <summary> 620 - The specified Plug and Play registry device path is invalid. </summary>
        public const int INVALID_PLUGPLAY_DEVICE_PATH = 620;
        /// <summary> 621 - The specified quota list is internally inconsistent with its descriptor. </summary>
        public const int QUOTA_LIST_INCONSISTENT = 621;
        /// <summary> 622 - 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. </summary>
        public const int EVALUATION_EXPIRATION = 622;
        /// <summary> 623 - 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. </summary>
        public const int ILLEGAL_DLL_RELOCATION = 623;
        /// <summary> 624 - The application failed to initialize because the window station is shutting down. </summary>
        public const int DLL_INIT_FAILED_LOGOFF = 624;
        /// <summary> 625 - The validation process needs to continue on to the next step. </summary>
        public const int VALIDATE_CONTINUE = 625;
        /// <summary> 626 - There are no more matches for the current index enumeration. </summary>
        public const int NO_MORE_MATCHES = 626;
        /// <summary> 627 - The range could not be added to the range list because of a conflict. </summary>
        public const int RANGE_LIST_CONFLICT = 627;
        /// <summary> 628 - The server process is running under a SID different than that required by client. </summary>
        public const int SERVER_SID_MISMATCH = 628;
        /// <summary> 629 - A group marked use for deny only cannot be enabled. </summary>
        public const int CANT_ENABLE_DENY_ONLY = 629;
        /// <summary> 630 - Multiple floating point faults. </summary>
        public const int FLOAT_MULTIPLE_FAULTS = 630;
        /// <summary> 631 - Multiple floating point traps. </summary>
        public const int FLOAT_MULTIPLE_TRAPS = 631;
        /// <summary> 632 - The requested interface is not supported. </summary>
        public const int NOINTERFACE = 632;
        /// <summary> 633 - The driver %hs does not support standby mode. Updating this driver may allow the system to go to standby mode. </summary>
        public const int DRIVER_FAILED_SLEEP = 633;
        /// <summary> 634 - The system file %1 has become corrupt and has been replaced. </summary>
        public const int CORRUPT_SYSTEM_FILE = 634;
        /// <summary> 635 - 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. </summary>
        public const int COMMITMENT_MINIMUM = 635;
        /// <summary> 636 - A device was removed so enumeration must be restarted. </summary>
        public const int PNP_RESTART_ENUMERATION = 636;
        /// <summary> 637 - The system image %s is not properly signed. The file has been replaced with the signed file. The system has been shut down. </summary>
        public const int SYSTEM_IMAGE_BAD_SIGNATURE = 637;
        /// <summary> 638 - Device will not start without a reboot. </summary>
        public const int PNP_REBOOT_REQUIRED = 638;
        /// <summary> 639 - There is not enough power to complete the requested operation. </summary>
        public const int INSUFFICIENT_POWER = 639;
        /// <summary> 641 - The system is in the process of shutting down. </summary>
        public const int SYSTEM_SHUTDOWN = 641;
        /// <summary> 642 - An attempt to remove a processes DebugPort was made, but a port was not already associated with the process. </summary>
        public const int PORT_NOT_SET = 642;
        /// <summary> 643 - This version of Windows is not compatible with the behavior version of directory forest, domain or domain controller. </summary>
        public const int DS_VERSION_CHECK_FAILURE = 643;
        /// <summary> 644 - The specified range could not be found in the range list. </summary>
        public const int RANGE_NOT_FOUND = 644;
        /// <summary> 646 - The driver was not loaded because the system is booting into safe mode. </summary>
        public const int NOT_SAFE_MODE_DRIVER = 646;
        /// <summary> 647 - The driver was not loaded because it failed it's initialization call. </summary>
        public const int FAILED_DRIVER_ENTRY = 647;
        /// <summary> 648 - 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. </summary>
        public const int DEVICE_ENUMERATION_ERROR = 648;
        /// <summary> 649 - 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. </summary>
        public const int MOUNT_POINT_NOT_RESOLVED = 649;
        /// <summary> 650 - The device object parameter is either not a valid device object or is not attached to the volume specified by the file name. </summary>
        public const int INVALID_DEVICE_OBJECT_PARAMETER = 650;
        /// <summary> 651 - A Machine Check Error has occurred. Please check the system eventlog for additional information. </summary>
        public const int MCA_OCCURED = 651;
        /// <summary> 652 - There was error [%2] processing the driver database. </summary>
        public const int DRIVER_DATABASE_ERROR = 652;
        /// <summary> 653 - System hive size has exceeded its limit. </summary>
        public const int SYSTEM_HIVE_TOO_LARGE = 653;
        /// <summary> 654 - The driver could not be loaded because a previous version of the driver is still in memory. </summary>
        public const int DRIVER_FAILED_PRIOR_UNLOAD = 654;
        /// <summary> 655 - Please wait while the Volume Shadow Copy Service prepares volume %hs for hibernation. </summary>
        public const int VOLSNAP_PREPARE_HIBERNATE = 655;
        /// <summary> 656 - The system has failed to hibernate (The error code is %hs). Hibernation will be disabled until the system is restarted. </summary>
        public const int HIBERNATION_FAILURE = 656;
        /// <summary> 657 - The %hs display driver has stopped working normally. Save your work and reboot the system to restore full display functionality. The next time you reboot the machine a dialog will be displayed giving you a chance to report this failure to Microsoft. </summary>
        public const int HUNG_DISPLAY_DRIVER_THREAD = 657;
        /// <summary> 665 - The requested operation could not be completed due to a file system limitation. </summary>
        public const int FILE_SYSTEM_LIMITATION = 665;
        /// <summary> 668 - An assertion failure has occurred. </summary>
        public const int ASSERTION_FAILURE = 668;
        /// <summary> 669 - Application verifier has found an error in the current process. </summary>
        public const int VERIFIER_STOP = 669;
        /// <summary> 670 - WOW Assertion Error. </summary>
        public const int WOW_ASSERTION = 670;
        /// <summary> 671 - 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. </summary>
        public const int PNP_BAD_MPS_TABLE = 671;
        /// <summary> 672 - A translator failed to translate resources. </summary>
        public const int PNP_TRANSLATION_FAILED = 672;
        /// <summary> 673 - A IRQ translator failed to translate resources. </summary>
        public const int PNP_IRQ_TRANSLATION_FAILED = 673;
        /// <summary> 674 - Driver %2 returned invalid ID for a child device (%3). </summary>
        public const int PNP_INVALID_ID = 674;
        /// <summary> 675 - The system debugger was awakened by an interrupt. </summary>
        public const int WAKE_SYSTEM_DEBUGGER = 675;
        /// <summary> 676 - Handles to objects have been automatically closed as a result of the requested operation. </summary>
        public const int HANDLES_CLOSED = 676;
        /// <summary> 677 - he specified access control list (ACL) contained more information than was expected. </summary>
        public const int EXTRANEOUS_INFORMATION = 677;
        /// <summary> 678 - 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). </summary>
        public const int RXACT_COMMIT_NECESSARY = 678;
        /// <summary> 679 - The media may have changed. </summary>
        public const int MEDIA_CHECK = 679;
        /// <summary> 680 - 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. </summary>
        public const int GUID_SUBSTITUTION_MADE = 680;
        /// <summary> 681 - The create operation stopped after reaching a symbolic link. </summary>
        public const int STOPPED_ON_SYMLINK = 681;
        /// <summary> 682 - A long jump has been executed. </summary>
        public const int LONGJUMP = 682;
        /// <summary> 683 - The Plug and Play query operation was not successful. </summary>
        public const int PLUGPLAY_QUERY_VETOED = 683;
        /// <summary> 684 - A frame consolidation has been executed. </summary>
        public const int UNWIND_CONSOLIDATE = 684;
        /// <summary> 685 - Registry hive (file): %hs was corrupted and it has been recovered. Some data might have been lost. </summary>
        public const int REGISTRY_HIVE_RECOVERED = 685;
        /// <summary> 686 - 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? </summary>
        public const int DLL_MIGHT_BE_INSECURE = 686;
        /// <summary> 687 - 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? </summary>
        public const int DLL_MIGHT_BE_INCOMPATIBLE = 687;
        /// <summary> 688 - Debugger did not handle the exception. </summary>
        public const int DBG_EXCEPTION_NOT_HANDLED = 688;
        /// <summary> 689 - Debugger will reply later. </summary>
        public const int DBG_REPLY_LATER = 689;
        /// <summary> 690 - Debugger cannot provide handle. </summary>
        public const int DBG_UNABLE_TO_PROVIDE_HANDLE = 690;
        /// <summary> 691 - Debugger terminated thread. </summary>
        public const int DBG_TERMINATE_THREAD = 691;
        /// <summary> 692 - Debugger terminated process. </summary>
        public const int DBG_TERMINATE_PROCESS = 692;
        /// <summary> 693 - Debugger got control C. </summary>
        public const int DBG_CONTROL_C = 693;
        /// <summary> 694 - Debugger printed exception on control C. </summary>
        public const int DBG_PRINTEXCEPTION_C = 694;
        /// <summary> 695 - Debugger received RIP exception. </summary>
        public const int DBG_RIPEXCEPTION = 695;
        /// <summary> 696 - Debugger received control break. </summary>
        public const int DBG_CONTROL_BREAK = 696;
        /// <summary> 697 - Debugger command communication exception. </summary>
        public const int DBG_COMMAND_EXCEPTION = 697;
        /// <summary> 698 - An attempt was made to create an object and the object name already existed. </summary>
        public const int OBJECT_NAME_EXISTS = 698;
        /// <summary> 699 - A thread termination occurred while the thread was suspended. The thread was resumed, and termination proceeded. </summary>
        public const int THREAD_WAS_SUSPENDED = 699;
        /// <summary> 700 - An image file could not be mapped at the address specified in the image file. Local fixups must be performed on this image. </summary>
        public const int IMAGE_NOT_AT_BASE = 700;
        /// <summary> 701 - This informational level status indicates that a specified registry sub-tree transaction state did not yet exist and had to be created. </summary>
        public const int RXACT_STATE_CREATED = 701;
        /// <summary> 702 - 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. </summary>
        public const int SEGMENT_NOTIFICATION = 702;
        /// <summary> 703 - The process cannot switch to the startup current directory %hs. Select OK to set current directory to %hs, or select CANCEL to exit. </summary>
        public const int BAD_CURRENT_DIRECTORY = 703;
        /// <summary> 704 - 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. </summary>
        public const int FT_READ_RECOVERY_FROM_BACKUP = 704;
        /// <summary> 705 - 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. </summary>
        public const int FT_WRITE_RECOVERY = 705;
        /// <summary> 706 - 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. </summary>
        public const int IMAGE_MACHINE_TYPE_MISMATCH = 706;
        /// <summary> 707 - The network transport returned partial data to its client. The remaining data will be sent later. </summary>
        public const int RECEIVE_PARTIAL = 707;
        /// <summary> 708 - The network transport returned data to its client that was marked as expedited by the remote system. </summary>
        public const int RECEIVE_EXPEDITED = 708;
        /// <summary> 709 - The network transport returned partial data to its client and this data was marked as expedited by the remote system. The remaining data will be sent later. </summary>
        public const int RECEIVE_PARTIAL_EXPEDITED = 709;
        /// <summary> 710 - The TDI indication has completed successfully. </summary>
        public const int EVENT_DONE = 710;
        /// <summary> 711 - The TDI indication has entered the pending state. </summary>
        public const int EVENT_PENDING = 711;
        /// <summary> 712 - Checking file system on %wZ. </summary>
        public const int CHECKING_FILE_SYSTEM = 712;
        /// <summary> 714 - The specified registry key is referenced by a predefined handle. </summary>
        public const int PREDEFINED_HANDLE = 714;
        /// <summary> 715 - The page protection of a locked page was changed to 'No Access' and the page was unlocked from memory and from the process. </summary>
        public const int WAS_UNLOCKED = 715;
        /// <summary> 717 - One of the pages to lock was already locked. </summary>
        public const int WAS_LOCKED = 717;
        /// <summary> 720 - The image file %hs is valid, but is for a machine type other than the current machine. </summary>
        public const int IMAGE_MACHINE_TYPE_MISMATCH_EXE = 720;
        /// <summary> 721 - A yield execution was performed and no thread was available to run. </summary>
        public const int NO_YIELD_PERFORMED = 721;
        /// <summary> 722 - The resumable flag to a timer API was ignored. </summary>
        public const int TIMER_RESUME_IGNORED = 722;
        /// <summary> 723 - The arbiter has deferred arbitration of these resources to its parent. </summary>
        public const int ARBITRATION_UNHANDLED = 723;
        /// <summary> 724 - The inserted CardBus device cannot be started because of a configuration error on ""%hs"". </summary>
        public const int CARDBUS_NOT_SUPPORTED = 724;
        /// <summary> 725 - 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. </summary>
        public const int MP_PROCESSOR_MISMATCH = 725;
        /// <summary> 726 - The system was put into hibernation. </summary>
        public const int HIBERNATED = 726;
        /// <summary> 727 - The system was resumed from hibernation. </summary>
        public const int RESUME_HIBERNATION = 727;
        /// <summary> 728 - Windows has detected that the system firmware (BIOS) was updated [previous firmware date = %2, current firmware date %3]. </summary>
        public const int FIRMWARE_UPDATED = 728;
        /// <summary> 729 - 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. </summary>
        public const int DRIVERS_LEAKING_LOCKED_PAGES = 729;
        /// <summary> 730 - The system has awoken </summary>
        public const int WAKE_SYSTEM = 730;
        /// <summary> 741 - A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link. </summary>
        public const int REPARSE = 741;
        /// <summary> 742 - An open/create operation completed while an oplock break is underway. </summary>
        public const int OPLOCK_BREAK_IN_PROGRESS = 742;
        /// <summary> 743 - A new volume has been mounted by a file system. </summary>
        public const int VOLUME_MOUNTED = 743;
        /// <summary> 744 - 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. </summary>
        public const int RXACT_COMMITTED = 744;
        /// <summary> 745 - This indicates that a notify change request has been completed due to closing the handle which made the notify change request. </summary>
        public const int NOTIFY_CLEANUP = 745;
        /// <summary> 746 - 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. </summary>
        public const int PRIMARY_TRANSPORT_CONNECT_FAILED = 746;
        /// <summary> 747 - Page fault was a transition fault. </summary>
        public const int PAGE_FAULT_TRANSITION = 747;
        /// <summary> 748 - Page fault was a demand zero fault. </summary>
        public const int PAGE_FAULT_DEMAND_ZERO = 748;
        /// <summary> 749 - Page fault was a demand zero fault. </summary>
        public const int PAGE_FAULT_COPY_ON_WRITE = 749;
        /// <summary> 750 - Page fault was a demand zero fault. </summary>
        public const int PAGE_FAULT_GUARD_PAGE = 750;
        /// <summary> 751 - Page fault was satisfied by reading from a secondary storage device. </summary>
        public const int PAGE_FAULT_PAGING_FILE = 751;
        /// <summary> 752 - Cached page was locked during operation. </summary>
        public const int CACHE_PAGE_LOCKED = 752;
        /// <summary> 753 - Crash dump exists in paging file. </summary>
        public const int CRASH_DUMP = 753;
        /// <summary> 754 - Specified buffer contains all zeros. </summary>
        public const int BUFFER_ALL_ZEROS = 754;
        /// <summary> 755 - A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link. </summary>
        public const int REPARSE_OBJECT = 755;
        /// <summary> 756 - The device has succeeded a query-stop and its resource requirements have changed. </summary>
        public const int RESOURCE_REQUIREMENTS_CHANGED = 756;
        /// <summary> 757 - The translator has translated these resources into the global space and no further translations should be performed. </summary>
        public const int TRANSLATION_COMPLETE = 757;
        /// <summary> 758 - A process being terminated has no threads to terminate. </summary>
        public const int NOTHING_TO_TERMINATE = 758;
        /// <summary> 759 - The specified process is not part of a job. </summary>
        public const int PROCESS_NOT_IN_JOB = 759;
        /// <summary> 760 - The specified process is part of a job. </summary>
        public const int PROCESS_IN_JOB = 760;
        /// <summary> 761 - The system is now ready for hibernation. </summary>
        public const int VOLSNAP_HIBERNATE_READY = 761;
        /// <summary> 762 - A file system or file system filter driver has successfully completed an FsFilter operation. </summary>
        public const int FSFILTER_OP_COMPLETED_SUCCESSFULLY = 762;
        /// <summary> 763 - The specified interrupt vector was already connected. </summary>
        public const int INTERRUPT_VECTOR_ALREADY_CONNECTED = 763;
        /// <summary> 764 - The specified interrupt vector is still connected. </summary>
        public const int INTERRUPT_STILL_CONNECTED = 764;
        /// <summary> 765 - An operation is blocked waiting for an oplock. </summary>
        public const int WAIT_FOR_OPLOCK = 765;
        /// <summary> 766 - Debugger handled exception. </summary>
        public const int DBG_EXCEPTION_HANDLED = 766;
        /// <summary> 767 - Debugger continued </summary>
        public const int DBG_CONTINUE = 767;
        /// <summary> 768 - An exception occurred in a user mode callback and the kernel callback frame should be removed. </summary>
        public const int CALLBACK_POP_STACK = 768;
        /// <summary> 769 - Compression is disabled for this volume. </summary>
        public const int COMPRESSION_DISABLED = 769;
        /// <summary> 770 - The data provider cannot fetch backwards through a result set. </summary>
        public const int CANTFETCHBACKWARDS = 770;
        /// <summary> 771 - The data provider cannot scroll backwards through a result set. </summary>
        public const int CANTSCROLLBACKWARDS = 771;
        /// <summary> 772 - The data provider requires that previously fetched data is released before asking for more data. </summary>
        public const int ROWSNOTRELEASED = 772;
        /// <summary> 773 - The data provider was not able to interpret the flags set for a column binding in an accessor. </summary>
        public const int BAD_ACCESSOR_FLAGS = 773;
        /// <summary> 774 - One or more errors occurred while processing the request. </summary>
        public const int ERRORS_ENCOUNTERED = 774;
        /// <summary> 775 - The implementation is not capable of performing the request. </summary>
        public const int NOT_CAPABLE = 775;
        /// <summary> 776 - The client of a component requested an operation which is not valid given the state of the component instance. </summary>
        public const int REQUEST_OUT_OF_SEQUENCE = 776;
        /// <summary> 777 - A version number could not be parsed. </summary>
        public const int VERSION_PARSE_ERROR = 777;
        /// <summary> 778 - The iterator's start position is invalid. </summary>
        public const int BADSTARTPOSITION = 778;
        /// <summary> 994 - Access to the extended attribute was denied. </summary>
        public const int EA_ACCESS_DENIED = 994;
        /// <summary> 995 - The I/O operation has been aborted because of either a thread exit or an application request. </summary>
        public const int OPERATION_ABORTED = 995;
        /// <summary> 996 - Overlapped I/O event is not in a signaled state. </summary>
        public const int IO_INCOMPLETE = 996;
        /// <summary> 997 - Overlapped I/O operation is in progress. </summary>
        public const int IO_PENDING = 997;
        /// <summary> 998 - Invalid access to memory location. </summary>
        public const int NOACCESS = 998;
        /// <summary> 999 - Error performing inpage operation. </summary>
        public const int SWAPERROR = 999;
        /// <summary> 1001 - Recursion too deep; the stack overflowed. </summary>
        public const int STACK_OVERFLOW = 1001;
        /// <summary> 1002 - The window cannot act on the sent message. </summary>
        public const int INVALID_MESSAGE = 1002;
        /// <summary> 1003 - Cannot complete this function. </summary>
        public const int CAN_NOT_COMPLETE = 1003;
        /// <summary> 1004 - Invalid flags. </summary>
        public const int INVALID_FLAGS = 1004;
        /// <summary> 1005 - 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. </summary>
        public const int UNRECOGNIZED_VOLUME = 1005;
        /// <summary> 1006 - The volume for a file has been externally altered so that the opened file is no longer valid. </summary>
        public const int FILE_INVALID = 1006;
        /// <summary> 1007 - The requested operation cannot be performed in full-screen mode. </summary>
        public const int FULLSCREEN_MODE = 1007;
        /// <summary> 1008 - An attempt was made to reference a token that does not exist. </summary>
        public const int NO_TOKEN = 1008;
        /// <summary> 1009 - The configuration registry database is corrupt. </summary>
        public const int BADDB = 1009;
        /// <summary> 1010 - The configuration registry key is invalid. </summary>
        public const int BADKEY = 1010;
        /// <summary> 1011 - The configuration registry key could not be opened. </summary>
        public const int CANTOPEN = 1011;
        /// <summary> 1012 - The configuration registry key could not be read. </summary>
        public const int CANTREAD = 1012;
        /// <summary> 1013 - The configuration registry key could not be written. </summary>
        public const int CANTWRITE = 1013;
        /// <summary> 1014 - One of the files in the registry database had to be recovered by use of a log or alternate copy. The recovery was successful. </summary>
        public const int REGISTRY_RECOVERED = 1014;
        /// <summary> 1015 - 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. </summary>
        public const int REGISTRY_CORRUPT = 1015;
        /// <summary> 1016 - 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. </summary>
        public const int REGISTRY_IO_FAILED = 1016;
        /// <summary> 1017 - The system has attempted to load or restore a file into the registry, but the specified file is not in a registry file format. </summary>
        public const int NOT_REGISTRY_FILE = 1017;
        /// <summary> 1018 - Illegal operation attempted on a registry key that has been marked for deletion. </summary>
        public const int KEY_DELETED = 1018;
        /// <summary> 1019 - System could not allocate the required space in a registry log. </summary>
        public const int NO_LOG_SPACE = 1019;
        /// <summary> 1020 - Cannot create a symbolic link in a registry key that already has subkeys or values. </summary>
        public const int KEY_HAS_CHILDREN = 1020;
        /// <summary> 1021 - Cannot create a stable subkey under a volatile parent key. </summary>
        public const int CHILD_MUST_BE_VOLATILE = 1021;
        /// <summary> 1022 - A notify change request is being completed and the information is not being returned in the caller's buffer. The caller now needs to enumerate the files to find the changes. </summary>
        public const int NOTIFY_ENUM_DIR = 1022;
        /// <summary> 1051 - A stop control has been sent to a service that other running services are dependent on. </summary>
        public const int DEPENDENT_SERVICES_RUNNING = 1051;
        /// <summary> 1052 - The requested control is not valid for this service. </summary>
        public const int INVALID_SERVICE_CONTROL = 1052;
        /// <summary> 1053 - The service did not respond to the start or control request in a timely fashion. </summary>
        public const int SERVICE_REQUEST_TIMEOUT = 1053;
        /// <summary> 1054 - A thread could not be created for the service. </summary>
        public const int SERVICE_NO_THREAD = 1054;
        /// <summary> 1055 - The service database is locked. </summary>
        public const int SERVICE_DATABASE_LOCKED = 1055;
        /// <summary> 1056 - An instance of the service is already running. </summary>
        public const int SERVICE_ALREADY_RUNNING = 1056;
        /// <summary> 1057 - The account name is invalid or does not exist, or the password is invalid for the account name specified. </summary>
        public const int INVALID_SERVICE_ACCOUNT = 1057;
        /// <summary> 1058 - The service cannot be started, either because it is disabled or because it has no enabled devices associated with it. </summary>
        public const int SERVICE_DISABLED = 1058;
        /// <summary> 1059 - Circular service dependency was specified. </summary>
        public const int CIRCULAR_DEPENDENCY = 1059;
        /// <summary> 1060 - The specified service does not exist as an installed service. </summary>
        public const int SERVICE_DOES_NOT_EXIST = 1060;
        /// <summary> 1061 - The service cannot accept control messages at this time. </summary>
        public const int SERVICE_CANNOT_ACCEPT_CTRL = 1061;
        /// <summary> 1062 - The service has not been started. </summary>
        public const int SERVICE_NOT_ACTIVE = 1062;
        /// <summary> 1063 - The service process could not connect to the service controller. </summary>
        public const int FAILED_SERVICE_CONTROLLER_CONNECT = 1063;
        /// <summary> 1064 - An exception occurred in the service when handling the control request. </summary>
        public const int EXCEPTION_IN_SERVICE = 1064;
        /// <summary> 1065 - The database specified does not exist. </summary>
        public const int DATABASE_DOES_NOT_EXIST = 1065;
        /// <summary> 1066 - The service has returned a service-specific error code. </summary>
        public const int SERVICE_SPECIFIC_ERROR = 1066;
        /// <summary> 1067 - The process terminated unexpectedly. </summary>
        public const int PROCESS_ABORTED = 1067;
        /// <summary> 1068 - The dependency service or group failed to start. </summary>
        public const int SERVICE_DEPENDENCY_FAIL = 1068;
        /// <summary> 1069 - The service did not start due to a logon failure. </summary>
        public const int SERVICE_LOGON_FAILED = 1069;
        /// <summary> 1070 - After starting, the service hung in a start-pending state. </summary>
        public const int SERVICE_START_HANG = 1070;
        /// <summary> 1071 - The specified service database lock is invalid. </summary>
        public const int INVALID_SERVICE_LOCK = 1071;
        /// <summary> 1072 - The specified service has been marked for deletion. </summary>
        public const int SERVICE_MARKED_FOR_DELETE = 1072;
        /// <summary> 1073 - The specified service already exists. </summary>
        public const int SERVICE_EXISTS = 1073;
        /// <summary> 1074 - The system is currently running with the last-known-good configuration. </summary>
        public const int ALREADY_RUNNING_LKG = 1074;
        /// <summary> 1075 - The dependency service does not exist or has been marked for deletion. </summary>
        public const int SERVICE_DEPENDENCY_DELETED = 1075;
        /// <summary> 1076 - The current boot has already been accepted for use as the last-known-good control set. </summary>
        public const int BOOT_ALREADY_ACCEPTED = 1076;
        /// <summary> 1077 - No attempts to start the service have been made since the last boot. </summary>
        public const int SERVICE_NEVER_STARTED = 1077;
        /// <summary> 1078 - The name is already in use as either a service name or a service display name. </summary>
        public const int DUPLICATE_SERVICE_NAME = 1078;
        /// <summary> 1079 - The account specified for this service is different from the account specified for other services running in the same process. </summary>
        public const int DIFFERENT_SERVICE_ACCOUNT = 1079;
        /// <summary> 1080 - Failure actions can only be set for Win32 services, not for drivers. </summary>
        public const int CANNOT_DETECT_DRIVER_FAILURE = 1080;
        /// <summary> 1081 - 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. </summary>
        public const int CANNOT_DETECT_PROCESS_ABORT = 1081;
        /// <summary> 1082 - No recovery program has been configured for this service. </summary>
        public const int NO_RECOVERY_PROGRAM = 1082;
        /// <summary> 1083 - The executable program that this service is configured to run in does not implement the service. </summary>
        public const int SERVICE_NOT_IN_EXE = 1083;
        /// <summary> 1084 - This service cannot be started in Safe Mode. </summary>
        public const int NOT_SAFEBOOT_SERVICE = 1084;
        /// <summary> 1100 - The physical end of the tape has been reached. </summary>
        public const int END_OF_MEDIA = 1100;
        /// <summary> 1101 - A tape access reached a filemark. </summary>
        public const int FILEMARK_DETECTED = 1101;
        /// <summary> 1102 - The beginning of the tape or a partition was encountered. </summary>
        public const int BEGINNING_OF_MEDIA = 1102;
        /// <summary> 1103 - A tape access reached the end of a set of files. </summary>
        public const int SETMARK_DETECTED = 1103;
        /// <summary> 1104 - No more data is on the tape. </summary>
        public const int NO_DATA_DETECTED = 1104;
        /// <summary> 1105 - Tape could not be partitioned. </summary>
        public const int PARTITION_FAILURE = 1105;
        /// <summary> 1106 - When accessing a new tape of a multivolume partition, the current block size is incorrect. </summary>
        public const int INVALID_BLOCK_LENGTH = 1106;
        /// <summary> 1107 - Tape partition information could not be found when loading a tape. </summary>
        public const int DEVICE_NOT_PARTITIONED = 1107;
        /// <summary> 1108 - Unable to lock the media eject mechanism. </summary>
        public const int UNABLE_TO_LOCK_MEDIA = 1108;
        /// <summary> 1109 - Unable to unload the media. </summary>
        public const int UNABLE_TO_UNLOAD_MEDIA = 1109;
        /// <summary> 1110 - The media in the drive may have changed. </summary>
        public const int MEDIA_CHANGED = 1110;
        /// <summary> 1111 - The I/O bus was reset. </summary>
        public const int BUS_RESET = 1111;
        /// <summary> 1112 - No media in drive. </summary>
        public const int NO_MEDIA_IN_DRIVE = 1112;
        /// <summary> 1113 - No mapping for the Unicode character exists in the target multi-byte code page. </summary>
        public const int NO_UNICODE_TRANSLATION = 1113;
        /// <summary> 1114 - A dynamic link library (DLL) initialization routine failed. </summary>
        public const int DLL_INIT_FAILED = 1114;
        /// <summary> 1115 - A system shutdown is in progress. </summary>
        public const int SHUTDOWN_IN_PROGRESS = 1115;
        /// <summary> 1116 - Unable to abort the system shutdown because no shutdown was in progress. </summary>
        public const int NO_SHUTDOWN_IN_PROGRESS = 1116;
        /// <summary> 1117 - The request could not be performed because of an I/O device error. </summary>
        public const int IO_DEVICE = 1117;
        /// <summary> 1118 - No serial device was successfully initialized. The serial driver will unload. </summary>
        public const int SERIAL_NO_DEVICE = 1118;
        /// <summary> 1119 - 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. </summary>
        public const int IRQ_BUSY = 1119;
        /// <summary> 1120 - A serial I/O operation was completed by another write to the serial port. (The IOCTL_SERIAL_XOFF_COUNTER reached zero.) </summary>
        public const int MORE_WRITES = 1120;
        /// <summary> 1121 - A serial I/O operation completed because the timeout period expired. (The IOCTL_SERIAL_XOFF_COUNTER did not reach zero.) </summary>
        public const int COUNTER_TIMEOUT = 1121;
        /// <summary> 1122 - No ID address mark was found on the floppy disk. </summary>
        public const int FLOPPY_ID_MARK_NOT_FOUND = 1122;
        /// <summary> 1123 - Mismatch between the floppy disk sector ID field and the floppy disk controller track address. </summary>
        public const int FLOPPY_WRONG_CYLINDER = 1123;
        /// <summary> 1124 - The floppy disk controller reported an error that is not recognized by the floppy disk driver. </summary>
        public const int FLOPPY_UNKNOWN_ERROR = 1124;
        /// <summary> 1125 - The floppy disk controller returned inconsistent results in its registers. </summary>
        public const int FLOPPY_BAD_REGISTERS = 1125;
        /// <summary> 1126 - While accessing the hard disk, a recalibrate operation failed, even after retries. </summary>
        public const int DISK_RECALIBRATE_FAILED = 1126;
        /// <summary> 1127 - While accessing the hard disk, a disk operation failed even after retries. </summary>
        public const int DISK_OPERATION_FAILED = 1127;
        /// <summary> 1128 - While accessing the hard disk, a disk controller reset was needed, but even that failed. </summary>
        public const int DISK_RESET_FAILED = 1128;
        /// <summary> 1129 - Physical end of tape encountered. </summary>
        public const int EOM_OVERFLOW = 1129;
        /// <summary> 1130 - Not enough server storage is available to process this command. </summary>
        public const int NOT_ENOUGH_SERVER_MEMORY = 1130;
        /// <summary> 1131 - A potential deadlock condition has been detected. </summary>
        public const int POSSIBLE_DEADLOCK = 1131;
        /// <summary> 1132 - The base address or the file offset specified does not have the proper alignment. </summary>
        public const int MAPPED_ALIGNMENT = 1132;
        /// <summary> 1140 - An attempt to change the system power state was vetoed by another application or driver. </summary>
        public const int SET_POWER_STATE_VETOED = 1140;
        /// <summary> 1141 - The system BIOS failed an attempt to change the system power state. </summary>
        public const int SET_POWER_STATE_FAILED = 1141;
        /// <summary> 1142 - An attempt was made to create more links on a file than the file system supports. </summary>
        public const int TOO_MANY_LINKS = 1142;
        /// <summary> 1150 - The specified program requires a newer version of Windows. </summary>
        public const int OLD_WIN_VERSION = 1150;
        /// <summary> 1151 - The specified program is not a Windows or MS-DOS program. </summary>
        public const int APP_WRONG_OS = 1151;
        /// <summary> 1152 - Cannot start more than one instance of the specified program. </summary>
        public const int SINGLE_INSTANCE_APP = 1152;
        /// <summary> 1153 - The specified program was written for an earlier version of Windows. </summary>
        public const int RMODE_APP = 1153;
        /// <summary> 1154 - One of the library files needed to run this application is damaged. </summary>
        public const int INVALID_DLL = 1154;
        /// <summary> 1155 - No application is associated with the specified file for this operation. </summary>
        public const int NO_ASSOCIATION = 1155;
        /// <summary> 1156 - An error occurred in sending the command to the application. </summary>
        public const int DDE_FAIL = 1156;
        /// <summary> 1157 - One of the library files needed to run this application cannot be found. </summary>
        public const int DLL_NOT_FOUND = 1157;
        /// <summary> 1158 - The current process has used all of its system allowance of handles for Window Manager objects. </summary>
        public const int NO_MORE_USER_HANDLES = 1158;
        /// <summary> 1159 - The message can be used only with synchronous operations. </summary>
        public const int MESSAGE_SYNC_ONLY = 1159;
        /// <summary> 1160 - The indicated source element has no media. </summary>
        public const int SOURCE_ELEMENT_EMPTY = 1160;
        /// <summary> 1161 - The indicated destination element already contains media. </summary>
        public const int DESTINATION_ELEMENT_FULL = 1161;
        /// <summary> 1162 - The indicated element does not exist. </summary>
        public const int ILLEGAL_ELEMENT_ADDRESS = 1162;
        /// <summary> 1163 - The indicated element is part of a magazine that is not present. </summary>
        public const int MAGAZINE_NOT_PRESENT = 1163;
        /// <summary> 1164 - The indicated device requires reinitialization due to hardware errors. </summary>
        public const int DEVICE_REINITIALIZATION_NEEDED = 1164;
        /// <summary> 1165 - The device has indicated that cleaning is required before further operations are attempted. </summary>
        public const int DEVICE_REQUIRES_CLEANING = 1165;
        /// <summary> 1166 - The device has indicated that its door is open. </summary>
        public const int DEVICE_DOOR_OPEN = 1166;
        /// <summary> 1167 - The device is not connected. </summary>
        public const int DEVICE_NOT_CONNECTED = 1167;
        /// <summary> 1168 - Element not found. </summary>
        public const int NOT_FOUND = 1168;
        /// <summary> 1169 - There was no match for the specified key in the index. </summary>
        public const int NO_MATCH = 1169;
        /// <summary> 1170 - The property set specified does not exist on the object. </summary>
        public const int SET_NOT_FOUND = 1170;
        /// <summary> 1171 - The point passed to GetMouseMovePointsEx is not in the buffer. </summary>
        public const int POINT_NOT_FOUND = 1171;
        /// <summary> 1172 - The tracking (workstation) service is not running. </summary>
        public const int NO_TRACKING_SERVICE = 1172;
        /// <summary> 1173 - The Volume ID could not be found. </summary>
        public const int NO_VOLUME_ID = 1173;
        /// <summary> 1175 - Unable to remove the file to be replaced. </summary>
        public const int UNABLE_TO_REMOVE_REPLACED = 1175;
        /// <summary> 1176 - Unable to move the replacement file to the file to be replaced. The file to be replaced has retained its original name. </summary>
        public const int UNABLE_TO_MOVE_REPLACEMENT = 1176;
        /// <summary> 1177 - Unable to move the replacement file to the file to be replaced. The file to be replaced has been renamed using the backup name. </summary>
        public const int UNABLE_TO_MOVE_REPLACEMENT_2 = 1177;
        /// <summary> 1178 - The volume change journal is being deleted. </summary>
        public const int JOURNAL_DELETE_IN_PROGRESS = 1178;
        /// <summary> 1179 - The volume change journal is not active. </summary>
        public const int JOURNAL_NOT_ACTIVE = 1179;
        /// <summary> 1180 - A file was found, but it may not be the correct file. </summary>
        public const int POTENTIAL_FILE_FOUND = 1180;
        /// <summary> 1181 - The journal entry has been deleted from the journal. </summary>
        public const int JOURNAL_ENTRY_DELETED = 1181;
        /// <summary> 1182 - The attempted operation required disk quotas to be enabled. </summary>
        public const int DISK_QUOTAS_DISABLED = 1182;
        /// <summary> 1190 - A system shutdown has already been scheduled. </summary>
        public const int SHUTDOWN_IS_SCHEDULED = 1190;
        /// <summary> 1191 - The system shutdown cannot be initiated because there are other users logged on to the computer. </summary>
        public const int SHUTDOWN_USERS_LOGGED_ON = 1191;
        /// <summary> 1200 - The specified device name is invalid. </summary>
        public const int BAD_DEVICE = 1200;
        /// <summary> 1201 - The device is not currently connected but it is a remembered connection. </summary>
        public const int CONNECTION_UNAVAIL = 1201;
        /// <summary> 1202 - The local device name has a remembered connection to another network resource. </summary>
        public const int DEVICE_ALREADY_REMEMBERED = 1202;
        /// <summary> 1203 - 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. </summary>
        public const int NO_NET_OR_BAD_PATH = 1203;
        /// <summary> 1204 - The specified network provider name is invalid. </summary>
        public const int BAD_PROVIDER = 1204;
        /// <summary> 1205 - Unable to open the network connection profile. </summary>
        public const int CANNOT_OPEN_PROFILE = 1205;
        /// <summary> 1206 - The network connection profile is corrupted. </summary>
        public const int BAD_PROFILE = 1206;
        /// <summary> 1207 - Cannot enumerate a noncontainer. </summary>
        public const int NOT_CONTAINER = 1207;
        /// <summary> 1208 - An extended error has occurred. </summary>
        public const int EXTENDED_ERROR = 1208;
        /// <summary> 1209 - The format of the specified group name is invalid. </summary>
        public const int INVALID_GROUPNAME = 1209;
        /// <summary> 1210 - The format of the specified computer name is invalid. </summary>
        public const int INVALID_COMPUTERNAME = 1210;
        /// <summary> 1211 - The format of the specified event name is invalid. </summary>
        public const int INVALID_EVENTNAME = 1211;
        /// <summary> 1212 - The format of the specified domain name is invalid. </summary>
        public const int INVALID_DOMAINNAME = 1212;
        /// <summary> 1213 - The format of the specified service name is invalid. </summary>
        public const int INVALID_SERVICENAME = 1213;
        /// <summary> 1214 - The format of the specified network name is invalid. </summary>
        public const int INVALID_NETNAME = 1214;
        /// <summary> 1215 - The format of the specified share name is invalid. </summary>
        public const int INVALID_SHARENAME = 1215;
        /// <summary> 1216 - The format of the specified password is invalid. </summary>
        public const int INVALID_PASSWORDNAME = 1216;
        /// <summary> 1217 - The format of the specified message name is invalid. </summary>
        public const int INVALID_MESSAGENAME = 1217;
        /// <summary> 1218 - The format of the specified message destination is invalid. </summary>
        public const int INVALID_MESSAGEDEST = 1218;
        /// <summary> 1219 - 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. </summary>
        public const int SESSION_CREDENTIAL_CONFLICT = 1219;
        /// <summary> 1220 - An attempt was made to establish a session to a network server, but there are already too many sessions established to that server. </summary>
        public const int REMOTE_SESSION_LIMIT_EXCEEDED = 1220;
        /// <summary> 1221 - The workgroup or domain name is already in use by another computer on the network. </summary>
        public const int DUP_DOMAINNAME = 1221;
        /// <summary> 1222 - The network is not present or not started. </summary>
        public const int NO_NETWORK = 1222;
        /// <summary> 1223 - The operation was canceled by the user. </summary>
        public const int CANCELLED = 1223;
        /// <summary> 1224 - The requested operation cannot be performed on a file with a user-mapped section open. </summary>
        public const int USER_MAPPED_FILE = 1224;
        /// <summary> 1225 - The remote system refused the network connection. </summary>
        public const int CONNECTION_REFUSED = 1225;
        /// <summary> 1226 - The network connection was gracefully closed. </summary>
        public const int GRACEFUL_DISCONNECT = 1226;
        /// <summary> 1227 - The network transport endpoint already has an address associated with it. </summary>
        public const int ADDRESS_ALREADY_ASSOCIATED = 1227;
        /// <summary> 1228 - An address has not yet been associated with the network endpoint. </summary>
        public const int ADDRESS_NOT_ASSOCIATED = 1228;
        /// <summary> 1229 - An operation was attempted on a nonexistent network connection. </summary>
        public const int CONNECTION_INVALID = 1229;
        /// <summary> 1230 - An invalid operation was attempted on an active network connection. </summary>
        public const int CONNECTION_ACTIVE = 1230;
        /// <summary> 1231 - The network location cannot be reached. For information about network troubleshooting, see Windows Help. </summary>
        public const int NETWORK_UNREACHABLE = 1231;
        /// <summary> 1232 - The network location cannot be reached. For information about network troubleshooting, see Windows Help. </summary>
        public const int HOST_UNREACHABLE = 1232;
        /// <summary> 1233 - The network location cannot be reached. For information about network troubleshooting, see Windows Help. </summary>
        public const int PROTOCOL_UNREACHABLE = 1233;
        /// <summary> 1234 - No service is operating at the destination network endpoint on the remote system. </summary>
        public const int PORT_UNREACHABLE = 1234;
        /// <summary> 1235 - The request was aborted. </summary>
        public const int REQUEST_ABORTED = 1235;
        /// <summary> 1236 - The network connection was aborted by the local system. </summary>
        public const int CONNECTION_ABORTED = 1236;
        /// <summary> 1237 - The operation could not be completed. A retry should be performed. </summary>
        public const int RETRY = 1237;
        /// <summary> 1238 - A connection to the server could not be made because the limit on the number of concurrent connections for this account has been reached. </summary>
        public const int CONNECTION_COUNT_LIMIT = 1238;
        /// <summary> 1239 - Attempting to log in during an unauthorized time of day for this account. </summary>
        public const int LOGIN_TIME_RESTRICTION = 1239;
        /// <summary> 1240 - The account is not authorized to log in from this station. </summary>
        public const int LOGIN_WKSTA_RESTRICTION = 1240;
        /// <summary> 1241 - The network address could not be used for the operation requested. </summary>
        public const int INCORRECT_ADDRESS = 1241;
        /// <summary> 1242 - The service is already registered. </summary>
        public const int ALREADY_REGISTERED = 1242;
        /// <summary> 1243 - The specified service does not exist. </summary>
        public const int SERVICE_NOT_FOUND = 1243;
        /// <summary> 1244 - The operation being requested was not performed because the user has not been authenticated. </summary>
        public const int NOT_AUTHENTICATED = 1244;
        /// <summary> 1245 - The operation being requested was not performed because the user has not logged on to the network. The specified service does not exist. </summary>
        public const int NOT_LOGGED_ON = 1245;
        /// <summary> 1246 - Continue with work in progress. </summary>
        public const int CONTINUE = 1246;
        /// <summary> 1247 - An attempt was made to perform an initialization operation when initialization has already been completed. </summary>
        public const int ALREADY_INITIALIZED = 1247;
        /// <summary> 1248 - No more local devices. </summary>
        public const int NO_MORE_DEVICES = 1248;
        /// <summary> 1249 - The specified site does not exist. </summary>
        public const int NO_SUCH_SITE = 1249;
        /// <summary> 1250 - A domain controller with the specified name already exists. </summary>
        public const int DOMAIN_CONTROLLER_EXISTS = 1250;
        /// <summary> 1251 - This operation is supported only when you are connected to the server. </summary>
        public const int ONLY_IF_CONNECTED = 1251;
        /// <summary> 1252 - The group policy framework should call the extension even if there are no changes. </summary>
        public const int OVERRIDE_NOCHANGES = 1252;
        /// <summary> 1253 - The specified user does not have a valid profile. </summary>
        public const int BAD_USER_PROFILE = 1253;
        /// <summary> 1254 - This operation is not supported on a computer running Windows Server 2003 for Small Business Server. </summary>
        public const int NOT_SUPPORTED_ON_SBS = 1254;
        /// <summary> 1255 - The server machine is shutting down. </summary>
        public const int SERVER_SHUTDOWN_IN_PROGRESS = 1255;
        /// <summary> 1256 - The remote system is not available. For information about network troubleshooting, see Windows Help. </summary>
        public const int HOST_DOWN = 1256;
        /// <summary> 1257 - The security identifier provided is not from an account domain. </summary>
        public const int NON_ACCOUNT_SID = 1257;
        /// <summary> 1258 - The security identifier provided does not have a domain component. </summary>
        public const int NON_DOMAIN_SID = 1258;
        /// <summary> 1259 - AppHelp dialog canceled thus preventing the application from starting. </summary>
        public const int APPHELP_BLOCK = 1259;
        /// <summary> 1260 - Windows cannot open this program because it has been prevented by a software restriction policy. For more information, open Event Viewer or contact your system administrator. </summary>
        public const int ACCESS_DISABLED_BY_POLICY = 1260;
        /// <summary> 1261 - A program attempt to use an invalid register value. Normally caused by an uninitialized register. This error is Itanium specific. </summary>
        public const int REG_NAT_CONSUMPTION = 1261;
        /// <summary> 1262 - The share is currently offline or does not exist. </summary>
        public const int CSCSHARE_OFFLINE = 1262;
        /// <summary> 1263 - The kerberos protocol encountered an error while validating the KDC certificate during smartcard logon. </summary>
        public const int PKINIT_FAILURE = 1263;
        /// <summary> 1264 - The kerberos protocol encountered an error while attempting to utilize the smartcard subsystem. </summary>
        public const int SMARTCARD_SUBSYSTEM_FAILURE = 1264;
        /// <summary> 1265 - The system detected a possible attempt to compromise security. Please ensure that you can contact the server that authenticated you. </summary>
        public const int DOWNGRADE_DETECTED = 1265;
        /// <summary> 1266 - The smartcard certificate used for authentication has been revoked. Please contact your system administrator. There may be additional information in the event log. </summary>
        public const int SEC_E_SMARTCARD_CERT_REVOKED = 1266;
        /// <summary> 1267 - An untrusted certificate authority was detected while processing the smartcard certificate used for authentication. Please contact your system administrator. </summary>
        public const int SEC_E_ISSUING_CA_UNTRUSTED = 1267;
        /// <summary> 1268 - The revocation status of the smartcard certificate used for authentication could not be determined. Please contact your system administrator. </summary>
        public const int SEC_E_REVOCATION_OFFLINE_C = 1268;
        /// <summary> 1269 - The smartcard certificate used for authentication was not trusted. Please contact your system administrator. </summary>
        public const int SEC_E_PKINIT_CLIENT_FAILUR = 1269;
        /// <summary> 1270 - The smartcard certificate used for authentication has expired. Please contact your system administrator. </summary>
        public const int SEC_E_SMARTCARD_CERT_EXPIRED = 1270;
        /// <summary> 1271 - The machine is locked and cannot be shut down without the force option. </summary>
        public const int MACHINE_LOCKED = 1271;
        /// <summary> 1273 - An application-defined callback gave invalid data when called. </summary>
        public const int CALLBACK_SUPPLIED_INVALID_DATA = 1273;
        /// <summary> 1274 - The group policy framework should call the extension in the synchronous foreground policy refresh. </summary>
        public const int SYNC_FOREGROUND_REFRESH_REQUIRED = 1274;
        /// <summary> 1275 - This driver has been blocked from loading. </summary>
        public const int DRIVER_BLOCKED = 1275;
        /// <summary> 1276 - A dynamic link library (DLL) referenced a module that was neither a DLL nor the process's executable image. </summary>
        public const int INVALID_IMPORT_OF_NON_DLL = 1276;
        /// <summary> 1277 - Windows cannot open this program since it has been disabled. </summary>
        public const int ACCESS_DISABLED_WEBBLADE = 1277;
        /// <summary> 1278 - Windows cannot open this program because the license enforcement system has been tampered with or become corrupted. </summary>
        public const int ACCESS_DISABLED_WEBBLADE_TAMPER = 1278;
        /// <summary> 1279 - A transaction recovery failed. </summary>
        public const int RECOVERY_FAILURE = 1279;
        /// <summary> 1280 - The current thread has already been converted to a fiber. </summary>
        public const int ALREADY_FIBER = 1280;
        /// <summary> 1281 - The current thread has already been converted from a fiber. </summary>
        public const int ALREADY_THREAD = 1281;
        /// <summary> 1282 - 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. </summary>
        public const int STACK_BUFFER_OVERRUN = 1282;
        /// <summary> 1283 - Data present in one of the parameters is more than the function can operate on. </summary>
        public const int PARAMETER_QUOTA_EXCEEDED = 1283;
        /// <summary> 1284 - An attempt to do an operation on a debug object failed because the object is in the process of being deleted. </summary>
        public const int DEBUGGER_INACTIVE = 1284;
        /// <summary> 1285 - An attempt to delay-load a .dll or get a function address in a delay-loaded .dll failed. </summary>
        public const int DELAY_LOAD_FAILED = 1285;
        /// <summary> 1286 - %1 is a 16-bit application. You do not have permissions to execute 16-bit applications. Check your permissions with your system administrator. </summary>
        public const int VDM_DISALLOWED = 1286;
        /// <summary> 1287 - Insufficient information exists to identify the cause of failure. </summary>
        public const int UNIDENTIFIED_ERROR = 1287;
        /// <summary> 1288 - An invalid budget or period parameter was specified. </summary>
        public const int INVALID_BANDWIDTH_PARAMETERS = 1288;
        /// <summary> 1289 - An attempt was made to join a thread to a reserve whose affinity did not intersect the reserve affinity or an attempt was made to associate a process with a reserve whose affinity did not intersect the reserve affinity. </summary>
        public const int AFFINITY_NOT_COMPATIBLE = 1289;
        /// <summary> 1290 - An attempt was made to join a thread to a reserve which was already joined to another reserve. </summary>
        public const int THREAD_ALREADY_IN_RESERVE = 1290;
        /// <summary> 1291 - An attempt was made to disjoin a thread from a reserve, but the thread was not joined to the reserve. </summary>
        public const int THREAD_NOT_IN_RESERVE = 1291;
        /// <summary> 1292 - An attempt was made to disjoin a thread from a reserve whose process is associated with a reserve. </summary>
        public const int THREAD_PROCESS_IN_RESERVE = 1292;
        /// <summary> 1293 - An attempt was made to associate a process with a reserve that was already associated with a reserve. </summary>
        public const int PROCESS_ALREADY_IN_RESERVE = 1293;
        /// <summary> 1294 - An attempt was made to disassociate a process from a reserve, but the process did not have an associated reserve. </summary>
        public const int PROCESS_NOT_IN_RESERVE = 1294;
        /// <summary> 1295 - An attempt was made to associate a process with a reserve, but the process contained thread joined to a reserve. </summary>
        public const int PROCESS_THREADS_IN_RESERVE = 1295;
        /// <summary> 1296 - An attempt was made to set the affinity of a thread or a process, but the thread or process was joined or associated with a reserve. </summary>
        public const int AFFINITY_NOT_SET_IN_RESERVE = 1296;
        /// <summary> 1297 - An operation attempted to exceed an implementation-defined limit. </summary>
        public const int IMPLEMENTATION_LIMIT = 1297;
        /// <summary> 1298 - The requested object is for internal DS operations only. </summary>
        public const int DS_CACHE_ONLY = 1298;
        /// <summary> 1299 - The operation occured beyond the valid data length of the file. </summary>
        public const int BEYOND_VDL = 1299;
        /// <summary> 1300 - Not all privileges referenced are assigned to the caller. </summary>
        public const int NOT_ALL_ASSIGNED = 1300;
        /// <summary> 1301 - Some mapping between account names and security IDs was not done. </summary>
        public const int SOME_NOT_MAPPED = 1301;
        /// <summary> 1302 - No system quota limits are specifically set for this account. </summary>
        public const int NO_QUOTAS_FOR_ACCOUNT = 1302;
        /// <summary> 1303 - No encryption key is available. A well-known encryption key was returned. </summary>
        public const int LOCAL_USER_SESSION_KEY = 1303;
        /// <summary> 1304 - The password is too complex to be converted to a LAN Manager password. The LAN Manager password returned is a NULL string. </summary>
        public const int NULL_LM_PASSWORD = 1304;
        /// <summary> 1305 - The revision level is unknown. </summary>
        public const int UNKNOWN_REVISION = 1305;
        /// <summary> 1306 - Indicates two revision levels are incompatible. </summary>
        public const int REVISION_MISMATCH = 1306;
        /// <summary> 1307 - This security ID may not be assigned as the owner of this object. </summary>
        public const int INVALID_OWNER = 1307;
        /// <summary> 1308 - This security ID may not be assigned as the primary group of an object. </summary>
        public const int INVALID_PRIMARY_GROUP = 1308;
        /// <summary> 1309 - An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client. </summary>
        public const int NO_IMPERSONATION_TOKEN = 1309;
        /// <summary> 1310 - The group may not be disabled. </summary>
        public const int CANT_DISABLE_MANDATORY = 1310;
        /// <summary> 1311 - There are currently no logon servers available to service the logon request. </summary>
        public const int NO_LOGON_SERVERS = 1311;
        /// <summary> 1312 - A specified logon session does not exist. It may already have been terminated. </summary>
        public const int NO_SUCH_LOGON_SESSION = 1312;
        /// <summary> 1313 - A specified privilege does not exist. </summary>
        public const int NO_SUCH_PRIVILEGE = 1313;
        /// <summary> 1314 - A required privilege is not held by the client. </summary>
        public const int PRIVILEGE_NOT_HELD = 1314;
        /// <summary> 1315 - The name provided is not a properly formed account name. </summary>
        public const int INVALID_ACCOUNT_NAME = 1315;
        /// <summary> 1316 - The specified user already exists. </summary>
        public const int USER_EXISTS = 1316;
        /// <summary> 1317 - The specified user does not exist. </summary>
        public const int NO_SUCH_USER = 1317;
        /// <summary> 1318 - The specified group already exists. </summary>
        public const int GROUP_EXISTS = 1318;
        /// <summary> 1319 - The specified group does not exist. </summary>
        public const int NO_SUCH_GROUP = 1319;
        /// <summary> 1320 - 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. </summary>
        public const int MEMBER_IN_GROUP = 1320;
        /// <summary> 1321 - The specified user account is not a member of the specified group account. </summary>
        public const int MEMBER_NOT_IN_GROUP = 1321;
        /// <summary> 1322 - The last remaining administration account cannot be disabled or deleted. </summary>
        public const int LAST_ADMIN = 1322;
        /// <summary> 1323 - Unable to update the password. The value provided as the current password is incorrect. </summary>
        public const int WRONG_PASSWORD = 1323;
        /// <summary> 1324 - Unable to update the password. The value provided for the new password contains values that are not allowed in passwords. </summary>
        public const int ILL_FORMED_PASSWORD = 1324;
        /// <summary> 1325 - Unable to update the password. The value provided for the new password does not meet the length, complexity, or history requirement of the domain. </summary>
        public const int PASSWORD_RESTRICTION = 1325;
        /// <summary> 1326 - Logon failure: unknown user name or bad password. </summary>
        public const int LOGON_FAILURE = 1326;
        /// <summary> 1327 - Logon failure: user account restriction. Possible reasons are blank passwords not allowed, logon hour restrictions, or a policy restriction has been enforced. </summary>
        public const int ACCOUNT_RESTRICTION = 1327;
        /// <summary> 1328 - Logon failure: account logon time restriction violation. </summary>
        public const int INVALID_LOGON_HOURS = 1328;
        /// <summary> 1329 - Logon failure: user not allowed to log on to this computer. </summary>
        public const int INVALID_WORKSTATION = 1329;
        /// <summary> 1330 - Logon failure: the specified account password has expired. </summary>
        public const int PASSWORD_EXPIRED = 1330;
        /// <summary> 1331 - Logon failure: account currently disabled. </summary>
        public const int ACCOUNT_DISABLED = 1331;
        /// <summary> 1332 - No mapping between account names and security IDs was done. </summary>
        public const int NONE_MAPPED = 1332;
        /// <summary> 1333 - Too many local user identifiers (LUIDs) were requested at one time. </summary>
        public const int TOO_MANY_LUIDS_REQUESTED = 1333;
        /// <summary> 1334 - No more local user identifiers (LUIDs) are available. </summary>
        public const int LUIDS_EXHAUSTED = 1334;
        /// <summary> 1335 - The subauthority part of a security ID is invalid for this particular use. </summary>
        public const int INVALID_SUB_AUTHORITY = 1335;
        /// <summary> 1336 - The access control list (ACL) structure is invalid. </summary>
        public const int INVALID_ACL = 1336;
        /// <summary> 1337 - The security ID structure is invalid. </summary>
        public const int INVALID_SID = 1337;
        /// <summary> 1338 - The security descriptor structure is invalid. </summary>
        public const int INVALID_SECURITY_DESCR = 1338;
        /// <summary> 1339 - The Windows file system generated an unexpected error. </summary>
        public const int WINFS_DATABASE_ERROR = 1339;
        /// <summary> 1340 - The inherited access control list (ACL) or access control entry (ACE) could not be built. </summary>
        public const int BAD_INHERITANCE_ACL = 1340;
        /// <summary> 1341 - The server is currently disabled. </summary>
        public const int SERVER_DISABLED = 1341;
        /// <summary> 1342 - The server is currently enabled. </summary>
        public const int SERVER_NOT_DISABLED = 1342;
        /// <summary> 1343 - The value provided was an invalid value for an identifier authority. </summary>
        public const int INVALID_ID_AUTHORITY = 1343;
        /// <summary> 1344 - No more memory is available for security information updates. </summary>
        public const int ALLOTTED_SPACE_EXCEEDED = 1344;
        /// <summary> 1345 - The specified attributes are invalid, or incompatible with the attributes for the group as a whole. </summary>
        public const int INVALID_GROUP_ATTRIBUTES = 1345;
        /// <summary> 1346 - Either a required impersonation level was not provided, or the provided impersonation level is invalid. </summary>
        public const int BAD_IMPERSONATION_LEVEL = 1346;
        /// <summary> 1347 - Cannot open an anonymous level security token. </summary>
        public const int CANT_OPEN_ANONYMOUS = 1347;
        /// <summary> 1348 - The validation information class requested was invalid. </summary>
        public const int BAD_VALIDATION_CLASS = 1348;
        /// <summary> 1349 - The type of the token is inappropriate for its attempted use. </summary>
        public const int BAD_TOKEN_TYPE = 1349;
        /// <summary> 1350 - Unable to perform a security operation on an object that has no associated security. </summary>
        public const int NO_SECURITY_ON_OBJECT = 1350;
        /// <summary> 1351 - Configuration information could not be read from the domain controller, either because the machine is unavailable, or access has been denied. </summary>
        public const int CANT_ACCESS_DOMAIN_INFO = 1351;
        /// <summary> 1352 - The security account manager (SAM) or local security authority (LSA) server was in the wrong state to perform the security operation. </summary>
        public const int INVALID_SERVER_STATE = 1352;
        /// <summary> 1353 - The domain was in the wrong state to perform the security operation. </summary>
        public const int INVALID_DOMAIN_STATE = 1353;
        /// <summary> 1354 - This operation is only allowed for the Primary Domain Controller of the domain. </summary>
        public const int INVALID_DOMAIN_ROLE = 1354;
        /// <summary> 1355 - The specified domain either does not exist or could not be contacted. </summary>
        public const int NO_SUCH_DOMAIN = 1355;
        /// <summary> 1356 - The specified domain already exists. </summary>
        public const int DOMAIN_EXISTS = 1356;
        /// <summary> 1357 - An attempt was made to exceed the limit on the number of domains per server. </summary>
        public const int DOMAIN_LIMIT_EXCEEDED = 1357;
        /// <summary> 1358 - Unable to complete the requested operation because of either a catastrophic media failure or a data structure corruption on the disk. </summary>
        public const int INTERNAL_DB_CORRUPTION = 1358;
        /// <summary> 1359 - An internal error occurred. </summary>
        public const int INTERNAL_ERROR = 1359;
        /// <summary> 1360 - Generic access types were contained in an access mask which should already be mapped to nongeneric types. </summary>
        public const int GENERIC_NOT_MAPPED = 1360;
        /// <summary> 1361 - A security descriptor is not in the right format (absolute or self-relative). </summary>
        public const int BAD_DESCRIPTOR_FORMAT = 1361;
        /// <summary> 1362 - The requested action is restricted for use by logon processes only. The calling process has not registered as a logon process. </summary>
        public const int NOT_LOGON_PROCESS = 1362;
        /// <summary> 1363 - Cannot start a new logon session with an ID that is already in use. </summary>
        public const int LOGON_SESSION_EXISTS = 1363;
        /// <summary> 1364 - A specified authentication package is unknown. </summary>
        public const int NO_SUCH_PACKAGE = 1364;
        /// <summary> 1365 - The logon session is not in a state that is consistent with the requested operation. </summary>
        public const int BAD_LOGON_SESSION_STATE = 1365;
        /// <summary> 1366 - The logon session ID is already in use. </summary>
        public const int LOGON_SESSION_COLLISION = 1366;
        /// <summary> 1367 - A logon request contained an invalid logon type value. </summary>
        public const int INVALID_LOGON_TYPE = 1367;
        /// <summary> 1368 - Unable to impersonate using a named pipe until data has been read from that pipe. </summary>
        public const int CANNOT_IMPERSONATE = 1368;
        /// <summary> 1369 - The transaction state of a registry subtree is incompatible with the requested operation. </summary>
        public const int RXACT_INVALID_STATE = 1369;
        /// <summary> 1370 - An internal security database corruption has been encountered. </summary>
        public const int RXACT_COMMIT_FAILURE = 1370;
        /// <summary> 1371 - Cannot perform this operation on built-in accounts. </summary>
        public const int SPECIAL_ACCOUNT = 1371;
        /// <summary> 1372 - Cannot perform this operation on this built-in special group. </summary>
        public const int SPECIAL_GROUP = 1372;
        /// <summary> 1373 - Cannot perform this operation on this built-in special user. </summary>
        public const int SPECIAL_USER = 1373;
        /// <summary> 1374 - The user cannot be removed from a group because the group is currently the user's primary group. </summary>
        public const int MEMBERS_PRIMARY_GROUP = 1374;
        /// <summary> 1375 - The token is already in use as a primary token. </summary>
        public const int TOKEN_ALREADY_IN_USE = 1375;
        /// <summary> 1376 - The specified local group does not exist. </summary>
        public const int NO_SUCH_ALIAS = 1376;
        /// <summary> 1377 - The specified account name is not a member of the local group. </summary>
        public const int MEMBER_NOT_IN_ALIAS = 1377;
        /// <summary> 1378 - The specified account name is already a member of the local group. </summary>
        public const int MEMBER_IN_ALIAS = 1378;
        /// <summary> 1379 - The specified local group already exists. </summary>
        public const int ALIAS_EXISTS = 1379;
        /// <summary> 1380 - Logon failure: the user has not been granted the requested logon type at this computer. </summary>
        public const int LOGON_NOT_GRANTED = 1380;
        /// <summary> 1381 - The maximum number of secrets that may be stored in a single system has been exceeded. </summary>
        public const int TOO_MANY_SECRETS = 1381;
        /// <summary> 1382 - The length of a secret exceeds the maximum length allowed. </summary>
        public const int SECRET_TOO_LONG = 1382;
        /// <summary> 1383 - The local security authority database contains an internal inconsistency. </summary>
        public const int INTERNAL_DB_ERROR = 1383;
        /// <summary> 1384 - During a logon attempt, the user's security context accumulated too many security IDs. </summary>
        public const int TOO_MANY_CONTEXT_IDS = 1384;
        /// <summary> 1385 - Logon failure: the user has not been granted the requested logon type at this computer. </summary>
        public const int LOGON_TYPE_NOT_GRANTED = 1385;
        /// <summary> 1386 - A cross-encrypted password is necessary to change a user password. </summary>
        public const int NT_CROSS_ENCRYPTION_REQUIRED = 1386;
        /// <summary> 1387 - A new member could not be added to or removed from the local group because the member does not exist. </summary>
        public const int NO_SUCH_MEMBER = 1387;
        /// <summary> 1388 - A new member could not be added to a local group because the member has the wrong account type. </summary>
        public const int INVALID_MEMBER = 1388;
        /// <summary> 1389 - Too many security IDs have been specified. </summary>
        public const int TOO_MANY_SIDS = 1389;
        /// <summary> 1390 - A cross-encrypted password is necessary to change this user password. </summary>
        public const int LM_CROSS_ENCRYPTION_REQUIRED = 1390;
        /// <summary> 1391 - Indicates an ACL contains no inheritable components. </summary>
        public const int NO_INHERITANCE = 1391;
        /// <summary> 1392 - The file or directory is corrupted and unreadable. </summary>
        public const int FILE_CORRUPT = 1392;
        /// <summary> 1393 - The disk structure is corrupted and unreadable. </summary>
        public const int DISK_CORRUPT = 1393;
        /// <summary> 1394 - There is no user session key for the specified logon session. </summary>
        public const int NO_USER_SESSION_KEY = 1394;
        /// <summary> 1395 - 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. </summary>
        public const int LICENSE_QUOTA_EXCEEDED = 1395;
        /// <summary> 1396 - Logon Failure: The target account name is incorrect. </summary>
        public const int WRONG_TARGET_NAME = 1396;
        /// <summary> 1397 - Mutual Authentication failed. The server's password is out of date at the domain controller. </summary>
        public const int MUTUAL_AUTH_FAILED = 1397;
        /// <summary> 1398 - There is a time and/or date difference between the client and server. </summary>
        public const int TIME_SKEW = 1398;
        /// <summary> 1399 - This operation cannot be performed on the current domain. </summary>
        public const int CURRENT_DOMAIN_NOT_ALLOWED = 1399;
        /// <summary> 1400 - Invalid window handle. </summary>
        public const int INVALID_WINDOW_HANDLE = 1400;
        /// <summary> 1401 - Invalid menu handle. </summary>
        public const int INVALID_MENU_HANDLE = 1401;
        /// <summary> 1402 - Invalid cursor handle. </summary>
        public const int INVALID_CURSOR_HANDLE = 1402;
        /// <summary> 1403 - Invalid accelerator table handle. </summary>
        public const int INVALID_ACCEL_HANDLE = 1403;
        /// <summary> 1404 - Invalid hook handle. </summary>
        public const int INVALID_HOOK_HANDLE = 1404;
        /// <summary> 1405 - Invalid handle to a multiple-window position structure. </summary>
        public const int INVALID_DWP_HANDLE = 1405;
        /// <summary> 1406 - Cannot create a top-level child window. </summary>
        public const int TLW_WITH_WSCHILD = 1406;
        /// <summary> 1407 - Cannot find window class. </summary>
        public const int CANNOT_FIND_WND_CLASS = 1407;
        /// <summary> 1408 - Invalid window; it belongs to other thread. </summary>
        public const int WINDOW_OF_OTHER_THREAD = 1408;
        /// <summary> 1409 - Hot key is already registered. </summary>
        public const int HOTKEY_ALREADY_REGISTERED = 1409;
        /// <summary> 1410 - Class already exists. </summary>
        public const int CLASS_ALREADY_EXISTS = 1410;
        /// <summary> 1411 - Class does not exist. </summary>
        public const int CLASS_DOES_NOT_EXIST = 1411;
        /// <summary> 1412 - Class still has open windows. </summary>
        public const int CLASS_HAS_WINDOWS = 1412;
        /// <summary> 1413 - Invalid index. </summary>
        public const int INVALID_INDEX = 1413;
        /// <summary> 1414 - Invalid icon handle. </summary>
        public const int INVALID_ICON_HANDLE = 1414;
        /// <summary> 1415 - Using private DIALOG window words. </summary>
        public const int PRIVATE_DIALOG_INDEX = 1415;
        /// <summary> 1416 - The list box identifier was not found. </summary>
        public const int LISTBOX_ID_NOT_FOUND = 1416;
        /// <summary> 1417 - No wildcards were found. </summary>
        public const int NO_WILDCARD_CHARACTERS = 1417;
        /// <summary> 1418 - Thread does not have a clipboard open. </summary>
        public const int CLIPBOARD_NOT_OPEN = 1418;
        /// <summary> 1419 - Hot key is not registered. </summary>
        public const int HOTKEY_NOT_REGISTERED = 1419;
        /// <summary> 1420 - The window is not a valid dialog window. </summary>
        public const int WINDOW_NOT_DIALOG = 1420;
        /// <summary> 1421 - Control ID not found. </summary>
        public const int CONTROL_ID_NOT_FOUND = 1421;
        /// <summary> 1422 - Invalid message for a combo box because it does not have an edit control. </summary>
        public const int INVALID_COMBOBOX_MESSAGE = 1422;
        /// <summary> 1423 - The window is not a combo box. </summary>
        public const int WINDOW_NOT_COMBOBOX = 1423;
        /// <summary> 1424 - Height must be less than 256. </summary>
        public const int INVALID_EDIT_HEIGHT = 1424;
        /// <summary> 1425 - Invalid device context (DC) handle. </summary>
        public const int DC_NOT_FOUND = 1425;
        /// <summary> 1426 - Invalid hook procedure type. </summary>
        public const int INVALID_HOOK_FILTER = 1426;
        /// <summary> 1427 - Invalid hook procedure. </summary>
        public const int INVALID_FILTER_PROC = 1427;
        /// <summary> 1428 - Cannot set nonlocal hook without a module handle. </summary>
        public const int HOOK_NEEDS_HMOD = 1428;
        /// <summary> 1429 - This hook procedure can only be set globally. </summary>
        public const int GLOBAL_ONLY_HOOK = 1429;
        /// <summary> 1430 - The journal hook procedure is already installed. </summary>
        public const int JOURNAL_HOOK_SET = 1430;
        /// <summary> 1431 - The hook procedure is not installed. </summary>
        public const int HOOK_NOT_INSTALLED = 1431;
        /// <summary> 1432 - Invalid message for single-selection list box. </summary>
        public const int INVALID_LB_MESSAGE = 1432;
        /// <summary> 1433 - LB_SETCOUNT sent to non-lazy list box. </summary>
        public const int SETCOUNT_ON_BAD_LB = 1433;
        /// <summary> 1434 - This list box does not support tab stops. </summary>
        public const int LB_WITHOUT_TABSTOPS = 1434;
        /// <summary> 1435 - Cannot destroy object created by another thread. </summary>
        public const int DESTROY_OBJECT_OF_OTHER_THREAD = 1435;
        /// <summary> 1436 - Child windows cannot have menus. </summary>
        public const int CHILD_WINDOW_MENU = 1436;
        /// <summary> 1437 - The window does not have a system menu. </summary>
        public const int NO_SYSTEM_MENU = 1437;
        /// <summary> 1438 - Invalid message box style. </summary>
        public const int INVALID_MSGBOX_STYLE = 1438;
        /// <summary> 1439 - Invalid system-wide (SPI_*) parameter. </summary>
        public const int INVALID_SPI_VALUE = 1439;
        /// <summary> 1440 - Screen already locked. </summary>
        public const int SCREEN_ALREADY_LOCKED = 1440;
        /// <summary> 1441 - All handles to windows in a multiple-window position structure must have the same parent. </summary>
        public const int HWNDS_HAVE_DIFF_PARENT = 1441;
        /// <summary> 1442 - The window is not a child window. </summary>
        public const int NOT_CHILD_WINDOW = 1442;
        /// <summary> 1443 - Invalid GW_* command. </summary>
        public const int INVALID_GW_COMMAND = 1443;
        /// <summary> 1444 - Invalid thread identifier. </summary>
        public const int INVALID_THREAD_ID = 1444;
        /// <summary> 1445 - Cannot process a message from a window that is not a multiple document interface (MDI) window. </summary>
        public const int NON_MDICHILD_WINDOW = 1445;
        /// <summary> 1446 - Popup menu already active. </summary>
        public const int POPUP_ALREADY_ACTIVE = 1446;
        /// <summary> 1447 - The window does not have scroll bars. </summary>
        public const int NO_SCROLLBARS = 1447;
        /// <summary> 1448 - Scroll bar range cannot be greater than MAXLONG. </summary>
        public const int INVALID_SCROLLBAR_RANGE = 1448;
        /// <summary> 1449 - Cannot show or remove the window in the way specified. </summary>
        public const int INVALID_SHOWWIN_COMMAND = 1449;
        /// <summary> 1450 - Insufficient system resources exist to complete the requested service. </summary>
        public const int NO_SYSTEM_RESOURCES = 1450;
        /// <summary> 1451 - Insufficient system resources exist to complete the requested service. </summary>
        public const int NONPAGED_SYSTEM_RESOURCES = 1451;
        /// <summary> 1452 - Insufficient system resources exist to complete the requested service. </summary>
        public const int PAGED_SYSTEM_RESOURCES = 1452;
        /// <summary> 1453 - Insufficient quota to complete the requested service. </summary>
        public const int WORKING_SET_QUOTA = 1453;
        /// <summary> 1454 - Insufficient quota to complete the requested service. </summary>
        public const int PAGEFILE_QUOTA = 1454;
        /// <summary> 1455 - The paging file is too small for this operation to complete. </summary>
        public const int COMMITMENT_LIMIT = 1455;
        /// <summary> 1456 - A menu item was not found. </summary>
        public const int MENU_ITEM_NOT_FOUND = 1456;
        /// <summary> 1457 - Invalid keyboard layout handle. </summary>
        public const int INVALID_KEYBOARD_HANDLE = 1457;
        /// <summary> 1458 - Hook type not allowed. </summary>
        public const int HOOK_TYPE_NOT_ALLOWED = 1458;
        /// <summary> 1459 - This operation requires an interactive window station. </summary>
        public const int REQUIRES_INTERACTIVE_WINDOWSTATION = 1459;
        /// <summary> 1460 - This operation returned because the timeout period expired. </summary>
        public const int TIMEOUT = 1460;
        /// <summary> 1461 - Invalid monitor handle. </summary>
        public const int INVALID_MONITOR_HANDLE = 1461;
        /// <summary> 1500 - The event log file is corrupted. </summary>
        public const int EVENTLOG_FILE_CORRUPT = 1500;
        /// <summary> 1501 - No event log file could be opened, so the event logging service did not start. </summary>
        public const int EVENTLOG_CANT_START = 1501;
        /// <summary> 1502 - The event log file is full. </summary>
        public const int LOG_FILE_FULL = 1502;
        /// <summary> 1503 - The event log file has changed between read operations. </summary>
        public const int EVENTLOG_FILE_CHANGED = 1503;
        /// <summary> 1601 - The Windows Installer service could not be accessed. This can occur if you are running Windows in safe mode, or if the Windows Installer is not correctly installed. Contact your support personnel for assistance. </summary>
        public const int INSTALL_SERVICE_FAILURE = 1601;
        /// <summary> 1602 - User cancelled installation. </summary>
        public const int INSTALL_USEREXIT = 1602;
        /// <summary> 1603 - Fatal error during installation. </summary>
        public const int INSTALL_FAILURE = 1603;
        /// <summary> 1604 - Installation suspended, incomplete. </summary>
        public const int INSTALL_SUSPEND = 1604;
        /// <summary> 1605 - This action is only valid for products that are currently installed. </summary>
        public const int UNKNOWN_PRODUCT = 1605;
        /// <summary> 1606 - Feature ID not registered. </summary>
        public const int UNKNOWN_FEATURE = 1606;
        /// <summary> 1607 - Component ID not registered. </summary>
        public const int UNKNOWN_COMPONENT = 1607;
        /// <summary> 1608 - Unknown property. </summary>
        public const int UNKNOWN_PROPERTY = 1608;
        /// <summary> 1609 - Handle is in an invalid state. </summary>
        public const int INVALID_HANDLE_STATE = 1609;
        /// <summary> 1610 - The configuration data for this product is corrupt. Contact your support personnel. </summary>
        public const int BAD_CONFIGURATION = 1610;
        /// <summary> 1611 - Component qualifier not present. </summary>
        public const int INDEX_ABSENT = 1611;
        /// <summary> 1612 - The installation source for this product is not available. Verify that the source exists and that you can access it. </summary>
        public const int INSTALL_SOURCE_ABSENT = 1612;
        /// <summary> 1613 - 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. </summary>
        public const int INSTALL_PACKAGE_VERSION = 1613;
        /// <summary> 1614 - Product is uninstalled. </summary>
        public const int PRODUCT_UNINSTALLED = 1614;
        /// <summary> 1615 - SQL query syntax invalid or unsupported. </summary>
        public const int BAD_QUERY_SYNTAX = 1615;
        /// <summary> 1616 - Record field does not exist. </summary>
        public const int INVALID_FIELD = 1616;
        /// <summary> 1617 - The device has been removed. </summary>
        public const int DEVICE_REMOVED = 1617;
        /// <summary> 1618 - Another installation is already in progress. Complete that installation before proceeding with this install. </summary>
        public const int INSTALL_ALREADY_RUNNING = 1618;
        /// <summary> 1619 - 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. </summary>
        public const int INSTALL_PACKAGE_OPEN_FAILED = 1619;
        /// <summary> 1620 - This installation package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer package. </summary>
        public const int INSTALL_PACKAGE_INVALID = 1620;
        /// <summary> 1621 - There was an error starting the Windows Installer service user interface. Contact your support personnel. </summary>
        public const int INSTALL_UI_FAILURE = 1621;
        /// <summary> 1622 - Error opening installation log file. Verify that the specified log file location exists and that you can write to it. </summary>
        public const int INSTALL_LOG_FAILURE = 1622;
        /// <summary> 1623 - The language of this installation package is not supported by your system. </summary>
        public const int INSTALL_LANGUAGE_UNSUPPORTED = 1623;
        /// <summary> 1624 - Error applying transforms. Verify that the specified transform paths are valid. </summary>
        public const int INSTALL_TRANSFORM_FAILURE = 1624;
        /// <summary> 1625 - This installation is forbidden by system policy. Contact your system administrator. </summary>
        public const int INSTALL_PACKAGE_REJECTED = 1625;
        /// <summary> 1626 - Function could not be executed. </summary>
        public const int FUNCTION_NOT_CALLED = 1626;
        /// <summary> 1627 - Function failed during execution. </summary>
        public const int FUNCTION_FAILED = 1627;
        /// <summary> 1628 - Invalid or unknown table specified. </summary>
        public const int INVALID_TABLE = 1628;
        /// <summary> 1629 - Data supplied is of wrong type. </summary>
        public const int DATATYPE_MISMATCH = 1629;
        /// <summary> 1630 - Data of this type is not supported. </summary>
        public const int UNSUPPORTED_TYPE = 1630;
        /// <summary> 1631 - The Windows Installer service failed to start. Contact your support personnel. </summary>
        public const int CREATE_FAILED = 1631;
        /// <summary> 1632 - The Temp folder is on a drive that is full or inaccessible. Free up space on the drive or verify that you have write permission on the Temp folder. </summary>
        public const int INSTALL_TEMP_UNWRITABLE = 1632;
        /// <summary> 1633 - This installation package is not supported by this processor type. Contact your product vendor. </summary>
        public const int INSTALL_PLATFORM_UNSUPPORTED = 1633;
        /// <summary> 1634 - Component not used on this computer. </summary>
        public const int INSTALL_NOTUSED = 1634;
        /// <summary> 1635 - This patch package could not be opened. Verify that the patch package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer patch package. </summary>
        public const int PATCH_PACKAGE_OPEN_FAILED = 1635;
        /// <summary> 1636 - This patch package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer patch package. </summary>
        public const int PATCH_PACKAGE_INVALID = 1636;
        /// <summary> 1637 - This patch 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. </summary>
        public const int PATCH_PACKAGE_UNSUPPORTED = 1637;
        /// <summary> 1638 - 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. </summary>
        public const int PRODUCT_VERSION = 1638;
        /// <summary> 1639 - Invalid command line argument. Consult the Windows Installer SDK for detailed command line help. </summary>
        public const int INVALID_COMMAND_LINE = 1639;
        /// <summary> 1640 - 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. </summary>
        public const int INSTALL_REMOTE_DISALLOWED = 1640;
        /// <summary> 1641 - The requested operation completed successfully. The system will be restarted so the changes can take effect. </summary>
        public const int SUCCESS_REBOOT_INITIATED = 1641;
        /// <summary> 1642 - The upgrade patch cannot be installed by the Windows Installer service because the program to be upgraded may be missing, or the upgrade patch 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 patch. </summary>
        public const int PATCH_TARGET_NOT_FOUND = 1642;
        /// <summary> 1643 - The patch package is not permitted by software restriction policy. </summary>
        public const int PATCH_PACKAGE_REJECTED = 1643;
        /// <summary> 1644 - One or more customizations are not permitted by software restriction policy. </summary>
        public const int INSTALL_TRANSFORM_REJECTED = 1644;
        /// <summary> 1645 - The Windows Installer does not permit installation from a Remote Desktop Connection. </summary>
        public const int INSTALL_REMOTE_PROHIBITED = 1645;
    }    

VB Constants:

Const ERROR_SUCCESS As Integer = 0

Const ERROR_FILE_NOT_FOUND As Integer = 2

Const ERROR_ACCESS_DENIED As Integer = 5

Notes:

None.

 

Please edit this page!

Do you have...

  • helpful tips?
  • corrections to the existing content?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it!

 
Access PInvoke.net directly from VS:
Terms of Use
Find References
Show Printable Version
Revisions