Sylloge
A C# helper library
code/WinAPI/WinAPI.cs
Go to the documentation of this file.
00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 
00015 
00016 using System;
00017 using System.Collections.Generic;
00018 using System.Text;
00019 using System.Runtime.InteropServices;
00020 using Microsoft.Win32.SafeHandles;
00021 
00022 namespace Sylloge
00023 {
00028     public static partial class WinAPI
00029     {
00033         public class Error
00034         {
00035             // DEV_NOTE: you could use Marshal.GetLastWin32Error() and then use the WinAPI of FormatString
00036             // but this is a more convienent way of doing it without having to muck around with API calls
00037             // and buffer fills to unsafe code
00038 
00042             public int Code { get; private set; }
00046             public string Message { get; private set; }
00047 
00051             public Error()
00052             {
00053                 this.Code = Marshal.GetLastWin32Error();
00054                 this.Message = Sylloge.WinAPI.ErrorCodeToString(this.Code);
00055             }
00056 
00061             public Error(int code)
00062             {
00063                 this.Code = code;
00064                 this.Message = Sylloge.WinAPI.ErrorCodeToString(code);
00065             }
00066 
00071             public override string ToString()
00072             {
00073                 return "(" + this.Code.ToString() + ") - " + this.Message;
00074             }
00075         }
00076 
00082         public static string ErrorCodeToString(Sylloge.WinAPI.ErrorCodes errorCode)
00083         {
00084             switch (errorCode) {
00085                 case Sylloge.WinAPI.ErrorCodes.ERROR_SUCCESS: return "The operation completed successfully.";
00086                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_FUNCTION: return "Incorrect function.";
00087                 case Sylloge.WinAPI.ErrorCodes.ERROR_FILE_NOT_FOUND: return "The system cannot find the file specified.";
00088                 case Sylloge.WinAPI.ErrorCodes.ERROR_PATH_NOT_FOUND: return "The system cannot find the path specified.";
00089                 case Sylloge.WinAPI.ErrorCodes.ERROR_TOO_MANY_OPEN_FILES: return "The system cannot open the file.";
00090                 case Sylloge.WinAPI.ErrorCodes.ERROR_ACCESS_DENIED: return "Access is denied.";
00091                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_HANDLE: return "The handle is invalid.";
00092                 case Sylloge.WinAPI.ErrorCodes.ERROR_ARENA_TRASHED: return "The storage control blocks were destroyed.";
00093                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_ENOUGH_MEMORY: return "Not enough storage is available to process this command.";
00094                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_BLOCK: return "The storage control block address is invalid.";
00095                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_ENVIRONMENT: return "The environment is incorrect.";
00096                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_FORMAT: return "An attempt was made to load a program with an incorrect format.";
00097                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_ACCESS: return "The access code is invalid.";
00098                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_DATA: return "The data is invalid.";
00099                 case Sylloge.WinAPI.ErrorCodes.ERROR_OUTOFMEMORY: return "Not enough storage is available to complete this operation.";
00100                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_DRIVE: return "The system cannot find the drive specified.";
00101                 case Sylloge.WinAPI.ErrorCodes.ERROR_CURRENT_DIRECTORY: return "The directory cannot be removed.";
00102                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_SAME_DEVICE: return "The system cannot move the file to a different disk drive.";
00103                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_MORE_FILES: return "There are no more files.";
00104                 case Sylloge.WinAPI.ErrorCodes.ERROR_WRITE_PROTECT: return "The media is write protected.";
00105                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_UNIT: return "The system cannot find the device specified.";
00106                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_READY: return "The device is not ready.";
00107                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_COMMAND: return "The device does not recognize the command.";
00108                 case Sylloge.WinAPI.ErrorCodes.ERROR_CRC: return "Data error (cyclic redundancy check).";
00109                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_LENGTH: return "The program issued a command but the command length is incorrect.";
00110                 case Sylloge.WinAPI.ErrorCodes.ERROR_SEEK: return "The drive cannot locate a specific area or track on the disk.";
00111                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_DOS_DISK: return "The specified disk or diskette cannot be accessed.";
00112                 case Sylloge.WinAPI.ErrorCodes.ERROR_SECTOR_NOT_FOUND: return "The drive cannot find the sector requested.";
00113                 case Sylloge.WinAPI.ErrorCodes.ERROR_OUT_OF_PAPER: return "The printer is out of paper.";
00114                 case Sylloge.WinAPI.ErrorCodes.ERROR_WRITE_FAULT: return "The system cannot write to the specified device.";
00115                 case Sylloge.WinAPI.ErrorCodes.ERROR_READ_FAULT: return "The system cannot read from the specified device.";
00116                 case Sylloge.WinAPI.ErrorCodes.ERROR_GEN_FAILURE: return "A device attached to the system is not functioning.";
00117                 case Sylloge.WinAPI.ErrorCodes.ERROR_SHARING_VIOLATION: return "The process cannot access the file because it is being used by another process.";
00118                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOCK_VIOLATION: return "The process cannot access the file because another process has locked a portion of the file.";
00119                 case Sylloge.WinAPI.ErrorCodes.ERROR_WRONG_DISK: return "The wrong diskette is in the drive. Insert {1} (Volume Serial Number: {2}) into drive {0}.";
00120                 case Sylloge.WinAPI.ErrorCodes.ERROR_SHARING_BUFFER_EXCEEDED: return "Too many files opened for sharing.";
00121                 case Sylloge.WinAPI.ErrorCodes.ERROR_HANDLE_EOF: return "Reached the end of the file.";
00122                 case Sylloge.WinAPI.ErrorCodes.ERROR_HANDLE_DISK_FULL: return "The disk is full.";
00123                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_SUPPORTED: return "The request is not supported.";
00124                 case Sylloge.WinAPI.ErrorCodes.ERROR_REM_NOT_LIST: return "Windows cannot find the network path. Verify that the network path is correct and the destination computer is not busy or turned off. If Windows still cannot find the network path, contact your network administrator.";
00125                 case Sylloge.WinAPI.ErrorCodes.ERROR_DUP_NAME: return "You were not connected because a duplicate name exists on the network. If joining a domain, go to System in Control Panel to change the computer name and try again. If joining a workgroup, choose another workgroup name.";
00126                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_NETPATH: return "The network path was not found.";
00127                 case Sylloge.WinAPI.ErrorCodes.ERROR_NETWORK_BUSY: return "The network is busy.";
00128                 case Sylloge.WinAPI.ErrorCodes.ERROR_DEV_NOT_EXIST: return "The specified network resource or device is no longer available.";
00129                 case Sylloge.WinAPI.ErrorCodes.ERROR_TOO_MANY_CMDS: return "The network BIOS command limit has been reached.";
00130                 case Sylloge.WinAPI.ErrorCodes.ERROR_ADAP_HDW_ERR: return "A network adapter hardware error occurred.";
00131                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_NET_RESP: return "The specified server cannot perform the requested operation.";
00132                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNEXP_NET_ERR: return "An unexpected network error occurred.";
00133                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_REM_ADAP: return "The remote adapter is not compatible.";
00134                 case Sylloge.WinAPI.ErrorCodes.ERROR_PRINTQ_FULL: return "The printer queue is full.";
00135                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_SPOOL_SPACE: return "Space to store the file waiting to be printed is not available on the server.";
00136                 case Sylloge.WinAPI.ErrorCodes.ERROR_PRINT_CANCELLED: return "Your file waiting to be printed was deleted.";
00137                 case Sylloge.WinAPI.ErrorCodes.ERROR_NETNAME_DELETED: return "The specified network name is no longer available.";
00138                 case Sylloge.WinAPI.ErrorCodes.ERROR_NETWORK_ACCESS_DENIED: return "Network access is denied.";
00139                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_DEV_TYPE: return "The network resource type is not correct.";
00140                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_NET_NAME: return "The network name cannot be found.";
00141                 case Sylloge.WinAPI.ErrorCodes.ERROR_TOO_MANY_NAMES: return "The name limit for the local computer network adapter card was exceeded.";
00142                 case Sylloge.WinAPI.ErrorCodes.ERROR_TOO_MANY_SESS: return "The network BIOS session limit was exceeded.";
00143                 case Sylloge.WinAPI.ErrorCodes.ERROR_SHARING_PAUSED: return "The remote server has been paused or is in the process of being started.";
00144                 case Sylloge.WinAPI.ErrorCodes.ERROR_REQ_NOT_ACCEP: return "No more connections can be made to this remote computer at this time because there are already as many connections as the computer can accept.";
00145                 case Sylloge.WinAPI.ErrorCodes.ERROR_REDIR_PAUSED: return "The specified printer or disk device has been paused.";
00146                 case Sylloge.WinAPI.ErrorCodes.ERROR_FILE_EXISTS: return "The file exists.";
00147                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANNOT_MAKE: return "The directory or file cannot be created.";
00148                 case Sylloge.WinAPI.ErrorCodes.ERROR_FAIL_I24: return "Fail on INT 24.";
00149                 case Sylloge.WinAPI.ErrorCodes.ERROR_OUT_OF_STRUCTURES: return "Storage to process this request is not available.";
00150                 case Sylloge.WinAPI.ErrorCodes.ERROR_ALREADY_ASSIGNED: return "The local device name is already in use.";
00151                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_PASSWORD: return "The specified network password is not correct.";
00152                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_PARAMETER: return "The parameter is incorrect.";
00153                 case Sylloge.WinAPI.ErrorCodes.ERROR_NET_WRITE_FAULT: return "A write fault occurred on the network.";
00154                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_PROC_SLOTS: return "The system cannot start another process at this time.";
00155                 case Sylloge.WinAPI.ErrorCodes.ERROR_TOO_MANY_SEMAPHORES: return "Cannot create another system semaphore.";
00156                 case Sylloge.WinAPI.ErrorCodes.ERROR_EXCL_SEM_ALREADY_OWNED: return "The exclusive semaphore is owned by another process.";
00157                 case Sylloge.WinAPI.ErrorCodes.ERROR_SEM_IS_SET: return "The semaphore is set and cannot be closed.";
00158                 case Sylloge.WinAPI.ErrorCodes.ERROR_TOO_MANY_SEM_REQUESTS: return "The semaphore cannot be set again.";
00159                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_AT_INTERRUPT_TIME: return "Cannot request exclusive semaphores at interrupt time.";
00160                 case Sylloge.WinAPI.ErrorCodes.ERROR_SEM_OWNER_DIED: return "The previous ownership of this semaphore has ended.";
00161                 case Sylloge.WinAPI.ErrorCodes.ERROR_SEM_USER_LIMIT: return "Insert the diskette for drive {0}.";
00162                 case Sylloge.WinAPI.ErrorCodes.ERROR_DISK_CHANGE: return "The program stopped because an alternate diskette was not inserted.";
00163                 case Sylloge.WinAPI.ErrorCodes.ERROR_DRIVE_LOCKED: return "The disk is in use or locked by another process.";
00164                 case Sylloge.WinAPI.ErrorCodes.ERROR_BROKEN_PIPE: return "The pipe has been ended.";
00165                 case Sylloge.WinAPI.ErrorCodes.ERROR_OPEN_FAILED: return "The system cannot open the device or file specified.";
00166                 case Sylloge.WinAPI.ErrorCodes.ERROR_BUFFER_OVERFLOW: return "The file name is too long.";
00167                 case Sylloge.WinAPI.ErrorCodes.ERROR_DISK_FULL: return "There is not enough space on the disk.";
00168                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_MORE_SEARCH_HANDLES: return "No more internal file identifiers available.";
00169                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_TARGET_HANDLE: return "The target internal file identifier is incorrect.";
00170                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_CATEGORY: return "The IOCTL call made by the application program is not correct.";
00171                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_VERIFY_SWITCH: return "The verify-on-write switch parameter value is not correct.";
00172                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_DRIVER_LEVEL: return "The system does not support the command requested.";
00173                 case Sylloge.WinAPI.ErrorCodes.ERROR_CALL_NOT_IMPLEMENTED: return "This function is not supported on this system.";
00174                 case Sylloge.WinAPI.ErrorCodes.ERROR_SEM_TIMEOUT: return "The semaphore timeout period has expired.";
00175                 case Sylloge.WinAPI.ErrorCodes.ERROR_INSUFFICIENT_BUFFER: return "The data area passed to a system call is too small.";
00176                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_NAME: return "The filename, directory name, or volume label syntax is incorrect.";
00177                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_LEVEL: return "The system call level is not correct.";
00178                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_VOLUME_LABEL: return "The disk has no volume label.";
00179                 case Sylloge.WinAPI.ErrorCodes.ERROR_MOD_NOT_FOUND: return "The specified module could not be found.";
00180                 case Sylloge.WinAPI.ErrorCodes.ERROR_PROC_NOT_FOUND: return "The specified procedure could not be found.";
00181                 case Sylloge.WinAPI.ErrorCodes.ERROR_WAIT_NO_CHILDREN: return "There are no child processes to wait for.";
00182                 case Sylloge.WinAPI.ErrorCodes.ERROR_CHILD_NOT_COMPLETE: return "The {0} application cannot be run in WinAPI mode.";
00183                 case Sylloge.WinAPI.ErrorCodes.ERROR_DIRECT_ACCESS_HANDLE: return "Attempt to use a file handle to an open disk partition for an operation other than raw disk I/O.";
00184                 case Sylloge.WinAPI.ErrorCodes.ERROR_NEGATIVE_SEEK: return "An attempt was made to move the file pointer before the beginning of the file.";
00185                 case Sylloge.WinAPI.ErrorCodes.ERROR_SEEK_ON_DEVICE: return "The file pointer cannot be set on the specified device or file.";
00186                 case Sylloge.WinAPI.ErrorCodes.ERROR_IS_JOIN_TARGET: return "A JOIN or SUBST command cannot be used for a drive that contains previously joined drives.";
00187                 case Sylloge.WinAPI.ErrorCodes.ERROR_IS_JOINED: return "An attempt was made to use a JOIN or SUBST command on a drive that has already been joined.";
00188                 case Sylloge.WinAPI.ErrorCodes.ERROR_IS_SUBSTED: return "An attempt was made to use a JOIN or SUBST command on a drive that has already been substituted.";
00189                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_JOINED: return "The system tried to delete the JOIN of a drive that is not joined.";
00190                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_SUBSTED: return "The system tried to delete the substitution of a drive that is not substituted.";
00191                 case Sylloge.WinAPI.ErrorCodes.ERROR_JOIN_TO_JOIN: return "The system tried to join a drive to a directory on a joined drive.";
00192                 case Sylloge.WinAPI.ErrorCodes.ERROR_SUBST_TO_SUBST: return "The system tried to substitute a drive to a directory on a substituted drive.";
00193                 case Sylloge.WinAPI.ErrorCodes.ERROR_JOIN_TO_SUBST: return "The system tried to join a drive to a directory on a substituted drive.";
00194                 case Sylloge.WinAPI.ErrorCodes.ERROR_SUBST_TO_JOIN: return "The system tried to SUBST a drive to a directory on a joined drive.";
00195                 case Sylloge.WinAPI.ErrorCodes.ERROR_BUSY_DRIVE: return "The system cannot perform a JOIN or SUBST at this time.";
00196                 case Sylloge.WinAPI.ErrorCodes.ERROR_SAME_DRIVE: return "The system cannot join or substitute a drive to or for a directory on the same drive.";
00197                 case Sylloge.WinAPI.ErrorCodes.ERROR_DIR_NOT_ROOT: return "The directory is not a subdirectory of the root directory.";
00198                 case Sylloge.WinAPI.ErrorCodes.ERROR_DIR_NOT_EMPTY: return "The directory is not empty.";
00199                 case Sylloge.WinAPI.ErrorCodes.ERROR_IS_SUBST_PATH: return "The path specified is being used in a substitute.";
00200                 case Sylloge.WinAPI.ErrorCodes.ERROR_IS_JOIN_PATH: return "Not enough resources are available to process this command.";
00201                 case Sylloge.WinAPI.ErrorCodes.ERROR_PATH_BUSY: return "The path specified cannot be used at this time.";
00202                 case Sylloge.WinAPI.ErrorCodes.ERROR_IS_SUBST_TARGET: return "An attempt was made to join or substitute a drive for which a directory on the drive is the target of a previous substitute.";
00203                 case Sylloge.WinAPI.ErrorCodes.ERROR_SYSTEM_TRACE: return "System trace information was not specified in your CONFIG.SYS file, or tracing is disallowed.";
00204                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_EVENT_COUNT: return "The number of specified semaphore events for DosMuxSemWait is not correct.";
00205                 case Sylloge.WinAPI.ErrorCodes.ERROR_TOO_MANY_MUXWAITERS: return "DosMuxSemWait did not execute; too many semaphores are already set.";
00206                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_LIST_FORMAT: return "The DosMuxSemWait list is not correct.";
00207                 case Sylloge.WinAPI.ErrorCodes.ERROR_LABEL_TOO_LONG: return "The volume label you entered exceeds the label character limit of the target file system.";
00208                 case Sylloge.WinAPI.ErrorCodes.ERROR_TOO_MANY_TCBS: return "Cannot create another thread.";
00209                 case Sylloge.WinAPI.ErrorCodes.ERROR_SIGNAL_REFUSED: return "The recipient process has refused the signal.";
00210                 case Sylloge.WinAPI.ErrorCodes.ERROR_DISCARDED: return "The segment is already discarded and cannot be locked.";
00211                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_LOCKED: return "The segment is already unlocked.";
00212                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_THREADID_ADDR: return "The address for the thread ID is not correct.";
00213                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_ARGUMENTS: return "One or more arguments are not correct.";
00214                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_PATHNAME: return "The specified path is invalid.";
00215                 case Sylloge.WinAPI.ErrorCodes.ERROR_SIGNAL_PENDING: return "A signal is already pending.";
00216                 case Sylloge.WinAPI.ErrorCodes.ERROR_MAX_THRDS_REACHED: return "No more threads can be created in the system.";
00217                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOCK_FAILED: return "Unable to lock a region of a file.";
00218                 case Sylloge.WinAPI.ErrorCodes.ERROR_BUSY: return "The requested resource is in use.";
00219                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANCEL_VIOLATION: return "A lock request was not outstanding for the supplied cancel region.";
00220                 case Sylloge.WinAPI.ErrorCodes.ERROR_ATOMIC_LOCKS_NOT_SUPPORTED: return "The file system does not support atomic changes to the lock type.";
00221                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_SEGMENT_NUMBER: return "The system detected a segment number that was not correct.";
00222                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_ORDINAL: return "The operating system cannot run {0}.";
00223                 case Sylloge.WinAPI.ErrorCodes.ERROR_ALREADY_EXISTS: return "Cannot create a file when that file already exists.";
00224                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_FLAG_NUMBER: return "The flag passed is not correct.";
00225                 case Sylloge.WinAPI.ErrorCodes.ERROR_SEM_NOT_FOUND: return "The specified system semaphore name was not found.";
00226                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_STARTING_CODESEG: return "The operating system cannot run {0}.";
00227                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_STACKSEG: return "The operating system cannot run {0}.";
00228                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_MODULETYPE: return "The operating system cannot run {0}.";
00229                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_EXE_SIGNATURE: return "Cannot run {0} in WinAPI mode.";
00230                 case Sylloge.WinAPI.ErrorCodes.ERROR_EXE_MARKED_INVALID: return "The operating system cannot run {0}.";
00231                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_EXE_FORMAT: return "{0} is not a valid WinAPI application.";
00232                 case Sylloge.WinAPI.ErrorCodes.ERROR_ITERATED_DATA_EXCEEDS_64k: return "The operating system cannot run {0}.";
00233                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_MINALLOCSIZE: return "The operating system cannot run {0}.";
00234                 case Sylloge.WinAPI.ErrorCodes.ERROR_DYNLINK_FROM_INVALID_RING: return "The operating system cannot run this application program.";
00235                 case Sylloge.WinAPI.ErrorCodes.ERROR_IOPL_NOT_ENABLED: return "The operating system is not presently configured to run this application.";
00236                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_SEGDPL: return "The operating system cannot run {0}.";
00237                 case Sylloge.WinAPI.ErrorCodes.ERROR_AUTODATASEG_EXCEEDS_64k: return "The operating system cannot run this application program.";
00238                 case Sylloge.WinAPI.ErrorCodes.ERROR_RING2SEG_MUST_BE_MOVABLE: return "The code segment cannot be greater than or equal to 64K.";
00239                 case Sylloge.WinAPI.ErrorCodes.ERROR_RELOC_CHAIN_XEEDS_SEGLIM: return "The operating system cannot run {0}.";
00240                 case Sylloge.WinAPI.ErrorCodes.ERROR_INFLOOP_IN_RELOC_CHAIN: return "The operating system cannot run {0}.";
00241                 case Sylloge.WinAPI.ErrorCodes.ERROR_ENVVAR_NOT_FOUND: return "The system could not find the environment option that was entered.";
00242                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_SIGNAL_SENT: return "No process in the command subtree has a signal handler.";
00243                 case Sylloge.WinAPI.ErrorCodes.ERROR_FILENAME_EXCED_RANGE: return "The filename or extension is too long.";
00244                 case Sylloge.WinAPI.ErrorCodes.ERROR_RING2_STACK_IN_USE: return "The ring 2 stack is in use.";
00245                 case Sylloge.WinAPI.ErrorCodes.ERROR_META_EXPANSION_TOO_LONG: return "The global filename characters, * or ?, are entered incorrectly or too many global filename characters are specified.";
00246                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_SIGNAL_NUMBER: return "The signal being posted is not correct.";
00247                 case Sylloge.WinAPI.ErrorCodes.ERROR_THREAD_1_INACTIVE: return "The signal handler cannot be set.";
00248                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOCKED: return "The segment is locked and cannot be reallocated.";
00249                 case Sylloge.WinAPI.ErrorCodes.ERROR_TOO_MANY_MODULES: return "Too many dynamic-link modules are attached to this program or dynamic-link module.";
00250                 case Sylloge.WinAPI.ErrorCodes.ERROR_NESTING_NOT_ALLOWED: return "Cannot nest calls to LoadModule.";
00251                 case Sylloge.WinAPI.ErrorCodes.ERROR_EXE_MACHINE_TYPE_MISMATCH: return "The version of {0} is not compatible with the version you're running. Check your computer's system information to see whether you need a x86 (32-bit) or x64 (64-bit) version of the program, and then contact the software publisher.";
00252                 case Sylloge.WinAPI.ErrorCodes.ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY: return "The image file {0} is signed, unable to modify.";
00253                 case Sylloge.WinAPI.ErrorCodes.ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY: return "The image file {0} is strong signed, unable to modify.";
00254                 case Sylloge.WinAPI.ErrorCodes.ERROR_FILE_CHECKED_OUT: return "This file is checked out or locked for editing by another user.";
00255                 case Sylloge.WinAPI.ErrorCodes.ERROR_CHECKOUT_REQUIRED: return "The file must be checked out before saving changes.";
00256                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_FILE_TYPE: return "The file type being saved or retrieved has been blocked.";
00257                 case Sylloge.WinAPI.ErrorCodes.ERROR_FILE_TOO_LARGE: return "The file size exceeds the limit allowed and cannot be saved.";
00258                 case Sylloge.WinAPI.ErrorCodes.ERROR_FORMS_AUTH_REQUIRED: return "Access Denied. Before opening files in this location, you must first add the web site to your trusted sites list, browse to the web site, and select the option to login automatically.";
00259                 case Sylloge.WinAPI.ErrorCodes.ERROR_VIRUS_INFECTED: return "Operation did not complete successfully because the file contains a virus.";
00260                 case Sylloge.WinAPI.ErrorCodes.ERROR_VIRUS_DELETED: return "This file contains a virus and cannot be opened. Due to the nature of this virus, the file has been removed from this location.";
00261                 case Sylloge.WinAPI.ErrorCodes.ERROR_PIPE_LOCAL: return "The pipe is local.";
00262                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_PIPE: return "The pipe state is invalid.";
00263                 case Sylloge.WinAPI.ErrorCodes.ERROR_PIPE_BUSY: return "All pipe instances are busy.";
00264                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_DATA: return "The pipe is being closed.";
00265                 case Sylloge.WinAPI.ErrorCodes.ERROR_PIPE_NOT_CONNECTED: return "No process is on the other end of the pipe.";
00266                 case Sylloge.WinAPI.ErrorCodes.ERROR_MORE_DATA: return "More data is available.";
00267                 case Sylloge.WinAPI.ErrorCodes.ERROR_VC_DISCONNECTED: return "The session was canceled.";
00268                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_EA_NAME: return "The specified extended attribute name was invalid.";
00269                 case Sylloge.WinAPI.ErrorCodes.ERROR_EA_LIST_INCONSISTENT: return "The extended attributes are inconsistent.";
00270                 case Sylloge.WinAPI.ErrorCodes.WAIT_TIMEOUT: return "The wait operation timed out.";
00271                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_MORE_ITEMS: return "No more data is available.";
00272                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANNOT_COPY: return "The copy functions cannot be used.";
00273                 case Sylloge.WinAPI.ErrorCodes.ERROR_DIRECTORY: return "The directory name is invalid.";
00274                 case Sylloge.WinAPI.ErrorCodes.ERROR_EAS_DIDNT_FIT: return "The extended attributes did not fit in the buffer.";
00275                 case Sylloge.WinAPI.ErrorCodes.ERROR_EA_FILE_CORRUPT: return "The extended attribute file on the mounted file system is corrupt.";
00276                 case Sylloge.WinAPI.ErrorCodes.ERROR_EA_TABLE_FULL: return "The extended attribute table file is full.";
00277                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_EA_HANDLE: return "The specified extended attribute handle is invalid.";
00278                 case Sylloge.WinAPI.ErrorCodes.ERROR_EAS_NOT_SUPPORTED: return "The mounted file system does not support extended attributes.";
00279                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_OWNER: return "Attempt to release mutex not owned by caller.";
00280                 case Sylloge.WinAPI.ErrorCodes.ERROR_TOO_MANY_POSTS: return "Too many posts were made to a semaphore.";
00281                 case Sylloge.WinAPI.ErrorCodes.ERROR_PARTIAL_COPY: return "Only part of a ReadProcessMemory or WriteProcessMemory request was completed.";
00282                 case Sylloge.WinAPI.ErrorCodes.ERROR_OPLOCK_NOT_GRANTED: return "The oplock request is denied.";
00283                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_OPLOCK_PROTOCOL: return "An invalid oplock acknowledgment was received by the system.";
00284                 case Sylloge.WinAPI.ErrorCodes.ERROR_DISK_TOO_FRAGMENTED: return "The volume is too fragmented to complete this operation.";
00285                 case Sylloge.WinAPI.ErrorCodes.ERROR_DELETE_PENDING: return "The file cannot be opened because it is in the process of being deleted.";
00286                 case Sylloge.WinAPI.ErrorCodes.ERROR_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING: return "Short name settings may not be changed on this volume due to the global registry setting.";
00287                 case Sylloge.WinAPI.ErrorCodes.ERROR_SHORT_NAMES_NOT_ENABLED_ON_VOLUME: return "Short names are not enabled on this volume.";
00288                 case Sylloge.WinAPI.ErrorCodes.ERROR_SECURITY_STREAM_IS_INCONSISTENT: return "The security stream for the given volume is in an inconsistent state. Please run CHKDSK on the volume.";
00289                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_LOCK_RANGE: return "A requested file lock operation cannot be processed due to an invalid byte range.";
00290                 case Sylloge.WinAPI.ErrorCodes.ERROR_IMAGE_SUBSYSTEM_NOT_PRESENT: return "The subsystem needed to support the image type is not present.";
00291                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOTIFICATION_GUID_ALREADY_DEFINED: return "The specified file already has a notification GUID associated with it.";
00292                 case Sylloge.WinAPI.ErrorCodes.ERROR_MR_MID_NOT_FOUND: return "The system cannot find message text for message number 0x{0} in the message file for {1}.";
00293                 case Sylloge.WinAPI.ErrorCodes.ERROR_SCOPE_NOT_FOUND: return "The scope specified was not found.";
00294                 case Sylloge.WinAPI.ErrorCodes.ERROR_FAIL_NOACTION_REBOOT: return "No action was taken as a system reboot is required.";
00295                 case Sylloge.WinAPI.ErrorCodes.ERROR_FAIL_SHUTDOWN: return "The shutdown operation failed.";
00296                 case Sylloge.WinAPI.ErrorCodes.ERROR_FAIL_RESTART: return "The restart operation failed.";
00297                 case Sylloge.WinAPI.ErrorCodes.ERROR_MAX_SESSIONS_REACHED: return "The maximum number of sessions has been reached.";
00298                 case Sylloge.WinAPI.ErrorCodes.ERROR_THREAD_MODE_ALREADY_BACKGROUND: return "The thread is already in background processing mode.";
00299                 case Sylloge.WinAPI.ErrorCodes.ERROR_THREAD_MODE_NOT_BACKGROUND: return "The thread is not in background processing mode.";
00300                 case Sylloge.WinAPI.ErrorCodes.ERROR_PROCESS_MODE_ALREADY_BACKGROUND: return "The process is already in background processing mode.";
00301                 case Sylloge.WinAPI.ErrorCodes.ERROR_PROCESS_MODE_NOT_BACKGROUND: return "The process is not in background processing mode.";
00302                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_ADDRESS: return "Attempt to access invalid address.";
00303                 case Sylloge.WinAPI.ErrorCodes.ERROR_USER_PROFILE_LOAD: return "User profile cannot be loaded.";
00304                 case Sylloge.WinAPI.ErrorCodes.ERROR_ARITHMETIC_OVERFLOW: return "Arithmetic result exceeded 32 bits.";
00305                 case Sylloge.WinAPI.ErrorCodes.ERROR_PIPE_CONNECTED: return "There is a process on other end of the pipe.";
00306                 case Sylloge.WinAPI.ErrorCodes.ERROR_PIPE_LISTENING: return "Waiting for a process to open the other end of the pipe.";
00307                 case Sylloge.WinAPI.ErrorCodes.ERROR_VERIFIER_STOP: return "Application verifier has found an error in the current process.";
00308                 case Sylloge.WinAPI.ErrorCodes.ERROR_ABIOS_ERROR: return "An error occurred in the ABIOS subsystem.";
00309                 case Sylloge.WinAPI.ErrorCodes.ERROR_WX86_WARNING: return "A warning occurred in the WX86 subsystem.";
00310                 case Sylloge.WinAPI.ErrorCodes.ERROR_WX86_ERROR: return "An error occurred in the WX86 subsystem.";
00311                 case Sylloge.WinAPI.ErrorCodes.ERROR_TIMER_NOT_CANCELED: return "An attempt was made to cancel or set a timer that has an associated APC and the subject thread is not the thread that originally set the timer with an associated APC routine.";
00312                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNWIND: return "Unwind exception code.";
00313                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_STACK: return "An invalid or unaligned stack was encountered during an unwind operation.";
00314                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_UNWIND_TARGET: return "An invalid unwind target was encountered during an unwind operation.";
00315                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_PORT_ATTRIBUTES: return "Invalid Object Attributes specified to NtCreatePort or invalid Port Attributes specified to NtConnectPort.";
00316                 case Sylloge.WinAPI.ErrorCodes.ERROR_PORT_MESSAGE_TOO_LONG: return "Length of message passed to NtRequestPort or NtRequestWaitReplyPort was longer than the maximum message allowed by the port.";
00317                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_QUOTA_LOWER: return "An attempt was made to lower a quota limit below the current usage.";
00318                 case Sylloge.WinAPI.ErrorCodes.ERROR_DEVICE_ALREADY_ATTACHED: return "An attempt was made to attach to a device that was already attached to another device.";
00319                 case Sylloge.WinAPI.ErrorCodes.ERROR_INSTRUCTION_MISALIGNMENT: return "An attempt was made to execute an instruction at an unaligned address and the host system does not support unaligned instruction references.";
00320                 case Sylloge.WinAPI.ErrorCodes.ERROR_PROFILING_NOT_STARTED: return "Profiling not started.";
00321                 case Sylloge.WinAPI.ErrorCodes.ERROR_PROFILING_NOT_STOPPED: return "Profiling not stopped.";
00322                 case Sylloge.WinAPI.ErrorCodes.ERROR_COULD_NOT_INTERPRET: return "The passed ACL did not contain the minimum required information.";
00323                 case Sylloge.WinAPI.ErrorCodes.ERROR_PROFILING_AT_LIMIT: return "The number of active profiling objects is at the maximum and no more may be started.";
00324                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANT_WAIT: return "Used to indicate that an operation cannot continue without blocking for I/O.";
00325                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANT_TERMINATE_SELF: return "Indicates that a thread attempted to terminate itself by default (called NtTerminateThread with NULL) and it was the last thread in the current process.";
00326                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNEXPECTED_MM_CREATE_ERR: return "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.";
00327                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNEXPECTED_MM_MAP_ERROR: return "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.";
00328                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNEXPECTED_MM_EXTEND_ERR: return "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.";
00329                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_FUNCTION_TABLE: return "A malformed function table was encountered during an unwind operation.";
00330                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_GUID_TRANSLATION: return "Indicates that an attempt was made to assign protection to a file system file or directory and one of the SIDs in the security descriptor could not be translated into a GUID that could be stored by the file system. This causes the protection attempt to fail, which may cause a file creation attempt to fail.";
00331                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_LDT_SIZE: return "Indicates that an attempt was made to grow an LDT by setting its size, or that the size was not an even number of selectors.";
00332                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_LDT_OFFSET: return "Indicates that the starting value for the LDT information was not an integral multiple of the selector size.";
00333                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_LDT_DESCRIPTOR: return "Indicates that the user supplied an invalid descriptor when trying to set up Ldt descriptors.";
00334                 case Sylloge.WinAPI.ErrorCodes.ERROR_TOO_MANY_THREADS: return "Indicates a process has too many threads to perform the requested action. For example, assignment of a primary token may only be performed when a process has zero or one threads.";
00335                 case Sylloge.WinAPI.ErrorCodes.ERROR_THREAD_NOT_IN_PROCESS: return "An attempt was made to operate on a thread within a specific process, but the thread specified is not in the process specified.";
00336                 case Sylloge.WinAPI.ErrorCodes.ERROR_PAGEFILE_QUOTA_EXCEEDED: return "Page file quota was exceeded.";
00337                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOGON_SERVER_CONFLICT: return "The Netlogon service cannot start because another Netlogon service running in the domain conflicts with the specified role.";
00338                 case Sylloge.WinAPI.ErrorCodes.ERROR_SYNCHRONIZATION_REQUIRED: return "The SAM database on a Windows Server is significantly out of synchronization with the copy on the Domain Controller. A complete synchronization is required.";
00339                 case Sylloge.WinAPI.ErrorCodes.ERROR_NET_OPEN_FAILED: return "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.";
00340                 case Sylloge.WinAPI.ErrorCodes.ERROR_IO_PRIVILEGE_FAILED: return "{Privilege Failed} The I/O permissions for the process could not be changed.";
00341                 case Sylloge.WinAPI.ErrorCodes.ERROR_CONTROL_C_EXIT: return "{Application Exit by CTRL+C} The application terminated as a result of a CTRL+C.";
00342                 case Sylloge.WinAPI.ErrorCodes.ERROR_MISSING_SYSTEMFILE: return "{Missing System File} The required system file %hs is bad or missing.";
00343                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNHANDLED_EXCEPTION: return "{Application Error} The exception %s (0x%08lx) occurred in the application at location 0x%08lx.";
00344                 case Sylloge.WinAPI.ErrorCodes.ERROR_APP_INIT_FAILURE: return "{Application Error} The application failed to initialize properly (0x%lx). Click OK to terminate the application.";
00345                 case Sylloge.WinAPI.ErrorCodes.ERROR_PAGEFILE_CREATE_FAILED: return "{Unable to Create Paging File} The creation of the paging file %hs failed (%lx). The requested size was %ld.";
00346                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_IMAGE_HASH: return "Windows cannot verify the digital signature for this file. A recent hardware or software change might have installed a file that is signed incorrectly or damaged, or that might be malicious software from an unknown source.";
00347                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_PAGEFILE: return "{No Paging File Specified} No paging file was specified in the system configuration.";
00348                 case Sylloge.WinAPI.ErrorCodes.ERROR_ILLEGAL_FLOAT_CONTEXT: return "{EXCEPTION} A real-mode application issued a floating-point instruction and floating-point hardware is not present.";
00349                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_EVENT_PAIR: return "An event pair synchronization operation was performed using the thread specific client/server event pair object, but no event pair object was associated with the thread.";
00350                 case Sylloge.WinAPI.ErrorCodes.ERROR_DOMAIN_CTRLR_CONFIG_ERROR: return "A Windows Server has an incorrect configuration.";
00351                 case Sylloge.WinAPI.ErrorCodes.ERROR_ILLEGAL_CHARACTER: return "An illegal character was encountered. For a multi-byte character set this includes a lead byte without a succeeding trail byte. For the Unicode character set this includes the characters 0xFFFF and 0xFFFE.";
00352                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNDEFINED_CHARACTER: return "The Unicode character is not defined in the Unicode character set installed on the system.";
00353                 case Sylloge.WinAPI.ErrorCodes.ERROR_FLOPPY_VOLUME: return "The paging file cannot be created on a floppy diskette.";
00354                 case Sylloge.WinAPI.ErrorCodes.ERROR_BIOS_FAILED_TO_CONNECT_INTERRUPT: return "The system BIOS failed to connect a system interrupt to the device or bus for which the device is connected.";
00355                 case Sylloge.WinAPI.ErrorCodes.ERROR_BACKUP_CONTROLLER: return "This operation is only allowed for the Primary Domain Controller of the domain.";
00356                 case Sylloge.WinAPI.ErrorCodes.ERROR_MUTANT_LIMIT_EXCEEDED: return "An attempt was made to acquire a mutant such that its maximum count would have been exceeded.";
00357                 case Sylloge.WinAPI.ErrorCodes.ERROR_FS_DRIVER_REQUIRED: return "A volume has been accessed for which a file system driver is required that has not yet been loaded.";
00358                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANNOT_LOAD_REGISTRY_FILE: return "{Registry File Failure} The registry cannot load the hive (file): %hs or its log or alternate. It is corrupt, absent, or not writable.";
00359                 case Sylloge.WinAPI.ErrorCodes.ERROR_DEBUG_ATTACH_FAILED: return "{Unexpected Failure in DebugActiveProcess} An unexpected failure occurred while processing a DebugActiveProcess API request. You may choose OK to terminate the process, or Cancel to ignore the error.";
00360                 case Sylloge.WinAPI.ErrorCodes.ERROR_SYSTEM_PROCESS_TERMINATED: return "{Fatal System Error} The %hs system process terminated unexpectedly with a status of 0x%08x (0x%08x 0x%08x). The system has been shut down.";
00361                 case Sylloge.WinAPI.ErrorCodes.ERROR_DATA_NOT_ACCEPTED: return "{Data Not Accepted} The TDI client could not handle the data received during an indication.";
00362                 case Sylloge.WinAPI.ErrorCodes.ERROR_VDM_HARD_ERROR: return "NTVDM encountered a hard error.";
00363                 case Sylloge.WinAPI.ErrorCodes.ERROR_DRIVER_CANCEL_TIMEOUT: return "{Cancel Timeout} The driver %hs failed to complete a canceled I/O request in the allotted time.";
00364                 case Sylloge.WinAPI.ErrorCodes.ERROR_REPLY_MESSAGE_MISMATCH: return "{Reply Message Mismatch} An attempt was made to reply to an LPC message, but the thread specified by the client ID in the message was not waiting on that message.";
00365                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOST_WRITEBEHIND_DATA: return "{Delayed Write Failed} Windows was unable to save all the data for the file %hs. The data has been lost. This error may be caused by a failure of your computer hardware or network connection. Please try to save this file elsewhere.";
00366                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLIENT_SERVER_PARAMETERS_INVALID: return "The parameter(s) passed to the server in the client/server shared memory window were invalid. Too much data may have been put in the shared memory window.";
00367                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_TINY_STREAM: return "The stream is not a tiny stream.";
00368                 case Sylloge.WinAPI.ErrorCodes.ERROR_STACK_OVERFLOW_READ: return "The request must be handled by the stack overflow code.";
00369                 case Sylloge.WinAPI.ErrorCodes.ERROR_CONVERT_TO_LARGE: return "Internal OFS status codes indicating how an allocation operation is handled. Either it is retried after the containing node is moved or the extent stream is converted to a large stream.";
00370                 case Sylloge.WinAPI.ErrorCodes.ERROR_FOUND_OUT_OF_SCOPE: return "The attempt to find the object found an object matching by ID on the volume but it is out of the scope of the handle used for the operation.";
00371                 case Sylloge.WinAPI.ErrorCodes.ERROR_ALLOCATE_BUCKET: return "The bucket array must be grown. Retry transaction after doing so.";
00372                 case Sylloge.WinAPI.ErrorCodes.ERROR_MARSHALL_OVERFLOW: return "The user/kernel marshalling buffer has overflowed.";
00373                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_VARIANT: return "The supplied variant structure contains invalid data.";
00374                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_COMPRESSION_BUFFER: return "The specified buffer contains ill-formed data.";
00375                 case Sylloge.WinAPI.ErrorCodes.ERROR_AUDIT_FAILED: return "{Audit Failed} An attempt to generate a security audit failed.";
00376                 case Sylloge.WinAPI.ErrorCodes.ERROR_TIMER_RESOLUTION_NOT_SET: return "The timer resolution was not previously set by the current process.";
00377                 case Sylloge.WinAPI.ErrorCodes.ERROR_INSUFFICIENT_LOGON_INFO: return "There is insufficient account information to log you on.";
00378                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_DLL_ENTRYPOINT: return "{Invalid DLL Entry point} The dynamic link library %hs is not written correctly. The stack pointer has been left in an inconsistent state. The entry point 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.";
00379                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_SERVICE_ENTRYPOINT: return "{Invalid Service Callback Entry point} The %hs service is not written correctly. The stack pointer has been left in an inconsistent state. The callback entry point should be declared as WINAPI or STDCALL. Selecting OK will cause the service to continue operation. However, the service process may operate incorrectly.";
00380                 case Sylloge.WinAPI.ErrorCodes.ERROR_IP_ADDRESS_CONFLICT1: return "There is an IP address conflict with another system on the network";
00381                 case Sylloge.WinAPI.ErrorCodes.ERROR_IP_ADDRESS_CONFLICT2: return "There is an IP address conflict with another system on the network";
00382                 case Sylloge.WinAPI.ErrorCodes.ERROR_REGISTRY_QUOTA_LIMIT: return "{Low On Registry Space} The system has reached the maximum size allowed for the system part of the registry. Additional storage requests will be ignored.";
00383                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_CALLBACK_ACTIVE: return "A callback return system service cannot be executed when no callback is active.";
00384                 case Sylloge.WinAPI.ErrorCodes.ERROR_PWD_TOO_SHORT: return "The password provided is too short to meet the policy of your user account. Please choose a longer password.";
00385                 case Sylloge.WinAPI.ErrorCodes.ERROR_PWD_TOO_RECENT: return "The policy of your user account does not allow you to change passwords too frequently. This is done to prevent users from changing back to a familiar, but potentially discovered, password. If you feel your password has been compromised then please contact your administrator immediately to have a new one assigned.";
00386                 case Sylloge.WinAPI.ErrorCodes.ERROR_PWD_HISTORY_CONFLICT: return "You have attempted to change your password to one that you have used in the past. The policy of your user account does not allow this. Please select a password that you have not previously used.";
00387                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNSUPPORTED_COMPRESSION: return "The specified compression format is unsupported.";
00388                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_HW_PROFILE: return "The specified hardware profile configuration is invalid.";
00389                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_PLUGPLAY_DEVICE_PATH: return "The specified Plug and Play registry device path is invalid.";
00390                 case Sylloge.WinAPI.ErrorCodes.ERROR_QUOTA_LIST_INCONSISTENT: return "The specified quota list is internally inconsistent with its descriptor.";
00391                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVALUATION_EXPIRATION: return "{Windows Evaluation Notification} The evaluation period for this installation of Windows has expired. This system will shutdown in 1 hour. To restore access to this installation of Windows, please upgrade this installation using a licensed distribution of this product.";
00392                 case Sylloge.WinAPI.ErrorCodes.ERROR_ILLEGAL_DLL_RELOCATION: return "{Illegal System DLL Relocation} The system DLL %hs was relocated in memory. The application will not run properly. The relocation occurred because the DLL %hs occupied an address range reserved for Windows system DLLs. The vendor supplying the DLL should be contacted for a new DLL.";
00393                 case Sylloge.WinAPI.ErrorCodes.ERROR_DLL_INIT_FAILED_LOGOFF: return "{DLL Initialization Failed} The application failed to initialize because the window station is shutting down.";
00394                 case Sylloge.WinAPI.ErrorCodes.ERROR_VALIDATE_CONTINUE: return "The validation process needs to continue on to the next step.";
00395                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_MORE_MATCHES: return "There are no more matches for the current index enumeration.";
00396                 case Sylloge.WinAPI.ErrorCodes.ERROR_RANGE_LIST_CONFLICT: return "The range could not be added to the range list because of a conflict.";
00397                 case Sylloge.WinAPI.ErrorCodes.ERROR_SERVER_SID_MISMATCH: return "The server process is running under a SID different than that required by client.";
00398                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANT_ENABLE_DENY_ONLY: return "A group marked use for deny only cannot be enabled.";
00399                 case Sylloge.WinAPI.ErrorCodes.ERROR_FLOAT_MULTIPLE_FAULTS: return "{EXCEPTION} Multiple floating point faults.";
00400                 case Sylloge.WinAPI.ErrorCodes.ERROR_FLOAT_MULTIPLE_TRAPS: return "{EXCEPTION} Multiple floating point traps.";
00401                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOINTERFACE: return "The requested interface is not supported.";
00402                 case Sylloge.WinAPI.ErrorCodes.ERROR_DRIVER_FAILED_SLEEP: return "{System Standby Failed} The driver %hs does not support standby mode. Updating this driver may allow the system to go to standby mode.";
00403                 case Sylloge.WinAPI.ErrorCodes.ERROR_CORRUPT_SYSTEM_FILE: return "The system file {0} has become corrupt and has been replaced.";
00404                 case Sylloge.WinAPI.ErrorCodes.ERROR_COMMITMENT_MINIMUM: return "{Virtual Memory Minimum Too Low} Your system is low on virtual memory. Windows is increasing the size of your virtual memory paging file. During this process, memory requests for some applications may be denied. For more information, see Help.";
00405                 case Sylloge.WinAPI.ErrorCodes.ERROR_PNP_RESTART_ENUMERATION: return "A device was removed so enumeration must be restarted.";
00406                 case Sylloge.WinAPI.ErrorCodes.ERROR_SYSTEM_IMAGE_BAD_SIGNATURE: return "{Fatal System Error} The system image %s is not properly signed. The file has been replaced with the signed file. The system has been shut down.";
00407                 case Sylloge.WinAPI.ErrorCodes.ERROR_PNP_REBOOT_REQUIRED: return "Device will not start without a reboot.";
00408                 case Sylloge.WinAPI.ErrorCodes.ERROR_INSUFFICIENT_POWER: return "There is not enough power to complete the requested operation.";
00409                 case Sylloge.WinAPI.ErrorCodes.ERROR_MULTIPLE_FAULT_VIOLATION: return "ERROR_MULTIPLE_FAULT_VIOLATION";
00410                 case Sylloge.WinAPI.ErrorCodes.ERROR_SYSTEM_SHUTDOWN: return "The system is in the process of shutting down.";
00411                 case Sylloge.WinAPI.ErrorCodes.ERROR_PORT_NOT_SET: return "An attempt to remove a processes DebugPort was made, but a port was not already associated with the process.";
00412                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_VERSION_CHECK_FAILURE: return "This version of Windows is not compatible with the behavior version of directory forest, domain or domain controller.";
00413                 case Sylloge.WinAPI.ErrorCodes.ERROR_RANGE_NOT_FOUND: return "The specified range could not be found in the range list.";
00414                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_SAFE_MODE_DRIVER: return "The driver was not loaded because the system is booting into safe mode.";
00415                 case Sylloge.WinAPI.ErrorCodes.ERROR_FAILED_DRIVER_ENTRY: return "The driver was not loaded because it failed it's initialization call.";
00416                 case Sylloge.WinAPI.ErrorCodes.ERROR_DEVICE_ENUMERATION_ERROR: return "The \"%hs\" encountered an error while applying power or reading the device configuration. This may be caused by a failure of your hardware or by a poor connection.";
00417                 case Sylloge.WinAPI.ErrorCodes.ERROR_MOUNT_POINT_NOT_RESOLVED: return "The create operation failed because the name contained at least one mount point which resolves to a volume to which the specified device object is not attached.";
00418                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_DEVICE_OBJECT_PARAMETER: return "The device object parameter is either not a valid device object or is not attached to the volume specified by the file name.";
00419                 case Sylloge.WinAPI.ErrorCodes.ERROR_MCA_OCCURED: return "A Machine Check Error has occurred. Please check the system event log for additional information.";
00420                 case Sylloge.WinAPI.ErrorCodes.ERROR_DRIVER_DATABASE_ERROR: return "There was error [{1}] processing the driver database.";
00421                 case Sylloge.WinAPI.ErrorCodes.ERROR_SYSTEM_HIVE_TOO_LARGE: return "System hive size has exceeded its limit.";
00422                 case Sylloge.WinAPI.ErrorCodes.ERROR_DRIVER_FAILED_PRIOR_UNLOAD: return "The driver could not be loaded because a previous version of the driver is still in memory.";
00423                 case Sylloge.WinAPI.ErrorCodes.ERROR_VOLSNAP_PREPARE_HIBERNATE: return "{Volume Shadow Copy Service} Please wait while the Volume Shadow Copy Service prepares volume %hs for hibernation.";
00424                 case Sylloge.WinAPI.ErrorCodes.ERROR_HIBERNATION_FAILURE: return "The system has failed to hibernate (The error code is %hs). Hibernation will be disabled until the system is restarted.";
00425                 case Sylloge.WinAPI.ErrorCodes.ERROR_FILE_SYSTEM_LIMITATION: return "The requested operation could not be completed due to a file system limitation";
00426                 case Sylloge.WinAPI.ErrorCodes.ERROR_ASSERTION_FAILURE: return "An assertion failure has occurred.";
00427                 case Sylloge.WinAPI.ErrorCodes.ERROR_ACPI_ERROR: return "An error occurred in the ACPI subsystem.";
00428                 case Sylloge.WinAPI.ErrorCodes.ERROR_WOW_ASSERTION: return "WOW Assertion Error.";
00429                 case Sylloge.WinAPI.ErrorCodes.ERROR_PNP_BAD_MPS_TABLE: return "A device is missing in the system BIOS MPS table. This device will not be used. Please contact your system vendor for system BIOS update.";
00430                 case Sylloge.WinAPI.ErrorCodes.ERROR_PNP_TRANSLATION_FAILED: return "A translator failed to translate resources.";
00431                 case Sylloge.WinAPI.ErrorCodes.ERROR_PNP_IRQ_TRANSLATION_FAILED: return "A IRQ translator failed to translate resources.";
00432                 case Sylloge.WinAPI.ErrorCodes.ERROR_PNP_INVALID_ID: return "Driver {1} returned invalid ID for a child device ({2}).";
00433                 case Sylloge.WinAPI.ErrorCodes.ERROR_WAKE_SYSTEM_DEBUGGER: return "{Kernel Debugger Awakened} the system debugger was awakened by an interrupt.";
00434                 case Sylloge.WinAPI.ErrorCodes.ERROR_HANDLES_CLOSED: return "{Handles Closed} Handles to objects have been automatically closed as a result of the requested operation.";
00435                 case Sylloge.WinAPI.ErrorCodes.ERROR_EXTRANEOUS_INFORMATION: return "{Too Much Information} The specified access control list (ACL) contained more information than was expected.";
00436                 case Sylloge.WinAPI.ErrorCodes.ERROR_RXACT_COMMIT_NECESSARY: return "This warning level status indicates that the transaction state already exists for the registry sub-tree, but that a transaction commit was previously aborted. The commit has NOT been completed, but has not been rolled back either (so it may still be committed if desired).";
00437                 case Sylloge.WinAPI.ErrorCodes.ERROR_MEDIA_CHECK: return "{Media Changed} The media may have changed.";
00438                 case Sylloge.WinAPI.ErrorCodes.ERROR_GUID_SUBSTITUTION_MADE: return "{GUID Substitution} During the translation of a global identifier (GUID) to a Windows security ID (SID), no administratively-defined GUID prefix was found. A substitute prefix was used, which will not compromise system security. However, this may provide a more restrictive access than intended.";
00439                 case Sylloge.WinAPI.ErrorCodes.ERROR_STOPPED_ON_SYMLINK: return "The create operation stopped after reaching a symbolic link";
00440                 case Sylloge.WinAPI.ErrorCodes.ERROR_LONGJUMP: return "A long jump has been executed.";
00441                 case Sylloge.WinAPI.ErrorCodes.ERROR_PLUGPLAY_QUERY_VETOED: return "The Plug and Play query operation was not successful.";
00442                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNWIND_CONSOLIDATE: return "A frame consolidation has been executed.";
00443                 case Sylloge.WinAPI.ErrorCodes.ERROR_REGISTRY_HIVE_RECOVERED: return "{Registry Hive Recovered} Registry hive (file): %hs was corrupted and it has been recovered. Some data might have been lost.";
00444                 case Sylloge.WinAPI.ErrorCodes.ERROR_DLL_MIGHT_BE_INSECURE: return "The application is attempting to run executable code from the module %hs. This may be insecure. An alternative, %hs, is available. Should the application use the secure module %hs?";
00445                 case Sylloge.WinAPI.ErrorCodes.ERROR_DLL_MIGHT_BE_INCOMPATIBLE: return "The application is loading executable code from the module %hs. This is secure, but may be incompatible with previous releases of the operating system. An alternative, %hs, is available. Should the application use the secure module %hs?";
00446                 case Sylloge.WinAPI.ErrorCodes.ERROR_DBG_EXCEPTION_NOT_HANDLED: return "Debugger did not handle the exception.";
00447                 case Sylloge.WinAPI.ErrorCodes.ERROR_DBG_REPLY_LATER: return "Debugger will reply later.";
00448                 case Sylloge.WinAPI.ErrorCodes.ERROR_DBG_UNABLE_TO_PROVIDE_HANDLE: return "Debugger cannot provide handle.";
00449                 case Sylloge.WinAPI.ErrorCodes.ERROR_DBG_TERMINATE_THREAD: return "Debugger terminated thread.";
00450                 case Sylloge.WinAPI.ErrorCodes.ERROR_DBG_TERMINATE_PROCESS: return "Debugger terminated process.";
00451                 case Sylloge.WinAPI.ErrorCodes.ERROR_DBG_CONTROL_C: return "Debugger got control C.";
00452                 case Sylloge.WinAPI.ErrorCodes.ERROR_DBG_PRINTEXCEPTION_C: return "Debugger printed exception on control C.";
00453                 case Sylloge.WinAPI.ErrorCodes.ERROR_DBG_RIPEXCEPTION: return "Debugger received RIP exception.";
00454                 case Sylloge.WinAPI.ErrorCodes.ERROR_DBG_CONTROL_BREAK: return "Debugger received control break.";
00455                 case Sylloge.WinAPI.ErrorCodes.ERROR_DBG_COMMAND_EXCEPTION: return "Debugger command communication exception.";
00456                 case Sylloge.WinAPI.ErrorCodes.ERROR_OBJECT_NAME_EXISTS: return "{Object Exists} An attempt was made to create an object and the object name already existed.";
00457                 case Sylloge.WinAPI.ErrorCodes.ERROR_THREAD_WAS_SUSPENDED: return "{Thread Suspended} A thread termination occurred while the thread was suspended. The thread was resumed, and termination proceeded.";
00458                 case Sylloge.WinAPI.ErrorCodes.ERROR_IMAGE_NOT_AT_BASE: return "{Image Relocated} An image file could not be mapped at the address specified in the image file. Local fixups must be performed on this image.";
00459                 case Sylloge.WinAPI.ErrorCodes.ERROR_RXACT_STATE_CREATED: return "This informational level status indicates that a specified registry sub-tree transaction state did not yet exist and had to be created.";
00460                 case Sylloge.WinAPI.ErrorCodes.ERROR_SEGMENT_NOTIFICATION: return "{Segment Load} A virtual DOS machine (VDM) is loading, unloading, or moving an MS-DOS or Win16 program segment image. An exception is raised so a debugger can load, unload or track symbols and breakpoints within these 16-bit segments.";
00461                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_CURRENT_DIRECTORY: return "{Invalid Current Directory} The process cannot switch to the startup current directory %hs. Select OK to set current directory to %hs, or select CANCEL to exit.";
00462                 case Sylloge.WinAPI.ErrorCodes.ERROR_FT_READ_RECOVERY_FROM_BACKUP: return "{Redundant Read} To satisfy a read request, the NT fault-tolerant file system successfully read the requested data from a redundant copy. This was done because the file system encountered a failure on a member of the fault-tolerant volume, but was unable to reassign the failing area of the device.";
00463                 case Sylloge.WinAPI.ErrorCodes.ERROR_FT_WRITE_RECOVERY: return "{Redundant Write} To satisfy a write request, the NT fault-tolerant file system successfully wrote a redundant copy of the information. This was done because the file system encountered a failure on a member of the fault-tolerant volume, but was not able to reassign the failing area of the device.";
00464                 case Sylloge.WinAPI.ErrorCodes.ERROR_IMAGE_MACHINE_TYPE_MISMATCH: return "{Machine Type Mismatch} The image file %hs is valid, but is for a machine type other than the current machine. Select OK to continue, or CANCEL to fail the DLL load.";
00465                 case Sylloge.WinAPI.ErrorCodes.ERROR_RECEIVE_PARTIAL: return "{Partial Data Received} The network transport returned partial data to its client. The remaining data will be sent later.";
00466                 case Sylloge.WinAPI.ErrorCodes.ERROR_RECEIVE_EXPEDITED: return "{Expedited Data Received} The network transport returned data to its client that was marked as expedited by the remote system.";
00467                 case Sylloge.WinAPI.ErrorCodes.ERROR_RECEIVE_PARTIAL_EXPEDITED: return "{Partial Expedited Data Received} 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.";
00468                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVENT_DONE: return "{TDI Event Done} The TDI indication has completed successfully.";
00469                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVENT_PENDING: return "{TDI Event Pending} The TDI indication has entered the pending state.";
00470                 case Sylloge.WinAPI.ErrorCodes.ERROR_CHECKING_FILE_SYSTEM: return "Checking file system on %wZ";
00471                 case Sylloge.WinAPI.ErrorCodes.ERROR_FATAL_APP_EXIT: return "{Fatal Application Exit} %hs";
00472                 case Sylloge.WinAPI.ErrorCodes.ERROR_PREDEFINED_HANDLE: return "The specified registry key is referenced by a predefined handle.";
00473                 case Sylloge.WinAPI.ErrorCodes.ERROR_WAS_UNLOCKED: return "{Page Unlocked} The page protection of a locked page was changed to 'No Access' and the page was unlocked from memory and from the process.";
00474                 case Sylloge.WinAPI.ErrorCodes.ERROR_SERVICE_NOTIFICATION: return "%hs";
00475                 case Sylloge.WinAPI.ErrorCodes.ERROR_WAS_LOCKED: return "{Page Locked} One of the pages to lock was already locked.";
00476                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_HARD_ERROR: return "Application popup: {0} : {1}";
00477                 case Sylloge.WinAPI.ErrorCodes.ERROR_ALREADY_WIN32: return "ERROR_ALREADY_WIN32";
00478                 case Sylloge.WinAPI.ErrorCodes.ERROR_IMAGE_MACHINE_TYPE_MISMATCH_EXE: return "{Machine Type Mismatch} The image file %hs is valid, but is for a machine type other than the current machine.";
00479                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_YIELD_PERFORMED: return "A yield execution was performed and no thread was available to run.";
00480                 case Sylloge.WinAPI.ErrorCodes.ERROR_TIMER_RESUME_IGNORED: return "The resumable flag to a timer API was ignored.";
00481                 case Sylloge.WinAPI.ErrorCodes.ERROR_ARBITRATION_UNHANDLED: return "The arbiter has deferred arbitration of these resources to its parent";
00482                 case Sylloge.WinAPI.ErrorCodes.ERROR_CARDBUS_NOT_SUPPORTED: return "The inserted CardBus device cannot be started because of a configuration error on \"%hs\".";
00483                 case Sylloge.WinAPI.ErrorCodes.ERROR_MP_PROCESSOR_MISMATCH: return "The CPUs in this multiprocessor system are not all the same revision level. To use all processors the operating system restricts itself to the features of the least capable processor in the system. Should problems occur with this system, contact the CPU manufacturer to see if this mix of processors is supported.";
00484                 case Sylloge.WinAPI.ErrorCodes.ERROR_HIBERNATED: return "The system was put into hibernation.";
00485                 case Sylloge.WinAPI.ErrorCodes.ERROR_RESUME_HIBERNATION: return "The system was resumed from hibernation.";
00486                 case Sylloge.WinAPI.ErrorCodes.ERROR_FIRMWARE_UPDATED: return "Windows has detected that the system firmware (BIOS) was updated [previous firmware date ";
00487                 case Sylloge.WinAPI.ErrorCodes.ERROR_DRIVERS_LEAKING_LOCKED_PAGES: return "A device driver is leaking locked I/O pages causing system degradation. The system has automatically enabled tracking code in order to try and catch the culprit.";
00488                 case Sylloge.WinAPI.ErrorCodes.ERROR_WAKE_SYSTEM: return "The system has awoken";
00489                 case Sylloge.WinAPI.ErrorCodes.ERROR_WAIT_1: return "ERROR_WAIT_1";
00490                 case Sylloge.WinAPI.ErrorCodes.ERROR_WAIT_2: return "ERROR_WAIT_2";
00491                 case Sylloge.WinAPI.ErrorCodes.ERROR_WAIT_3: return "ERROR_WAIT_3";
00492                 case Sylloge.WinAPI.ErrorCodes.ERROR_WAIT_63: return "ERROR_WAIT_63";
00493                 case Sylloge.WinAPI.ErrorCodes.ERROR_ABANDONED_WAIT_0: return "ERROR_ABANDONED_WAIT_0";
00494                 case Sylloge.WinAPI.ErrorCodes.ERROR_ABANDONED_WAIT_63: return "ERROR_ABANDONED_WAIT_63";
00495                 case Sylloge.WinAPI.ErrorCodes.ERROR_USER_APC: return "ERROR_USER_APC";
00496                 case Sylloge.WinAPI.ErrorCodes.ERROR_KERNEL_APC: return "ERROR_KERNEL_APC";
00497                 case Sylloge.WinAPI.ErrorCodes.ERROR_ALERTED: return "ERROR_ALERTED";
00498                 case Sylloge.WinAPI.ErrorCodes.ERROR_ELEVATION_REQUIRED: return "The requested operation requires elevation.";
00499                 case Sylloge.WinAPI.ErrorCodes.ERROR_REPARSE: return "A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link.";
00500                 case Sylloge.WinAPI.ErrorCodes.ERROR_OPLOCK_BREAK_IN_PROGRESS: return "An open/create operation completed while an oplock break is underway.";
00501                 case Sylloge.WinAPI.ErrorCodes.ERROR_VOLUME_MOUNTED: return "A new volume has been mounted by a file system.";
00502                 case Sylloge.WinAPI.ErrorCodes.ERROR_RXACT_COMMITTED: return "This success level status indicates that the transaction state already exists for the registry sub-tree, but that a transaction commit was previously aborted. The commit has now been completed.";
00503                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOTIFY_CLEANUP: return "This indicates that a notify change request has been completed due to closing the handle which made the notify change request.";
00504                 case Sylloge.WinAPI.ErrorCodes.ERROR_PRIMARY_TRANSPORT_CONNECT_FAILED: return "{Connect Failure on Primary Transport} An attempt was made to connect to the remote server %hs on the primary transport, but the connection failed. The computer WAS able to connect on a secondary transport.";
00505                 case Sylloge.WinAPI.ErrorCodes.ERROR_PAGE_FAULT_TRANSITION: return "Page fault was a transition fault.";
00506                 case Sylloge.WinAPI.ErrorCodes.ERROR_PAGE_FAULT_DEMAND_ZERO: return "Page fault was a demand zero fault.";
00507                 case Sylloge.WinAPI.ErrorCodes.ERROR_PAGE_FAULT_COPY_ON_WRITE: return "Page fault was a demand zero fault.";
00508                 case Sylloge.WinAPI.ErrorCodes.ERROR_PAGE_FAULT_GUARD_PAGE: return "Page fault was a demand zero fault.";
00509                 case Sylloge.WinAPI.ErrorCodes.ERROR_PAGE_FAULT_PAGING_FILE: return "Page fault was satisfied by reading from a secondary storage device.";
00510                 case Sylloge.WinAPI.ErrorCodes.ERROR_CACHE_PAGE_LOCKED: return "Cached page was locked during operation.";
00511                 case Sylloge.WinAPI.ErrorCodes.ERROR_CRASH_DUMP: return "Crash dump exists in paging file.";
00512                 case Sylloge.WinAPI.ErrorCodes.ERROR_BUFFER_ALL_ZEROS: return "Specified buffer contains all zeros.";
00513                 case Sylloge.WinAPI.ErrorCodes.ERROR_REPARSE_OBJECT: return "A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link.";
00514                 case Sylloge.WinAPI.ErrorCodes.ERROR_RESOURCE_REQUIREMENTS_CHANGED: return "The device has succeeded a query-stop and its resource requirements have changed.";
00515                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSLATION_COMPLETE: return "The translator has translated these resources into the global space and no further translations should be performed.";
00516                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOTHING_TO_TERMINATE: return "A process being terminated has no threads to terminate.";
00517                 case Sylloge.WinAPI.ErrorCodes.ERROR_PROCESS_NOT_IN_JOB: return "The specified process is not part of a job.";
00518                 case Sylloge.WinAPI.ErrorCodes.ERROR_PROCESS_IN_JOB: return "The specified process is part of a job.";
00519                 case Sylloge.WinAPI.ErrorCodes.ERROR_VOLSNAP_HIBERNATE_READY: return "{Volume Shadow Copy Service} The system is now ready for hibernation.";
00520                 case Sylloge.WinAPI.ErrorCodes.ERROR_FSFILTER_OP_COMPLETED_SUCCESSFULLY: return "A file system or file system filter driver has successfully completed an FsFilter operation.";
00521                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERRUPT_VECTOR_ALREADY_CONNECTED: return "The specified interrupt vector was already connected.";
00522                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERRUPT_STILL_CONNECTED: return "The specified interrupt vector is still connected.";
00523                 case Sylloge.WinAPI.ErrorCodes.ERROR_WAIT_FOR_OPLOCK: return "An operation is blocked waiting for an oplock.";
00524                 case Sylloge.WinAPI.ErrorCodes.ERROR_DBG_EXCEPTION_HANDLED: return "Debugger handled exception";
00525                 case Sylloge.WinAPI.ErrorCodes.ERROR_DBG_CONTINUE: return "Debugger continued";
00526                 case Sylloge.WinAPI.ErrorCodes.ERROR_CALLBACK_POP_STACK: return "An exception occurred in a user mode callback and the kernel callback frame should be removed.";
00527                 case Sylloge.WinAPI.ErrorCodes.ERROR_COMPRESSION_DISABLED: return "Compression is disabled for this volume.";
00528                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANTFETCHBACKWARDS: return "The data provider cannot fetch backwards through a result set.";
00529                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANTSCROLLBACKWARDS: return "The data provider cannot scroll backwards through a result set.";
00530                 case Sylloge.WinAPI.ErrorCodes.ERROR_ROWSNOTRELEASED: return "The data provider requires that previously fetched data is released before asking for more data.";
00531                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_ACCESSOR_FLAGS: return "The data provider was not able to interpret the flags set for a column binding in an accessor.";
00532                 case Sylloge.WinAPI.ErrorCodes.ERROR_ERRORS_ENCOUNTERED: return "One or more errors occurred while processing the request.";
00533                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_CAPABLE: return "The implementation is not capable of performing the request.";
00534                 case Sylloge.WinAPI.ErrorCodes.ERROR_REQUEST_OUT_OF_SEQUENCE: return "The client of a component requested an operation which is not valid given the state of the component instance.";
00535                 case Sylloge.WinAPI.ErrorCodes.ERROR_VERSION_PARSE_ERROR: return "A version number could not be parsed.";
00536                 case Sylloge.WinAPI.ErrorCodes.ERROR_BADSTARTPOSITION: return "The iterator's start position is invalid.";
00537                 case Sylloge.WinAPI.ErrorCodes.ERROR_MEMORY_HARDWARE: return "The hardware has reported an uncorrectable memory error.";
00538                 case Sylloge.WinAPI.ErrorCodes.ERROR_DISK_REPAIR_DISABLED: return "The attempted operation required self healing to be enabled.";
00539                 case Sylloge.WinAPI.ErrorCodes.ERROR_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE: return "The Desktop heap encountered an error while allocating session memory. There is more information in the system event log.";
00540                 case Sylloge.WinAPI.ErrorCodes.ERROR_SYSTEM_POWERSTATE_TRANSITION: return "The system power state is transitioning from {1} to {2}.";
00541                 case Sylloge.WinAPI.ErrorCodes.ERROR_SYSTEM_POWERSTATE_COMPLEX_TRANSITION: return "The system power state is transitioning from {1} to {2} but could enter {3}.";
00542                 case Sylloge.WinAPI.ErrorCodes.ERROR_MCA_EXCEPTION: return "A thread is getting dispatched with MCA EXCEPTION because of MCA.";
00543                 case Sylloge.WinAPI.ErrorCodes.ERROR_ACCESS_AUDIT_BY_POLICY: return "Access to {0} is monitored by policy rule {1}.";
00544                 case Sylloge.WinAPI.ErrorCodes.ERROR_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY: return "Access to {0} has been restricted by your Administrator by policy rule {1}.";
00545                 case Sylloge.WinAPI.ErrorCodes.ERROR_ABANDON_HIBERFILE: return "A valid hibernation file has been invalidated and should be abandoned.";
00546                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED: return "{Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error may be caused by network connectivity issues. Please try to save this file elsewhere.";
00547                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR: return "{Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error was returned by the server on which the file exists. Please try to save this file elsewhere.";
00548                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR: return "{Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error may be caused if the device has been removed or the media is write-protected.";
00549                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_MCFG_TABLE: return "The resources required for this device conflict with the MCFG table.";
00550                 case Sylloge.WinAPI.ErrorCodes.ERROR_OPLOCK_SWITCHED_TO_NEW_HANDLE: return "The oplock that was associated with this handle is now associated with a different handle.";
00551                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANNOT_GRANT_REQUESTED_OPLOCK: return "An oplock of the requested level cannot be granted. An oplock of a lower level may be available.";
00552                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANNOT_BREAK_OPLOCK: return "The operation did not complete successfully because it would cause an oplock to be broken. The caller has requested that existing oplocks not be broken.";
00553                 case Sylloge.WinAPI.ErrorCodes.ERROR_OPLOCK_HANDLE_CLOSED: return "The handle with which this oplock was associated has been closed. The oplock is now broken.";
00554                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_ACE_CONDITION: return "The specified access control entry (ACE) does not contain a condition.";
00555                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_ACE_CONDITION: return "The specified access control entry (ACE) contains an invalid condition.";
00556                 case Sylloge.WinAPI.ErrorCodes.ERROR_EA_ACCESS_DENIED: return "Access to the extended attribute was denied.";
00557                 case Sylloge.WinAPI.ErrorCodes.ERROR_OPERATION_ABORTED: return "The I/O operation has been aborted because of either a thread exit or an application request.";
00558                 case Sylloge.WinAPI.ErrorCodes.ERROR_IO_INCOMPLETE: return "Overlapped I/O event is not in a signaled state.";
00559                 case Sylloge.WinAPI.ErrorCodes.ERROR_IO_PENDING: return "Overlapped I/O operation is in progress.";
00560                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOACCESS: return "Invalid access to memory location.";
00561                 case Sylloge.WinAPI.ErrorCodes.ERROR_SWAPERROR: return "Error performing inpage operation.";
00562                 case Sylloge.WinAPI.ErrorCodes.ERROR_STACK_OVERFLOW: return "Recursion too deep; the stack overflowed.";
00563                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_MESSAGE: return "The window cannot act on the sent message.";
00564                 case Sylloge.WinAPI.ErrorCodes.ERROR_CAN_NOT_COMPLETE: return "Cannot complete this function.";
00565                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_FLAGS: return "Invalid flags.";
00566                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNRECOGNIZED_VOLUME: return "The volume does not contain a recognized file system. Please make sure that all required file system drivers are loaded and that the volume is not corrupted.";
00567                 case Sylloge.WinAPI.ErrorCodes.ERROR_FILE_INVALID: return "The volume for a file has been externally altered so that the opened file is no longer valid.";
00568                 case Sylloge.WinAPI.ErrorCodes.ERROR_FULLSCREEN_MODE: return "The requested operation cannot be performed in full-screen mode.";
00569                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_TOKEN: return "An attempt was made to reference a token that does not exist.";
00570                 case Sylloge.WinAPI.ErrorCodes.ERROR_BADDB: return "The configuration registry database is corrupt.";
00571                 case Sylloge.WinAPI.ErrorCodes.ERROR_BADKEY: return "The configuration registry key is invalid.";
00572                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANTOPEN: return "The configuration registry key could not be opened.";
00573                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANTREAD: return "The configuration registry key could not be read.";
00574                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANTWRITE: return "The configuration registry key could not be written.";
00575                 case Sylloge.WinAPI.ErrorCodes.ERROR_REGISTRY_RECOVERED: return "One of the files in the registry database had to be recovered by use of a log or alternate copy. The recovery was successful.";
00576                 case Sylloge.WinAPI.ErrorCodes.ERROR_REGISTRY_CORRUPT: return "The registry is corrupted. The structure of one of the files containing registry data is corrupted, or the system's memory image of the file is corrupted, or the file could not be recovered because the alternate copy or log was absent or corrupted.";
00577                 case Sylloge.WinAPI.ErrorCodes.ERROR_REGISTRY_IO_FAILED: return "An I/O operation initiated by the registry failed unrecoverably. The registry could not read in, or write out, or flush, one of the files that contain the system's image of the registry.";
00578                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_REGISTRY_FILE: return "The system has attempted to load or restore a file into the registry, but the specified file is not in a registry file format.";
00579                 case Sylloge.WinAPI.ErrorCodes.ERROR_KEY_DELETED: return "Illegal operation attempted on a registry key that has been marked for deletion.";
00580                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_LOG_SPACE: return "System could not allocate the required space in a registry log.";
00581                 case Sylloge.WinAPI.ErrorCodes.ERROR_KEY_HAS_CHILDREN: return "Cannot create a symbolic link in a registry key that already has subkeys or values.";
00582                 case Sylloge.WinAPI.ErrorCodes.ERROR_CHILD_MUST_BE_VOLATILE: return "Cannot create a stable subkey under a volatile parent key.";
00583                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOTIFY_ENUM_DIR: return "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.";
00584                 case Sylloge.WinAPI.ErrorCodes.ERROR_DEPENDENT_SERVICES_RUNNING: return "A stop control has been sent to a service that other running services are dependent on.";
00585                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_SERVICE_CONTROL: return "The requested control is not valid for this service.";
00586                 case Sylloge.WinAPI.ErrorCodes.ERROR_SERVICE_REQUEST_TIMEOUT: return "The service did not respond to the start or control request in a timely fashion.";
00587                 case Sylloge.WinAPI.ErrorCodes.ERROR_SERVICE_NO_THREAD: return "A thread could not be created for the service.";
00588                 case Sylloge.WinAPI.ErrorCodes.ERROR_SERVICE_DATABASE_LOCKED: return "The service database is locked.";
00589                 case Sylloge.WinAPI.ErrorCodes.ERROR_SERVICE_ALREADY_RUNNING: return "An instance of the service is already running.";
00590                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_SERVICE_ACCOUNT: return "The account name is invalid or does not exist, or the password is invalid for the account name specified.";
00591                 case Sylloge.WinAPI.ErrorCodes.ERROR_SERVICE_DISABLED: return "The service cannot be started, either because it is disabled or because it has no enabled devices associated with it.";
00592                 case Sylloge.WinAPI.ErrorCodes.ERROR_CIRCULAR_DEPENDENCY: return "Circular service dependency was specified.";
00593                 case Sylloge.WinAPI.ErrorCodes.ERROR_SERVICE_DOES_NOT_EXIST: return "The specified service does not exist as an installed service.";
00594                 case Sylloge.WinAPI.ErrorCodes.ERROR_SERVICE_CANNOT_ACCEPT_CTRL: return "The service cannot accept control messages at this time.";
00595                 case Sylloge.WinAPI.ErrorCodes.ERROR_SERVICE_NOT_ACTIVE: return "The service has not been started.";
00596                 case Sylloge.WinAPI.ErrorCodes.ERROR_FAILED_SERVICE_CONTROLLER_CONNECT: return "The service process could not connect to the service controller.";
00597                 case Sylloge.WinAPI.ErrorCodes.ERROR_EXCEPTION_IN_SERVICE: return "An exception occurred in the service when handling the control request.";
00598                 case Sylloge.WinAPI.ErrorCodes.ERROR_DATABASE_DOES_NOT_EXIST: return "The database specified does not exist.";
00599                 case Sylloge.WinAPI.ErrorCodes.ERROR_SERVICE_SPECIFIC_ERROR: return "The service has returned a service-specific error code.";
00600                 case Sylloge.WinAPI.ErrorCodes.ERROR_PROCESS_ABORTED: return "The process terminated unexpectedly.";
00601                 case Sylloge.WinAPI.ErrorCodes.ERROR_SERVICE_DEPENDENCY_FAIL: return "The dependency service or group failed to start.";
00602                 case Sylloge.WinAPI.ErrorCodes.ERROR_SERVICE_LOGON_FAILED: return "The service did not start due to a logon failure.";
00603                 case Sylloge.WinAPI.ErrorCodes.ERROR_SERVICE_START_HANG: return "After starting, the service hung in a start-pending state.";
00604                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_SERVICE_LOCK: return "The specified service database lock is invalid.";
00605                 case Sylloge.WinAPI.ErrorCodes.ERROR_SERVICE_MARKED_FOR_DELETE: return "The specified service has been marked for deletion.";
00606                 case Sylloge.WinAPI.ErrorCodes.ERROR_SERVICE_EXISTS: return "The specified service already exists.";
00607                 case Sylloge.WinAPI.ErrorCodes.ERROR_ALREADY_RUNNING_LKG: return "The system is currently running with the last-known-good configuration.";
00608                 case Sylloge.WinAPI.ErrorCodes.ERROR_SERVICE_DEPENDENCY_DELETED: return "The dependency service does not exist or has been marked for deletion.";
00609                 case Sylloge.WinAPI.ErrorCodes.ERROR_BOOT_ALREADY_ACCEPTED: return "The current boot has already been accepted for use as the last-known-good control set.";
00610                 case Sylloge.WinAPI.ErrorCodes.ERROR_SERVICE_NEVER_STARTED: return "No attempts to start the service have been made since the last boot.";
00611                 case Sylloge.WinAPI.ErrorCodes.ERROR_DUPLICATE_SERVICE_NAME: return "The name is already in use as either a service name or a service display name.";
00612                 case Sylloge.WinAPI.ErrorCodes.ERROR_DIFFERENT_SERVICE_ACCOUNT: return "The account specified for this service is different from the account specified for other services running in the same process.";
00613                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANNOT_DETECT_DRIVER_FAILURE: return "Failure actions can only be set for WinAPI services, not for drivers.";
00614                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANNOT_DETECT_PROCESS_ABORT: return "This service runs in the same process as the service control manager. Therefore, the service control manager cannot take action if this service's process terminates unexpectedly.";
00615                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_RECOVERY_PROGRAM: return "No recovery program has been configured for this service.";
00616                 case Sylloge.WinAPI.ErrorCodes.ERROR_SERVICE_NOT_IN_EXE: return "The executable program that this service is configured to run in does not implement the service.";
00617                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_SAFEBOOT_SERVICE: return "This service cannot be started in Safe Mode";
00618                 case Sylloge.WinAPI.ErrorCodes.ERROR_END_OF_MEDIA: return "The physical end of the tape has been reached.";
00619                 case Sylloge.WinAPI.ErrorCodes.ERROR_FILEMARK_DETECTED: return "A tape access reached a filemark.";
00620                 case Sylloge.WinAPI.ErrorCodes.ERROR_BEGINNING_OF_MEDIA: return "The beginning of the tape or a partition was encountered.";
00621                 case Sylloge.WinAPI.ErrorCodes.ERROR_SETMARK_DETECTED: return "A tape access reached the end of a set of files.";
00622                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_DATA_DETECTED: return "No more data is on the tape.";
00623                 case Sylloge.WinAPI.ErrorCodes.ERROR_PARTITION_FAILURE: return "Tape could not be partitioned.";
00624                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_BLOCK_LENGTH: return "When accessing a new tape of a multivolume partition, the current block size is incorrect.";
00625                 case Sylloge.WinAPI.ErrorCodes.ERROR_DEVICE_NOT_PARTITIONED: return "Tape partition information could not be found when loading a tape.";
00626                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNABLE_TO_LOCK_MEDIA: return "Unable to lock the media eject mechanism.";
00627                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNABLE_TO_UNLOAD_MEDIA: return "Unable to unload the media.";
00628                 case Sylloge.WinAPI.ErrorCodes.ERROR_MEDIA_CHANGED: return "The media in the drive may have changed.";
00629                 case Sylloge.WinAPI.ErrorCodes.ERROR_BUS_RESET: return "The I/O bus was reset.";
00630                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_MEDIA_IN_DRIVE: return "No media in drive.";
00631                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_UNICODE_TRANSLATION: return "No mapping for the Unicode character exists in the target multi-byte code page.";
00632                 case Sylloge.WinAPI.ErrorCodes.ERROR_DLL_INIT_FAILED: return "A dynamic link library (DLL) initialization routine failed.";
00633                 case Sylloge.WinAPI.ErrorCodes.ERROR_SHUTDOWN_IN_PROGRESS: return "A system shutdown is in progress.";
00634                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_SHUTDOWN_IN_PROGRESS: return "Unable to abort the system shutdown because no shutdown was in progress.";
00635                 case Sylloge.WinAPI.ErrorCodes.ERROR_IO_DEVICE: return "The request could not be performed because of an I/O device error.";
00636                 case Sylloge.WinAPI.ErrorCodes.ERROR_SERIAL_NO_DEVICE: return "No serial device was successfully initialized. The serial driver will unload.";
00637                 case Sylloge.WinAPI.ErrorCodes.ERROR_IRQ_BUSY: return "Unable to open a device that was sharing an interrupt request (IRQ) with other devices. At least one other device that uses that IRQ was already opened.";
00638                 case Sylloge.WinAPI.ErrorCodes.ERROR_MORE_WRITES: return "A serial I/O operation was completed by another write to the serial port. The IOCTL_SERIAL_XOFF_COUNTER reached zero.)";
00639                 case Sylloge.WinAPI.ErrorCodes.ERROR_COUNTER_TIMEOUT: return "A serial I/O operation completed because the timeout period expired. The IOCTL_SERIAL_XOFF_COUNTER did not reach zero.)";
00640                 case Sylloge.WinAPI.ErrorCodes.ERROR_FLOPPY_ID_MARK_NOT_FOUND: return "No ID address mark was found on the floppy disk.";
00641                 case Sylloge.WinAPI.ErrorCodes.ERROR_FLOPPY_WRONG_CYLINDER: return "Mismatch between the floppy disk sector ID field and the floppy disk controller track address.";
00642                 case Sylloge.WinAPI.ErrorCodes.ERROR_FLOPPY_UNKNOWN_ERROR: return "The floppy disk controller reported an error that is not recognized by the floppy disk driver.";
00643                 case Sylloge.WinAPI.ErrorCodes.ERROR_FLOPPY_BAD_REGISTERS: return "The floppy disk controller returned inconsistent results in its registers.";
00644                 case Sylloge.WinAPI.ErrorCodes.ERROR_DISK_RECALIBRATE_FAILED: return "While accessing the hard disk, a recalibrate operation failed, even after retries.";
00645                 case Sylloge.WinAPI.ErrorCodes.ERROR_DISK_OPERATION_FAILED: return "While accessing the hard disk, a disk operation failed even after retries.";
00646                 case Sylloge.WinAPI.ErrorCodes.ERROR_DISK_RESET_FAILED: return "While accessing the hard disk, a disk controller reset was needed, but even that failed.";
00647                 case Sylloge.WinAPI.ErrorCodes.ERROR_EOM_OVERFLOW: return "Physical end of tape encountered.";
00648                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_ENOUGH_SERVER_MEMORY: return "Not enough server storage is available to process this command.";
00649                 case Sylloge.WinAPI.ErrorCodes.ERROR_POSSIBLE_DEADLOCK: return "A potential deadlock condition has been detected.";
00650                 case Sylloge.WinAPI.ErrorCodes.ERROR_MAPPED_ALIGNMENT: return "The base address or the file offset specified does not have the proper alignment.";
00651                 case Sylloge.WinAPI.ErrorCodes.ERROR_SET_POWER_STATE_VETOED: return "An attempt to change the system power state was vetoed by another application or driver.";
00652                 case Sylloge.WinAPI.ErrorCodes.ERROR_SET_POWER_STATE_FAILED: return "The system BIOS failed an attempt to change the system power state.";
00653                 case Sylloge.WinAPI.ErrorCodes.ERROR_TOO_MANY_LINKS: return "An attempt was made to create more links on a file than the file system supports.";
00654                 case Sylloge.WinAPI.ErrorCodes.ERROR_OLD_WIN_VERSION: return "The specified program requires a newer version of Windows.";
00655                 case Sylloge.WinAPI.ErrorCodes.ERROR_APP_WRONG_OS: return "The specified program is not a Windows or MS-DOS program.";
00656                 case Sylloge.WinAPI.ErrorCodes.ERROR_SINGLE_INSTANCE_APP: return "Cannot start more than one instance of the specified program.";
00657                 case Sylloge.WinAPI.ErrorCodes.ERROR_RMODE_APP: return "The specified program was written for an earlier version of Windows.";
00658                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_DLL: return "One of the library files needed to run this application is damaged.";
00659                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_ASSOCIATION: return "No application is associated with the specified file for this operation.";
00660                 case Sylloge.WinAPI.ErrorCodes.ERROR_DDE_FAIL: return "An error occurred in sending the command to the application.";
00661                 case Sylloge.WinAPI.ErrorCodes.ERROR_DLL_NOT_FOUND: return "One of the library files needed to run this application cannot be found.";
00662                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_MORE_USER_HANDLES: return "The current process has used all of its system allowance of handles for Window Manager objects.";
00663                 case Sylloge.WinAPI.ErrorCodes.ERROR_MESSAGE_SYNC_ONLY: return "The message can be used only with synchronous operations.";
00664                 case Sylloge.WinAPI.ErrorCodes.ERROR_SOURCE_ELEMENT_EMPTY: return "The indicated source element has no media.";
00665                 case Sylloge.WinAPI.ErrorCodes.ERROR_DESTINATION_ELEMENT_FULL: return "The indicated destination element already contains media.";
00666                 case Sylloge.WinAPI.ErrorCodes.ERROR_ILLEGAL_ELEMENT_ADDRESS: return "The indicated element does not exist.";
00667                 case Sylloge.WinAPI.ErrorCodes.ERROR_MAGAZINE_NOT_PRESENT: return "The indicated element is part of a magazine that is not present.";
00668                 case Sylloge.WinAPI.ErrorCodes.ERROR_DEVICE_REINITIALIZATION_NEEDED: return "The indicated device requires reinitialization due to hardware errors.";
00669                 case Sylloge.WinAPI.ErrorCodes.ERROR_DEVICE_REQUIRES_CLEANING: return "The device has indicated that cleaning is required before further operations are attempted.";
00670                 case Sylloge.WinAPI.ErrorCodes.ERROR_DEVICE_DOOR_OPEN: return "The device has indicated that its door is open.";
00671                 case Sylloge.WinAPI.ErrorCodes.ERROR_DEVICE_NOT_CONNECTED: return "The device is not connected.";
00672                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_FOUND: return "Element not found.";
00673                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_MATCH: return "There was no match for the specified key in the index.";
00674                 case Sylloge.WinAPI.ErrorCodes.ERROR_SET_NOT_FOUND: return "The property set specified does not exist on the object.";
00675                 case Sylloge.WinAPI.ErrorCodes.ERROR_POINT_NOT_FOUND: return "The point passed to GetMouseMovePoints is not in the buffer.";
00676                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_TRACKING_SERVICE: return "The tracking (workstation) service is not running.";
00677                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_VOLUME_ID: return "The Volume ID could not be found.";
00678                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNABLE_TO_REMOVE_REPLACED: return "Unable to remove the file to be replaced.";
00679                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNABLE_TO_MOVE_REPLACEMENT: return "Unable to move the replacement file to the file to be replaced. The file to be replaced has retained its original name.";
00680                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNABLE_TO_MOVE_REPLACEMENT_2: return "Unable to move the replacement file to the file to be replaced. The file to be replaced has been renamed using the backup name.";
00681                 case Sylloge.WinAPI.ErrorCodes.ERROR_JOURNAL_DELETE_IN_PROGRESS: return "The volume change journal is being deleted.";
00682                 case Sylloge.WinAPI.ErrorCodes.ERROR_JOURNAL_NOT_ACTIVE: return "The volume change journal is not active.";
00683                 case Sylloge.WinAPI.ErrorCodes.ERROR_POTENTIAL_FILE_FOUND: return "A file was found, but it may not be the correct file.";
00684                 case Sylloge.WinAPI.ErrorCodes.ERROR_JOURNAL_ENTRY_DELETED: return "The journal entry has been deleted from the journal.";
00685                 case Sylloge.WinAPI.ErrorCodes.ERROR_SHUTDOWN_IS_SCHEDULED: return "A system shutdown has already been scheduled.";
00686                 case Sylloge.WinAPI.ErrorCodes.ERROR_SHUTDOWN_USERS_LOGGED_ON: return "The system shutdown cannot be initiated because there are other users logged on to the computer.";
00687                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_DEVICE: return "The specified device name is invalid.";
00688                 case Sylloge.WinAPI.ErrorCodes.ERROR_CONNECTION_UNAVAIL: return "The device is not currently connected but it is a remembered connection.";
00689                 case Sylloge.WinAPI.ErrorCodes.ERROR_DEVICE_ALREADY_REMEMBERED: return "The local device name has a remembered connection to another network resource.";
00690                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_NET_OR_BAD_PATH: return "The network path was either typed incorrectly, does not exist, or the network provider is not currently available. Please try retyping the path or contact your network administrator.";
00691                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_PROVIDER: return "The specified network provider name is invalid.";
00692                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANNOT_OPEN_PROFILE: return "Unable to open the network connection profile.";
00693                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_PROFILE: return "The network connection profile is corrupted.";
00694                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_CONTAINER: return "Cannot enumerate a noncontainer.";
00695                 case Sylloge.WinAPI.ErrorCodes.ERROR_EXTENDED_ERROR: return "An extended error has occurred.";
00696                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_GROUPNAME: return "The format of the specified group name is invalid.";
00697                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_COMPUTERNAME: return "The format of the specified computer name is invalid.";
00698                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_EVENTNAME: return "The format of the specified event name is invalid.";
00699                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_DOMAINNAME: return "The format of the specified domain name is invalid.";
00700                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_SERVICENAME: return "The format of the specified service name is invalid.";
00701                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_NETNAME: return "The format of the specified network name is invalid.";
00702                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_SHARENAME: return "The format of the specified share name is invalid.";
00703                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_PASSWORDNAME: return "The format of the specified password is invalid.";
00704                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_MESSAGENAME: return "The format of the specified message name is invalid.";
00705                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_MESSAGEDEST: return "The format of the specified message destination is invalid.";
00706                 case Sylloge.WinAPI.ErrorCodes.ERROR_SESSION_CREDENTIAL_CONFLICT: return "Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed. Disconnect all previous connections to the server or shared resource and try again.";
00707                 case Sylloge.WinAPI.ErrorCodes.ERROR_REMOTE_SESSION_LIMIT_EXCEEDED: return "An attempt was made to establish a session to a network server, but there are already too many sessions established to that server.";
00708                 case Sylloge.WinAPI.ErrorCodes.ERROR_DUP_DOMAINNAME: return "The workgroup or domain name is already in use by another computer on the network.";
00709                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_NETWORK: return "The network is not present or not started.";
00710                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANCELLED: return "The operation was canceled by the user.";
00711                 case Sylloge.WinAPI.ErrorCodes.ERROR_USER_MAPPED_FILE: return "The requested operation cannot be performed on a file with a user-mapped section open.";
00712                 case Sylloge.WinAPI.ErrorCodes.ERROR_CONNECTION_REFUSED: return "The remote computer refused the network connection.";
00713                 case Sylloge.WinAPI.ErrorCodes.ERROR_GRACEFUL_DISCONNECT: return "The network connection was gracefully closed.";
00714                 case Sylloge.WinAPI.ErrorCodes.ERROR_ADDRESS_ALREADY_ASSOCIATED: return "The network transport endpoint already has an address associated with it.";
00715                 case Sylloge.WinAPI.ErrorCodes.ERROR_ADDRESS_NOT_ASSOCIATED: return "An address has not yet been associated with the network endpoint.";
00716                 case Sylloge.WinAPI.ErrorCodes.ERROR_CONNECTION_INVALID: return "An operation was attempted on a nonexistent network connection.";
00717                 case Sylloge.WinAPI.ErrorCodes.ERROR_CONNECTION_ACTIVE: return "An invalid operation was attempted on an active network connection.";
00718                 case Sylloge.WinAPI.ErrorCodes.ERROR_NETWORK_UNREACHABLE: return "The network location cannot be reached. For information about network troubleshooting, see Windows Help.";
00719                 case Sylloge.WinAPI.ErrorCodes.ERROR_HOST_UNREACHABLE: return "The network location cannot be reached. For information about network troubleshooting, see Windows Help.";
00720                 case Sylloge.WinAPI.ErrorCodes.ERROR_PROTOCOL_UNREACHABLE: return "The network location cannot be reached. For information about network troubleshooting, see Windows Help.";
00721                 case Sylloge.WinAPI.ErrorCodes.ERROR_PORT_UNREACHABLE: return "No service is operating at the destination network endpoint on the remote system.";
00722                 case Sylloge.WinAPI.ErrorCodes.ERROR_REQUEST_ABORTED: return "The request was aborted.";
00723                 case Sylloge.WinAPI.ErrorCodes.ERROR_CONNECTION_ABORTED: return "The network connection was aborted by the local system.";
00724                 case Sylloge.WinAPI.ErrorCodes.ERROR_RETRY: return "The operation could not be completed. A retry should be performed.";
00725                 case Sylloge.WinAPI.ErrorCodes.ERROR_CONNECTION_COUNT_LIMIT: return "A connection to the server could not be made because the limit on the number of concurrent connections for this account has been reached.";
00726                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOGIN_TIME_RESTRICTION: return "Attempting to log in during an unauthorized time of day for this account.";
00727                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOGIN_WKSTA_RESTRICTION: return "The account is not authorized to log in from this station.";
00728                 case Sylloge.WinAPI.ErrorCodes.ERROR_INCORRECT_ADDRESS: return "The network address could not be used for the operation requested.";
00729                 case Sylloge.WinAPI.ErrorCodes.ERROR_ALREADY_REGISTERED: return "The service is already registered.";
00730                 case Sylloge.WinAPI.ErrorCodes.ERROR_SERVICE_NOT_FOUND: return "The specified service does not exist.";
00731                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_AUTHENTICATED: return "The operation being requested was not performed because the user has not been authenticated.";
00732                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_LOGGED_ON: return "The operation being requested was not performed because the user has not logged on to the network. The specified service does not exist.";
00733                 case Sylloge.WinAPI.ErrorCodes.ERROR_CONTINUE: return "Continue with work in progress.";
00734                 case Sylloge.WinAPI.ErrorCodes.ERROR_ALREADY_INITIALIZED: return "An attempt was made to perform an initialization operation when initialization has already been completed.";
00735                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_MORE_DEVICES: return "No more local devices.";
00736                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_SUCH_SITE: return "The specified site does not exist.";
00737                 case Sylloge.WinAPI.ErrorCodes.ERROR_DOMAIN_CONTROLLER_EXISTS: return "A domain controller with the specified name already exists.";
00738                 case Sylloge.WinAPI.ErrorCodes.ERROR_ONLY_IF_CONNECTED: return "This operation is supported only when you are connected to the server.";
00739                 case Sylloge.WinAPI.ErrorCodes.ERROR_OVERRIDE_NOCHANGES: return "The group policy framework should call the extension even if there are no changes.";
00740                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_USER_PROFILE: return "The specified user does not have a valid profile.";
00741                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_SUPPORTED_ON_SBS: return "This operation is not supported on a computer running Windows Server 2003 for Small Business Server";
00742                 case Sylloge.WinAPI.ErrorCodes.ERROR_SERVER_SHUTDOWN_IN_PROGRESS: return "The server machine is shutting down.";
00743                 case Sylloge.WinAPI.ErrorCodes.ERROR_HOST_DOWN: return "The remote system is not available. For information about network troubleshooting, see Windows Help.";
00744                 case Sylloge.WinAPI.ErrorCodes.ERROR_NON_ACCOUNT_SID: return "The security identifier provided is not from an account domain.";
00745                 case Sylloge.WinAPI.ErrorCodes.ERROR_NON_DOMAIN_SID: return "The security identifier provided does not have a domain component.";
00746                 case Sylloge.WinAPI.ErrorCodes.ERROR_APPHELP_BLOCK: return "AppHelp dialog canceled thus preventing the application from starting.";
00747                 case Sylloge.WinAPI.ErrorCodes.ERROR_ACCESS_DISABLED_BY_POLICY: return "This program is blocked by group policy. For more information, contact your system administrator.";
00748                 case Sylloge.WinAPI.ErrorCodes.ERROR_REG_NAT_CONSUMPTION: return "A program attempt to use an invalid register value. Normally caused by an uninitialized register. This error is Itanium specific.";
00749                 case Sylloge.WinAPI.ErrorCodes.ERROR_CSCSHARE_OFFLINE: return "The share is currently offline or does not exist.";
00750                 case Sylloge.WinAPI.ErrorCodes.ERROR_PKINIT_FAILURE: return "The Kerberos protocol encountered an error while validating the KDC certificate during smartcard logon. There is more information in the system event log.";
00751                 case Sylloge.WinAPI.ErrorCodes.ERROR_SMARTCARD_SUBSYSTEM_FAILURE: return "The Kerberos protocol encountered an error while attempting to utilize the smartcard subsystem.";
00752                 case Sylloge.WinAPI.ErrorCodes.ERROR_DOWNGRADE_DETECTED: return "The system detected a possible attempt to compromise security. Please ensure that you can contact the server that authenticated you.";
00753                 case Sylloge.WinAPI.ErrorCodes.ERROR_MACHINE_LOCKED: return "The machine is locked and cannot be shut down without the force option.";
00754                 case Sylloge.WinAPI.ErrorCodes.ERROR_CALLBACK_SUPPLIED_INVALID_DATA: return "An application-defined callback gave invalid data when called.";
00755                 case Sylloge.WinAPI.ErrorCodes.ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED: return "The group policy framework should call the extension in the synchronous foreground policy refresh.";
00756                 case Sylloge.WinAPI.ErrorCodes.ERROR_DRIVER_BLOCKED: return "This driver has been blocked from loading";
00757                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_IMPORT_OF_NON_DLL: return "A dynamic link library (DLL) referenced a module that was neither a DLL nor the process's executable image.";
00758                 case Sylloge.WinAPI.ErrorCodes.ERROR_ACCESS_DISABLED_WEBBLADE: return "Windows cannot open this program since it has been disabled.";
00759                 case Sylloge.WinAPI.ErrorCodes.ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER: return "Windows cannot open this program because the license enforcement system has been tampered with or become corrupted.";
00760                 case Sylloge.WinAPI.ErrorCodes.ERROR_RECOVERY_FAILURE: return "A transaction recover failed.";
00761                 case Sylloge.WinAPI.ErrorCodes.ERROR_ALREADY_FIBER: return "The current thread has already been converted to a fiber.";
00762                 case Sylloge.WinAPI.ErrorCodes.ERROR_ALREADY_THREAD: return "The current thread has already been converted from a fiber.";
00763                 case Sylloge.WinAPI.ErrorCodes.ERROR_STACK_BUFFER_OVERRUN: return "The system detected an overrun of a stack-based buffer in this application. This overrun could potentially allow a malicious user to gain control of this application.";
00764                 case Sylloge.WinAPI.ErrorCodes.ERROR_PARAMETER_QUOTA_EXCEEDED: return "Data present in one of the parameters is more than the function can operate on.";
00765                 case Sylloge.WinAPI.ErrorCodes.ERROR_DEBUGGER_INACTIVE: return "An attempt to do an operation on a debug object failed because the object is in the process of being deleted.";
00766                 case Sylloge.WinAPI.ErrorCodes.ERROR_DELAY_LOAD_FAILED: return "An attempt to delay-load a .dll or get a function address in a delay-loaded .dll failed.";
00767                 case Sylloge.WinAPI.ErrorCodes.ERROR_VDM_DISALLOWED: return "{0} is a 16-bit application. You do not have permissions to execute 16-bit applications. Check your permissions with your system administrator.";
00768                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNIDENTIFIED_ERROR: return "Insufficient information exists to identify the cause of failure.";
00769                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_CRUNTIME_PARAMETER: return "The parameter passed to a C runtime function is incorrect.";
00770                 case Sylloge.WinAPI.ErrorCodes.ERROR_BEYOND_VDL: return "The operation occurred beyond the valid data length of the file.";
00771                 case Sylloge.WinAPI.ErrorCodes.ERROR_INCOMPATIBLE_SERVICE_SID_TYPE: return "The service start failed since one or more services in the same process have an incompatible service SID type setting. A service with restricted service SID type can only coexist in the same process with other services with a restricted SID type. If the service SID type for this service was just configured, the hosting process must be restarted in order to start this service. On Windows Server 2003 and Windows XP, an unrestricted service cannot coexist in the same process with other services. The service with the unrestricted service SID type must be moved to an owned process in order to start this service.";
00772                 case Sylloge.WinAPI.ErrorCodes.ERROR_DRIVER_PROCESS_TERMINATED: return "The process hosting the driver for this device has been terminated.";
00773                 case Sylloge.WinAPI.ErrorCodes.ERROR_IMPLEMENTATION_LIMIT: return "An operation attempted to exceed an implementation-defined limit.";
00774                 case Sylloge.WinAPI.ErrorCodes.ERROR_PROCESS_IS_PROTECTED: return "Either the target process, or the target thread's containing process, is a protected process.";
00775                 case Sylloge.WinAPI.ErrorCodes.ERROR_SERVICE_NOTIFY_CLIENT_LAGGING: return "The service notification client is lagging too far behind the current state of services in the machine.";
00776                 case Sylloge.WinAPI.ErrorCodes.ERROR_DISK_QUOTA_EXCEEDED: return "The requested file operation failed because the storage quota was exceeded. To free up disk space, move files to a different location or delete unnecessary files. For more information, contact your system administrator.";
00777                 case Sylloge.WinAPI.ErrorCodes.ERROR_CONTENT_BLOCKED: return "The requested files operation failed because the storage policy blocks that type of file. For more information, contact your system administrator.";
00778                 case Sylloge.WinAPI.ErrorCodes.ERROR_INCOMPATIBLE_SERVICE_PRIVILEGE: return "A privilege that the service requires to function properly does not exist in the service account configuration. You may use the Services Microsoft Management Console (MMC) snap-in (services.msc) and the Local Security Settings MMC snap-in (secpol.msc) to view the service configuration and the account configuration.";
00779                 case Sylloge.WinAPI.ErrorCodes.ERROR_APP_HANG: return "A thread involved in this operation appears to be unresponsive.";
00780                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_LABEL: return "Indicates a particular Security ID may not be assigned as the label of an object.";
00781                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_ALL_ASSIGNED: return "Not all privileges or groups referenced are assigned to the caller.";
00782                 case Sylloge.WinAPI.ErrorCodes.ERROR_SOME_NOT_MAPPED: return "Some mapping between account names and security IDs was not done.";
00783                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_QUOTAS_FOR_ACCOUNT: return "No system quota limits are specifically set for this account.";
00784                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOCAL_USER_SESSION_KEY: return "No encryption key is available. A well-known encryption key was returned.";
00785                 case Sylloge.WinAPI.ErrorCodes.ERROR_NULL_LM_PASSWORD: return "The password is too complex to be converted to a LAN Manager password. The LAN Manager password returned is a NULL string.";
00786                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNKNOWN_REVISION: return "The revision level is unknown.";
00787                 case Sylloge.WinAPI.ErrorCodes.ERROR_REVISION_MISMATCH: return "Indicates two revision levels are incompatible.";
00788                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_OWNER: return "This security ID may not be assigned as the owner of this object.";
00789                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_PRIMARY_GROUP: return "This security ID may not be assigned as the primary group of an object.";
00790                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_IMPERSONATION_TOKEN: return "An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client.";
00791                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANT_DISABLE_MANDATORY: return "The group may not be disabled.";
00792                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_LOGON_SERVERS: return "There are currently no logon servers available to service the logon request.";
00793                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_SUCH_LOGON_SESSION: return "A specified logon session does not exist. It may already have been terminated.";
00794                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_SUCH_PRIVILEGE: return "A specified privilege does not exist.";
00795                 case Sylloge.WinAPI.ErrorCodes.ERROR_PRIVILEGE_NOT_HELD: return "A required privilege is not held by the client.";
00796                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_ACCOUNT_NAME: return "The name provided is not a properly formed account name.";
00797                 case Sylloge.WinAPI.ErrorCodes.ERROR_USER_EXISTS: return "The specified account already exists.";
00798                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_SUCH_USER: return "The specified account does not exist.";
00799                 case Sylloge.WinAPI.ErrorCodes.ERROR_GROUP_EXISTS: return "The specified group already exists.";
00800                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_SUCH_GROUP: return "The specified group does not exist.";
00801                 case Sylloge.WinAPI.ErrorCodes.ERROR_MEMBER_IN_GROUP: return "Either the specified user account is already a member of the specified group, or the specified group cannot be deleted because it contains a member.";
00802                 case Sylloge.WinAPI.ErrorCodes.ERROR_MEMBER_NOT_IN_GROUP: return "The specified user account is not a member of the specified group account.";
00803                 case Sylloge.WinAPI.ErrorCodes.ERROR_LAST_ADMIN: return "The last remaining administration account cannot be disabled or deleted.";
00804                 case Sylloge.WinAPI.ErrorCodes.ERROR_WRONG_PASSWORD: return "Unable to update the password. The value provided as the current password is incorrect.";
00805                 case Sylloge.WinAPI.ErrorCodes.ERROR_ILL_FORMED_PASSWORD: return "Unable to update the password. The value provided for the new password contains values that are not allowed in passwords.";
00806                 case Sylloge.WinAPI.ErrorCodes.ERROR_PASSWORD_RESTRICTION: return "Unable to update the password. The value provided for the new password does not meet the length, complexity, or history requirements of the domain.";
00807                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOGON_FAILURE: return "Unknown user name or bad password.";
00808                 case Sylloge.WinAPI.ErrorCodes.ERROR_ACCOUNT_RESTRICTION: return "User account restriction. Possible reasons are blank passwords not allowed, logon hour restrictions, or a policy restriction has been enforced.";
00809                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_LOGON_HOURS: return "Account logon time restriction violation.";
00810                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_WORKSTATION: return "User not allowed to log on to this computer.";
00811                 case Sylloge.WinAPI.ErrorCodes.ERROR_PASSWORD_EXPIRED: return "The specified account password has expired.";
00812                 case Sylloge.WinAPI.ErrorCodes.ERROR_ACCOUNT_DISABLED: return "Account currently disabled.";
00813                 case Sylloge.WinAPI.ErrorCodes.ERROR_NONE_MAPPED: return "No mapping between account names and security IDs was done.";
00814                 case Sylloge.WinAPI.ErrorCodes.ERROR_TOO_MANY_LUIDS_REQUESTED: return "Too many local user identifiers (LUIDs) were requested at one time.";
00815                 case Sylloge.WinAPI.ErrorCodes.ERROR_LUIDS_EXHAUSTED: return "No more local user identifiers (LUIDs) are available.";
00816                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_SUB_AUTHORITY: return "The subauthority part of a security ID is invalid for this particular use.";
00817                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_ACL: return "The access control list (ACL) structure is invalid.";
00818                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_SID: return "The security ID structure is invalid.";
00819                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_SECURITY_DESCR: return "The security descriptor structure is invalid.";
00820                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_INHERITANCE_ACL: return "The inherited access control list (ACL) or access control entry (ACE) could not be built.";
00821                 case Sylloge.WinAPI.ErrorCodes.ERROR_SERVER_DISABLED: return "The server is currently disabled.";
00822                 case Sylloge.WinAPI.ErrorCodes.ERROR_SERVER_NOT_DISABLED: return "The server is currently enabled.";
00823                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_ID_AUTHORITY: return "The value provided was an invalid value for an identifier authority.";
00824                 case Sylloge.WinAPI.ErrorCodes.ERROR_ALLOTTED_SPACE_EXCEEDED: return "No more memory is available for security information updates.";
00825                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_GROUP_ATTRIBUTES: return "The specified attributes are invalid, or incompatible with the attributes for the group as a whole.";
00826                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_IMPERSONATION_LEVEL: return "Either a required impersonation level was not provided, or the provided impersonation level is invalid.";
00827                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANT_OPEN_ANONYMOUS: return "Cannot open an anonymous level security token.";
00828                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_VALIDATION_CLASS: return "The validation information class requested was invalid.";
00829                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_TOKEN_TYPE: return "The type of the token is inappropriate for its attempted use.";
00830                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_SECURITY_ON_OBJECT: return "Unable to perform a security operation on an object that has no associated security.";
00831                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANT_ACCESS_DOMAIN_INFO: return "Configuration information could not be read from the domain controller, either because the machine is unavailable, or access has been denied.";
00832                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_SERVER_STATE: return "The security account manager (SAM) or local security authority (LSA) server was in the wrong state to perform the security operation.";
00833                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_DOMAIN_STATE: return "The domain was in the wrong state to perform the security operation.";
00834                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_DOMAIN_ROLE: return "This operation is only allowed for the Primary Domain Controller of the domain.";
00835                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_SUCH_DOMAIN: return "The specified domain either does not exist or could not be contacted.";
00836                 case Sylloge.WinAPI.ErrorCodes.ERROR_DOMAIN_EXISTS: return "The specified domain already exists.";
00837                 case Sylloge.WinAPI.ErrorCodes.ERROR_DOMAIN_LIMIT_EXCEEDED: return "An attempt was made to exceed the limit on the number of domains per server.";
00838                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNAL_DB_CORRUPTION: return "Unable to complete the requested operation because of either a catastrophic media failure or a data structure corruption on the disk.";
00839                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNAL_ERROR: return "An internal error occurred.";
00840                 case Sylloge.WinAPI.ErrorCodes.ERROR_GENERIC_NOT_MAPPED: return "Generic access types were contained in an access mask which should already be mapped to nongeneric types.";
00841                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_DESCRIPTOR_FORMAT: return "A security descriptor is not in the right format (absolute or self-relative).";
00842                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_LOGON_PROCESS: return "The requested action is restricted for use by logon processes only. The calling process has not registered as a logon process.";
00843                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOGON_SESSION_EXISTS: return "Cannot start a new logon session with an ID that is already in use.";
00844                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_SUCH_PACKAGE: return "A specified authentication package is unknown.";
00845                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_LOGON_SESSION_STATE: return "The logon session is not in a state that is consistent with the requested operation.";
00846                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOGON_SESSION_COLLISION: return "The logon session ID is already in use.";
00847                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_LOGON_TYPE: return "A logon request contained an invalid logon type value.";
00848                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANNOT_IMPERSONATE: return "Unable to impersonate using a named pipe until data has been read from that pipe.";
00849                 case Sylloge.WinAPI.ErrorCodes.ERROR_RXACT_INVALID_STATE: return "The transaction state of a registry subtree is incompatible with the requested operation.";
00850                 case Sylloge.WinAPI.ErrorCodes.ERROR_RXACT_COMMIT_FAILURE: return "An internal security database corruption has been encountered.";
00851                 case Sylloge.WinAPI.ErrorCodes.ERROR_SPECIAL_ACCOUNT: return "Cannot perform this operation on built-in accounts.";
00852                 case Sylloge.WinAPI.ErrorCodes.ERROR_SPECIAL_GROUP: return "Cannot perform this operation on this built-in special group.";
00853                 case Sylloge.WinAPI.ErrorCodes.ERROR_SPECIAL_USER: return "Cannot perform this operation on this built-in special user.";
00854                 case Sylloge.WinAPI.ErrorCodes.ERROR_MEMBERS_PRIMARY_GROUP: return "The user cannot be removed from a group because the group is currently the user's primary group.";
00855                 case Sylloge.WinAPI.ErrorCodes.ERROR_TOKEN_ALREADY_IN_USE: return "The token is already in use as a primary token.";
00856                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_SUCH_ALIAS: return "The specified local group does not exist.";
00857                 case Sylloge.WinAPI.ErrorCodes.ERROR_MEMBER_NOT_IN_ALIAS: return "The specified account name is not a member of the group.";
00858                 case Sylloge.WinAPI.ErrorCodes.ERROR_MEMBER_IN_ALIAS: return "The specified account name is already a member of the group.";
00859                 case Sylloge.WinAPI.ErrorCodes.ERROR_ALIAS_EXISTS: return "The specified local group already exists.";
00860                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOGON_NOT_GRANTED: return "The user has not been granted the requested logon type at this computer.";
00861                 case Sylloge.WinAPI.ErrorCodes.ERROR_TOO_MANY_SECRETS: return "The maximum number of secrets that may be stored in a single system has been exceeded.";
00862                 case Sylloge.WinAPI.ErrorCodes.ERROR_SECRET_TOO_LONG: return "The length of a secret exceeds the maximum length allowed.";
00863                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNAL_DB_ERROR: return "The local security authority database contains an internal inconsistency.";
00864                 case Sylloge.WinAPI.ErrorCodes.ERROR_TOO_MANY_CONTEXT_IDS: return "During a logon attempt, the user's security context accumulated too many security IDs.";
00865                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOGON_TYPE_NOT_GRANTED: return "The user has not been granted the requested logon type at this computer.";
00866                 case Sylloge.WinAPI.ErrorCodes.ERROR_NT_CROSS_ENCRYPTION_REQUIRED: return "A cross-encrypted password is necessary to change a user password.";
00867                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_SUCH_MEMBER: return "A member could not be added to or removed from the local group because the member does not exist.";
00868                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_MEMBER: return "A new member could not be added to a local group because the member has the wrong account type.";
00869                 case Sylloge.WinAPI.ErrorCodes.ERROR_TOO_MANY_SIDS: return "Too many security IDs have been specified.";
00870                 case Sylloge.WinAPI.ErrorCodes.ERROR_LM_CROSS_ENCRYPTION_REQUIRED: return "A cross-encrypted password is necessary to change this user password.";
00871                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_INHERITANCE: return "Indicates an ACL contains no inheritable components.";
00872                 case Sylloge.WinAPI.ErrorCodes.ERROR_FILE_CORRUPT: return "The file or directory is corrupted and unreadable.";
00873                 case Sylloge.WinAPI.ErrorCodes.ERROR_DISK_CORRUPT: return "The disk structure is corrupted and unreadable.";
00874                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_USER_SESSION_KEY: return "There is no user session key for the specified logon session.";
00875                 case Sylloge.WinAPI.ErrorCodes.ERROR_LICENSE_QUOTA_EXCEEDED: return "The service being accessed is licensed for a particular number of connections. No more connections can be made to the service at this time because there are already as many connections as the service can accept.";
00876                 case Sylloge.WinAPI.ErrorCodes.ERROR_WRONG_TARGET_NAME: return "The target account name is incorrect.";
00877                 case Sylloge.WinAPI.ErrorCodes.ERROR_MUTUAL_AUTH_FAILED: return "Mutual Authentication failed. The server's password is out of date at the domain controller.";
00878                 case Sylloge.WinAPI.ErrorCodes.ERROR_TIME_SKEW: return "There is a time and/or date difference between the client and server.";
00879                 case Sylloge.WinAPI.ErrorCodes.ERROR_CURRENT_DOMAIN_NOT_ALLOWED: return "This operation cannot be performed on the current domain.";
00880                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_WINDOW_HANDLE: return "Invalid window handle.";
00881                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_MENU_HANDLE: return "Invalid menu handle.";
00882                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_CURSOR_HANDLE: return "Invalid cursor handle.";
00883                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_ACCEL_HANDLE: return "Invalid accelerator table handle.";
00884                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_HOOK_HANDLE: return "Invalid hook handle.";
00885                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_DWP_HANDLE: return "Invalid handle to a multiple-window position structure.";
00886                 case Sylloge.WinAPI.ErrorCodes.ERROR_TLW_WITH_WSCHILD: return "Cannot create a top-level child window.";
00887                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANNOT_FIND_WND_CLASS: return "Cannot find window class.";
00888                 case Sylloge.WinAPI.ErrorCodes.ERROR_WINDOW_OF_OTHER_THREAD: return "Invalid window; it belongs to other thread.";
00889                 case Sylloge.WinAPI.ErrorCodes.ERROR_HOTKEY_ALREADY_REGISTERED: return "Hot key is already registered.";
00890                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLASS_ALREADY_EXISTS: return "Class already exists.";
00891                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLASS_DOES_NOT_EXIST: return "Class does not exist.";
00892                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLASS_HAS_WINDOWS: return "Class still has open windows.";
00893                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_INDEX: return "Invalid index.";
00894                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_ICON_HANDLE: return "Invalid icon handle.";
00895                 case Sylloge.WinAPI.ErrorCodes.ERROR_PRIVATE_DIALOG_INDEX: return "Using private DIALOG window words.";
00896                 case Sylloge.WinAPI.ErrorCodes.ERROR_LISTBOX_ID_NOT_FOUND: return "The list box identifier was not found.";
00897                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_WILDCARD_CHARACTERS: return "No wildcards were found.";
00898                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLIPBOARD_NOT_OPEN: return "Thread does not have a clipboard open.";
00899                 case Sylloge.WinAPI.ErrorCodes.ERROR_HOTKEY_NOT_REGISTERED: return "Hot key is not registered.";
00900                 case Sylloge.WinAPI.ErrorCodes.ERROR_WINDOW_NOT_DIALOG: return "The window is not a valid dialog window.";
00901                 case Sylloge.WinAPI.ErrorCodes.ERROR_CONTROL_ID_NOT_FOUND: return "Control ID not found.";
00902                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_COMBOBOX_MESSAGE: return "Invalid message for a combo box because it does not have an edit control.";
00903                 case Sylloge.WinAPI.ErrorCodes.ERROR_WINDOW_NOT_COMBOBOX: return "The window is not a combo box.";
00904                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_EDIT_HEIGHT: return "Height must be less than 256.";
00905                 case Sylloge.WinAPI.ErrorCodes.ERROR_DC_NOT_FOUND: return "Invalid device context (DC) handle.";
00906                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_HOOK_FILTER: return "Invalid hook procedure type.";
00907                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_FILTER_PROC: return "Invalid hook procedure.";
00908                 case Sylloge.WinAPI.ErrorCodes.ERROR_HOOK_NEEDS_HMOD: return "Cannot set nonlocal hook without a module handle.";
00909                 case Sylloge.WinAPI.ErrorCodes.ERROR_GLOBAL_ONLY_HOOK: return "This hook procedure can only be set globally.";
00910                 case Sylloge.WinAPI.ErrorCodes.ERROR_JOURNAL_HOOK_SET: return "The journal hook procedure is already installed.";
00911                 case Sylloge.WinAPI.ErrorCodes.ERROR_HOOK_NOT_INSTALLED: return "The hook procedure is not installed.";
00912                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_LB_MESSAGE: return "Invalid message for single-selection list box.";
00913                 case Sylloge.WinAPI.ErrorCodes.ERROR_SETCOUNT_ON_BAD_LB: return "LB_SETCOUNT sent to non-lazy list box.";
00914                 case Sylloge.WinAPI.ErrorCodes.ERROR_LB_WITHOUT_TABSTOPS: return "This list box does not support tab stops.";
00915                 case Sylloge.WinAPI.ErrorCodes.ERROR_DESTROY_OBJECT_OF_OTHER_THREAD: return "Cannot destroy object created by another thread.";
00916                 case Sylloge.WinAPI.ErrorCodes.ERROR_CHILD_WINDOW_MENU: return "Child windows cannot have menus.";
00917                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_SYSTEM_MENU: return "The window does not have a system menu.";
00918                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_MSGBOX_STYLE: return "Invalid message box style.";
00919                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_SPI_VALUE: return "Invalid system-wide (SPI_*) parameter.";
00920                 case Sylloge.WinAPI.ErrorCodes.ERROR_SCREEN_ALREADY_LOCKED: return "Screen already locked.";
00921                 case Sylloge.WinAPI.ErrorCodes.ERROR_HWNDS_HAVE_DIFF_PARENT: return "All handles to windows in a multiple-window position structure must have the same parent.";
00922                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_CHILD_WINDOW: return "The window is not a child window.";
00923                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_GW_COMMAND: return "Invalid GW_* command.";
00924                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_THREAD_ID: return "Invalid thread identifier.";
00925                 case Sylloge.WinAPI.ErrorCodes.ERROR_NON_MDICHILD_WINDOW: return "Cannot process a message from a window that is not a multiple document interface (MDI) window.";
00926                 case Sylloge.WinAPI.ErrorCodes.ERROR_POPUP_ALREADY_ACTIVE: return "Popup menu already active.";
00927                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_SCROLLBARS: return "The window does not have scroll bars.";
00928                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_SCROLLBAR_RANGE: return "Scroll bar range cannot be greater than MAXLONG.";
00929                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_SHOWWIN_COMMAND: return "Cannot show or remove the window in the way specified.";
00930                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_SYSTEM_RESOURCES: return "Insufficient system resources exist to complete the requested service.";
00931                 case Sylloge.WinAPI.ErrorCodes.ERROR_NONPAGED_SYSTEM_RESOURCES: return "Insufficient system resources exist to complete the requested service.";
00932                 case Sylloge.WinAPI.ErrorCodes.ERROR_PAGED_SYSTEM_RESOURCES: return "Insufficient system resources exist to complete the requested service.";
00933                 case Sylloge.WinAPI.ErrorCodes.ERROR_WORKING_SET_QUOTA: return "Insufficient quota to complete the requested service.";
00934                 case Sylloge.WinAPI.ErrorCodes.ERROR_PAGEFILE_QUOTA: return "Insufficient quota to complete the requested service.";
00935                 case Sylloge.WinAPI.ErrorCodes.ERROR_COMMITMENT_LIMIT: return "The paging file is too small for this operation to complete.";
00936                 case Sylloge.WinAPI.ErrorCodes.ERROR_MENU_ITEM_NOT_FOUND: return "A menu item was not found.";
00937                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_KEYBOARD_HANDLE: return "Invalid keyboard layout handle.";
00938                 case Sylloge.WinAPI.ErrorCodes.ERROR_HOOK_TYPE_NOT_ALLOWED: return "Hook type not allowed.";
00939                 case Sylloge.WinAPI.ErrorCodes.ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION: return "This operation requires an interactive window station.";
00940                 case Sylloge.WinAPI.ErrorCodes.ERROR_TIMEOUT: return "This operation returned because the timeout period expired.";
00941                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_MONITOR_HANDLE: return "Invalid monitor handle.";
00942                 case Sylloge.WinAPI.ErrorCodes.ERROR_INCORRECT_SIZE: return "Incorrect size argument.";
00943                 case Sylloge.WinAPI.ErrorCodes.ERROR_SYMLINK_CLASS_DISABLED: return "The symbolic link cannot be followed because its type is disabled.";
00944                 case Sylloge.WinAPI.ErrorCodes.ERROR_SYMLINK_NOT_SUPPORTED: return "This application does not support the current operation on symbolic links.";
00945                 case Sylloge.WinAPI.ErrorCodes.ERROR_XML_PARSE_ERROR: return "Windows was unable to parse the requested XML data.";
00946                 case Sylloge.WinAPI.ErrorCodes.ERROR_XMLDSIG_ERROR: return "An error was encountered while processing an XML digital signature.";
00947                 case Sylloge.WinAPI.ErrorCodes.ERROR_RESTART_APPLICATION: return "This application must be restarted.";
00948                 case Sylloge.WinAPI.ErrorCodes.ERROR_WRONG_COMPARTMENT: return "The caller made the connection request in the wrong routing compartment.";
00949                 case Sylloge.WinAPI.ErrorCodes.ERROR_AUTHIP_FAILURE: return "There was an AuthIP failure when attempting to connect to the remote host.";
00950                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_NVRAM_RESOURCES: return "Insufficient NVRAM resources exist to complete the requested service. A reboot might be required.";
00951                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVENTLOG_FILE_CORRUPT: return "The event log file is corrupted.";
00952                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVENTLOG_CANT_START: return "No event log file could be opened, so the event logging service did not start.";
00953                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_FILE_FULL: return "The event log file is full.";
00954                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVENTLOG_FILE_CHANGED: return "The event log file has changed between read operations.";
00955                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_TASK_NAME: return "The specified task name is invalid.";
00956                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_TASK_INDEX: return "The specified task index is invalid.";
00957                 case Sylloge.WinAPI.ErrorCodes.ERROR_THREAD_ALREADY_IN_TASK: return "The specified thread is already joining a task.";
00958                 case Sylloge.WinAPI.ErrorCodes.ERROR_INSTALL_SERVICE_FAILURE: return "The Windows Installer Service could not be accessed. This can occur if the Windows Installer is not correctly installed. Contact your support personnel for assistance.";
00959                 case Sylloge.WinAPI.ErrorCodes.ERROR_INSTALL_USEREXIT: return "User canceled installation.";
00960                 case Sylloge.WinAPI.ErrorCodes.ERROR_INSTALL_FAILURE: return "Fatal error during installation.";
00961                 case Sylloge.WinAPI.ErrorCodes.ERROR_INSTALL_SUSPEND: return "Installation suspended, incomplete.";
00962                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNKNOWN_PRODUCT: return "This action is only valid for products that are currently installed.";
00963                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNKNOWN_FEATURE: return "Feature ID not registered.";
00964                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNKNOWN_COMPONENT: return "Component ID not registered.";
00965                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNKNOWN_PROPERTY: return "Unknown property.";
00966                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_HANDLE_STATE: return "A handle is in an invalid state.";
00967                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_CONFIGURATION: return "The configuration data for this product is corrupt. Contact your support personnel.";
00968                 case Sylloge.WinAPI.ErrorCodes.ERROR_INDEX_ABSENT: return "Component qualifier not present.";
00969                 case Sylloge.WinAPI.ErrorCodes.ERROR_INSTALL_SOURCE_ABSENT: return "The installation source for this product is not available. Verify that the source exists and that you can access it.";
00970                 case Sylloge.WinAPI.ErrorCodes.ERROR_INSTALL_PACKAGE_VERSION: return "This installation package cannot be installed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service.";
00971                 case Sylloge.WinAPI.ErrorCodes.ERROR_PRODUCT_UNINSTALLED: return "Product is uninstalled.";
00972                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_QUERY_SYNTAX: return "SQL query syntax invalid or unsupported.";
00973                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_FIELD: return "Record field does not exist.";
00974                 case Sylloge.WinAPI.ErrorCodes.ERROR_DEVICE_REMOVED: return "The device has been removed.";
00975                 case Sylloge.WinAPI.ErrorCodes.ERROR_INSTALL_ALREADY_RUNNING: return "Another installation is already in progress. Complete that installation before proceeding with this install.";
00976                 case Sylloge.WinAPI.ErrorCodes.ERROR_INSTALL_PACKAGE_OPEN_FAILED: return "This installation package could not be opened. Verify that the package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer package.";
00977                 case Sylloge.WinAPI.ErrorCodes.ERROR_INSTALL_PACKAGE_INVALID: return "This installation package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer package.";
00978                 case Sylloge.WinAPI.ErrorCodes.ERROR_INSTALL_UI_FAILURE: return "There was an error starting the Windows Installer service user interface. Contact your support personnel.";
00979                 case Sylloge.WinAPI.ErrorCodes.ERROR_INSTALL_LOG_FAILURE: return "Error opening installation log file. Verify that the specified log file location exists and that you can write to it.";
00980                 case Sylloge.WinAPI.ErrorCodes.ERROR_INSTALL_LANGUAGE_UNSUPPORTED: return "The language of this installation package is not supported by your system.";
00981                 case Sylloge.WinAPI.ErrorCodes.ERROR_INSTALL_TRANSFORM_FAILURE: return "Error applying transforms. Verify that the specified transform paths are valid.";
00982                 case Sylloge.WinAPI.ErrorCodes.ERROR_INSTALL_PACKAGE_REJECTED: return "This installation is forbidden by system policy. Contact your system administrator.";
00983                 case Sylloge.WinAPI.ErrorCodes.ERROR_FUNCTION_NOT_CALLED: return "Function could not be executed.";
00984                 case Sylloge.WinAPI.ErrorCodes.ERROR_FUNCTION_FAILED: return "Function failed during execution.";
00985                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_TABLE: return "Invalid or unknown table specified.";
00986                 case Sylloge.WinAPI.ErrorCodes.ERROR_DATATYPE_MISMATCH: return "Data supplied is of wrong type.";
00987                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNSUPPORTED_TYPE: return "Data of this type is not supported.";
00988                 case Sylloge.WinAPI.ErrorCodes.ERROR_CREATE_FAILED: return "The Windows Installer service failed to start. Contact your support personnel.";
00989                 case Sylloge.WinAPI.ErrorCodes.ERROR_INSTALL_TEMP_UNWRITABLE: return "The Temp folder is on a drive that is full or is inaccessible. Free up space on the drive or verify that you have write permission on the Temp folder.";
00990                 case Sylloge.WinAPI.ErrorCodes.ERROR_INSTALL_PLATFORM_UNSUPPORTED: return "This installation package is not supported by this processor type. Contact your product vendor.";
00991                 case Sylloge.WinAPI.ErrorCodes.ERROR_INSTALL_NOTUSED: return "Component not used on this computer.";
00992                 case Sylloge.WinAPI.ErrorCodes.ERROR_PATCH_PACKAGE_OPEN_FAILED: return "This update package could not be opened. Verify that the update package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer update package.";
00993                 case Sylloge.WinAPI.ErrorCodes.ERROR_PATCH_PACKAGE_INVALID: return "This update package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer update package.";
00994                 case Sylloge.WinAPI.ErrorCodes.ERROR_PATCH_PACKAGE_UNSUPPORTED: return "This update package cannot be processed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service.";
00995                 case Sylloge.WinAPI.ErrorCodes.ERROR_PRODUCT_VERSION: return "Another version of this product is already installed. Installation of this version cannot continue. To configure or remove the existing version of this product, use Add/Remove Programs on the Control Panel.";
00996                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_COMMAND_LINE: return "Invalid command line argument. Consult the Windows Installer SDK for detailed command line help.";
00997                 case Sylloge.WinAPI.ErrorCodes.ERROR_INSTALL_REMOTE_DISALLOWED: return "Only administrators have permission to add, remove, or configure server software during a Terminal services remote session. If you want to install or configure software on the server, contact your network administrator.";
00998                 case Sylloge.WinAPI.ErrorCodes.ERROR_SUCCESS_REBOOT_INITIATED: return "The requested operation completed successfully. The system will be restarted so the changes can take effect.";
00999                 case Sylloge.WinAPI.ErrorCodes.ERROR_PATCH_TARGET_NOT_FOUND: return "The upgrade cannot be installed by the Windows Installer service because the program to be upgraded may be missing, or the upgrade may update a different version of the program. Verify that the program to be upgraded exists on your computer and that you have the correct upgrade.";
01000                 case Sylloge.WinAPI.ErrorCodes.ERROR_PATCH_PACKAGE_REJECTED: return "The update package is not permitted by software restriction policy.";
01001                 case Sylloge.WinAPI.ErrorCodes.ERROR_INSTALL_TRANSFORM_REJECTED: return "One or more customizations are not permitted by software restriction policy.";
01002                 case Sylloge.WinAPI.ErrorCodes.ERROR_INSTALL_REMOTE_PROHIBITED: return "The Windows Installer does not permit installation from a Remote Desktop Connection.";
01003                 case Sylloge.WinAPI.ErrorCodes.ERROR_PATCH_REMOVAL_UNSUPPORTED: return "Uninstallation of the update package is not supported.";
01004                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNKNOWN_PATCH: return "The update is not applied to this product.";
01005                 case Sylloge.WinAPI.ErrorCodes.ERROR_PATCH_NO_SEQUENCE: return "No valid sequence could be found for the set of updates.";
01006                 case Sylloge.WinAPI.ErrorCodes.ERROR_PATCH_REMOVAL_DISALLOWED: return "Update removal was disallowed by policy.";
01007                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_PATCH_XML: return "The XML update data is invalid.";
01008                 case Sylloge.WinAPI.ErrorCodes.ERROR_PATCH_MANAGED_ADVERTISED_PRODUCT: return "Windows Installer does not permit updating of managed advertised products. At least one feature of the product must be installed before applying the update.";
01009                 case Sylloge.WinAPI.ErrorCodes.ERROR_INSTALL_SERVICE_SAFEBOOT: return "The Windows Installer service is not accessible in Safe Mode. Please try again when your computer is not in Safe Mode or you can use System Restore to return your machine to a previous good state.";
01010                 case Sylloge.WinAPI.ErrorCodes.ERROR_FAIL_FAST_EXCEPTION: return "A fail fast exception occurred. Exception handlers will not be invoked and the process will be terminated immediately.";
01011                 case Sylloge.WinAPI.ErrorCodes.RPC_S_INVALID_STRING_BINDING: return "The string binding is invalid.";
01012                 case Sylloge.WinAPI.ErrorCodes.RPC_S_WRONG_KIND_OF_BINDING: return "The binding handle is not the correct type.";
01013                 case Sylloge.WinAPI.ErrorCodes.RPC_S_INVALID_BINDING: return "The binding handle is invalid.";
01014                 case Sylloge.WinAPI.ErrorCodes.RPC_S_PROTSEQ_NOT_SUPPORTED: return "The RPC protocol sequence is not supported.";
01015                 case Sylloge.WinAPI.ErrorCodes.RPC_S_INVALID_RPC_PROTSEQ: return "The RPC protocol sequence is invalid.";
01016                 case Sylloge.WinAPI.ErrorCodes.RPC_S_INVALID_STRING_UUID: return "The string universal unique identifier (UUID) is invalid.";
01017                 case Sylloge.WinAPI.ErrorCodes.RPC_S_INVALID_ENDPOINT_FORMAT: return "The endpoint format is invalid.";
01018                 case Sylloge.WinAPI.ErrorCodes.RPC_S_INVALID_NET_ADDR: return "The network address is invalid.";
01019                 case Sylloge.WinAPI.ErrorCodes.RPC_S_NO_ENDPOINT_FOUND: return "No endpoint was found.";
01020                 case Sylloge.WinAPI.ErrorCodes.RPC_S_INVALID_TIMEOUT: return "The timeout value is invalid.";
01021                 case Sylloge.WinAPI.ErrorCodes.RPC_S_OBJECT_NOT_FOUND: return "The object universal unique identifier (UUID) was not found.";
01022                 case Sylloge.WinAPI.ErrorCodes.RPC_S_ALREADY_REGISTERED: return "The object universal unique identifier (UUID) has already been registered.";
01023                 case Sylloge.WinAPI.ErrorCodes.RPC_S_TYPE_ALREADY_REGISTERED: return "The type universal unique identifier (UUID) has already been registered.";
01024                 case Sylloge.WinAPI.ErrorCodes.RPC_S_ALREADY_LISTENING: return "The RPC server is already listening.";
01025                 case Sylloge.WinAPI.ErrorCodes.RPC_S_NO_PROTSEQS_REGISTERED: return "No protocol sequences have been registered.";
01026                 case Sylloge.WinAPI.ErrorCodes.RPC_S_NOT_LISTENING: return "The RPC server is not listening.";
01027                 case Sylloge.WinAPI.ErrorCodes.RPC_S_UNKNOWN_MGR_TYPE: return "The manager type is unknown.";
01028                 case Sylloge.WinAPI.ErrorCodes.RPC_S_UNKNOWN_IF: return "The interface is unknown.";
01029                 case Sylloge.WinAPI.ErrorCodes.RPC_S_NO_BINDINGS: return "There are no bindings.";
01030                 case Sylloge.WinAPI.ErrorCodes.RPC_S_NO_PROTSEQS: return "There are no protocol sequences.";
01031                 case Sylloge.WinAPI.ErrorCodes.RPC_S_CANT_CREATE_ENDPOINT: return "The endpoint cannot be created.";
01032                 case Sylloge.WinAPI.ErrorCodes.RPC_S_OUT_OF_RESOURCES: return "Not enough resources are available to complete this operation.";
01033                 case Sylloge.WinAPI.ErrorCodes.RPC_S_SERVER_UNAVAILABLE: return "The RPC server is unavailable.";
01034                 case Sylloge.WinAPI.ErrorCodes.RPC_S_SERVER_TOO_BUSY: return "The RPC server is too busy to complete this operation.";
01035                 case Sylloge.WinAPI.ErrorCodes.RPC_S_INVALID_NETWORK_OPTIONS: return "The network options are invalid.";
01036                 case Sylloge.WinAPI.ErrorCodes.RPC_S_NO_CALL_ACTIVE: return "There are no remote procedure calls active on this thread.";
01037                 case Sylloge.WinAPI.ErrorCodes.RPC_S_CALL_FAILED: return "The remote procedure call failed.";
01038                 case Sylloge.WinAPI.ErrorCodes.RPC_S_CALL_FAILED_DNE: return "The remote procedure call failed and did not execute.";
01039                 case Sylloge.WinAPI.ErrorCodes.RPC_S_PROTOCOL_ERROR: return "A remote procedure call (RPC) protocol error occurred.";
01040                 case Sylloge.WinAPI.ErrorCodes.RPC_S_PROXY_ACCESS_DENIED: return "Access to the HTTP proxy is denied.";
01041                 case Sylloge.WinAPI.ErrorCodes.RPC_S_UNSUPPORTED_TRANS_SYN: return "The transfer syntax is not supported by the RPC server.";
01042                 case Sylloge.WinAPI.ErrorCodes.RPC_S_UNSUPPORTED_TYPE: return "The universal unique identifier (UUID) type is not supported.";
01043                 case Sylloge.WinAPI.ErrorCodes.RPC_S_INVALID_TAG: return "The tag is invalid.";
01044                 case Sylloge.WinAPI.ErrorCodes.RPC_S_INVALID_BOUND: return "The array bounds are invalid.";
01045                 case Sylloge.WinAPI.ErrorCodes.RPC_S_NO_ENTRY_NAME: return "The binding does not contain an entry name.";
01046                 case Sylloge.WinAPI.ErrorCodes.RPC_S_INVALID_NAME_SYNTAX: return "The name syntax is invalid.";
01047                 case Sylloge.WinAPI.ErrorCodes.RPC_S_UNSUPPORTED_NAME_SYNTAX: return "The name syntax is not supported.";
01048                 case Sylloge.WinAPI.ErrorCodes.RPC_S_UUID_NO_ADDRESS: return "No network address is available to use to construct a universal unique identifier (UUID).";
01049                 case Sylloge.WinAPI.ErrorCodes.RPC_S_DUPLICATE_ENDPOINT: return "The endpoint is a duplicate.";
01050                 case Sylloge.WinAPI.ErrorCodes.RPC_S_UNKNOWN_AUTHN_TYPE: return "The authentication type is unknown.";
01051                 case Sylloge.WinAPI.ErrorCodes.RPC_S_MAX_CALLS_TOO_SMALL: return "The maximum number of calls is too small.";
01052                 case Sylloge.WinAPI.ErrorCodes.RPC_S_STRING_TOO_LONG: return "The string is too long.";
01053                 case Sylloge.WinAPI.ErrorCodes.RPC_S_PROTSEQ_NOT_FOUND: return "The RPC protocol sequence was not found.";
01054                 case Sylloge.WinAPI.ErrorCodes.RPC_S_PROCNUM_OUT_OF_RANGE: return "The procedure number is out of range.";
01055                 case Sylloge.WinAPI.ErrorCodes.RPC_S_BINDING_HAS_NO_AUTH: return "The binding does not contain any authentication information.";
01056                 case Sylloge.WinAPI.ErrorCodes.RPC_S_UNKNOWN_AUTHN_SERVICE: return "The authentication service is unknown.";
01057                 case Sylloge.WinAPI.ErrorCodes.RPC_S_UNKNOWN_AUTHN_LEVEL: return "The authentication level is unknown.";
01058                 case Sylloge.WinAPI.ErrorCodes.RPC_S_INVALID_AUTH_IDENTITY: return "The security context is invalid.";
01059                 case Sylloge.WinAPI.ErrorCodes.RPC_S_UNKNOWN_AUTHZ_SERVICE: return "The authorization service is unknown.";
01060                 case Sylloge.WinAPI.ErrorCodes.EPT_S_INVALID_ENTRY: return "The entry is invalid.";
01061                 case Sylloge.WinAPI.ErrorCodes.EPT_S_CANT_PERFORM_OP: return "The server endpoint cannot perform the operation.";
01062                 case Sylloge.WinAPI.ErrorCodes.EPT_S_NOT_REGISTERED: return "There are no more endpoints available from the endpoint mapper.";
01063                 case Sylloge.WinAPI.ErrorCodes.RPC_S_NOTHING_TO_EXPORT: return "No interfaces have been exported.";
01064                 case Sylloge.WinAPI.ErrorCodes.RPC_S_INCOMPLETE_NAME: return "The entry name is incomplete.";
01065                 case Sylloge.WinAPI.ErrorCodes.RPC_S_INVALID_VERS_OPTION: return "The version option is invalid.";
01066                 case Sylloge.WinAPI.ErrorCodes.RPC_S_NO_MORE_MEMBERS: return "There are no more members.";
01067                 case Sylloge.WinAPI.ErrorCodes.RPC_S_NOT_ALL_OBJS_UNEXPORTED: return "There is nothing to unexport.";
01068                 case Sylloge.WinAPI.ErrorCodes.RPC_S_INTERFACE_NOT_FOUND: return "The interface was not found.";
01069                 case Sylloge.WinAPI.ErrorCodes.RPC_S_ENTRY_ALREADY_EXISTS: return "The entry already exists.";
01070                 case Sylloge.WinAPI.ErrorCodes.RPC_S_ENTRY_NOT_FOUND: return "The entry is not found.";
01071                 case Sylloge.WinAPI.ErrorCodes.RPC_S_NAME_SERVICE_UNAVAILABLE: return "The name service is unavailable.";
01072                 case Sylloge.WinAPI.ErrorCodes.RPC_S_INVALID_NAF_ID: return "The network address family is invalid.";
01073                 case Sylloge.WinAPI.ErrorCodes.RPC_S_CANNOT_SUPPORT: return "The requested operation is not supported.";
01074                 case Sylloge.WinAPI.ErrorCodes.RPC_S_NO_CONTEXT_AVAILABLE: return "No security context is available to allow impersonation.";
01075                 case Sylloge.WinAPI.ErrorCodes.RPC_S_INTERNAL_ERROR: return "An internal error occurred in a remote procedure call (RPC).";
01076                 case Sylloge.WinAPI.ErrorCodes.RPC_S_ZERO_DIVIDE: return "The RPC server attempted an integer division by zero.";
01077                 case Sylloge.WinAPI.ErrorCodes.RPC_S_ADDRESS_ERROR: return "An addressing error occurred in the RPC server.";
01078                 case Sylloge.WinAPI.ErrorCodes.RPC_S_FP_DIV_ZERO: return "A floating-point operation at the RPC server caused a division by zero.";
01079                 case Sylloge.WinAPI.ErrorCodes.RPC_S_FP_UNDERFLOW: return "A floating-point underflow occurred at the RPC server.";
01080                 case Sylloge.WinAPI.ErrorCodes.RPC_S_FP_OVERFLOW: return "A floating-point overflow occurred at the RPC server.";
01081                 case Sylloge.WinAPI.ErrorCodes.RPC_X_NO_MORE_ENTRIES: return "The list of RPC servers available for the binding of auto handles has been exhausted.";
01082                 case Sylloge.WinAPI.ErrorCodes.RPC_X_SS_CHAR_TRANS_OPEN_FAIL: return "Unable to open the character translation table file.";
01083                 case Sylloge.WinAPI.ErrorCodes.RPC_X_SS_CHAR_TRANS_SHORT_FILE: return "The file containing the character translation table has fewer than 512 bytes.";
01084                 case Sylloge.WinAPI.ErrorCodes.RPC_X_SS_IN_NULL_CONTEXT: return "A null context handle was passed from the client to the host during a remote procedure call.";
01085                 case Sylloge.WinAPI.ErrorCodes.RPC_X_SS_CONTEXT_DAMAGED: return "The context handle changed during a remote procedure call.";
01086                 case Sylloge.WinAPI.ErrorCodes.RPC_X_SS_HANDLES_MISMATCH: return "The binding handles passed to a remote procedure call do not match.";
01087                 case Sylloge.WinAPI.ErrorCodes.RPC_X_SS_CANNOT_GET_CALL_HANDLE: return "The stub is unable to get the remote procedure call handle.";
01088                 case Sylloge.WinAPI.ErrorCodes.RPC_X_NULL_REF_POINTER: return "A null reference pointer was passed to the stub.";
01089                 case Sylloge.WinAPI.ErrorCodes.RPC_X_ENUM_VALUE_OUT_OF_RANGE: return "The enumeration value is out of range.";
01090                 case Sylloge.WinAPI.ErrorCodes.RPC_X_BYTE_COUNT_TOO_SMALL: return "The byte count is too small.";
01091                 case Sylloge.WinAPI.ErrorCodes.RPC_X_BAD_STUB_DATA: return "The stub received bad data.";
01092                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_USER_BUFFER: return "The supplied user buffer is not valid for the requested operation.";
01093                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNRECOGNIZED_MEDIA: return "The disk media is not recognized. It may not be formatted.";
01094                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_TRUST_LSA_SECRET: return "The workstation does not have a trust secret.";
01095                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_TRUST_SAM_ACCOUNT: return "The security database on the server does not have a computer account for this workstation trust relationship.";
01096                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRUSTED_DOMAIN_FAILURE: return "The trust relationship between the primary domain and the trusted domain failed.";
01097                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRUSTED_RELATIONSHIP_FAILURE: return "The trust relationship between this workstation and the primary domain failed.";
01098                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRUST_FAILURE: return "The network logon failed.";
01099                 case Sylloge.WinAPI.ErrorCodes.RPC_S_CALL_IN_PROGRESS: return "A remote procedure call is already in progress for this thread.";
01100                 case Sylloge.WinAPI.ErrorCodes.ERROR_NETLOGON_NOT_STARTED: return "An attempt was made to logon, but the network logon service was not started.";
01101                 case Sylloge.WinAPI.ErrorCodes.ERROR_ACCOUNT_EXPIRED: return "The user's account has expired.";
01102                 case Sylloge.WinAPI.ErrorCodes.ERROR_REDIRECTOR_HAS_OPEN_HANDLES: return "The redirector is in use and cannot be unloaded.";
01103                 case Sylloge.WinAPI.ErrorCodes.ERROR_PRINTER_DRIVER_ALREADY_INSTALLED: return "The specified printer driver is already installed.";
01104                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNKNOWN_PORT: return "The specified port is unknown.";
01105                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNKNOWN_PRINTER_DRIVER: return "The printer driver is unknown.";
01106                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNKNOWN_PRINTPROCESSOR: return "The print processor is unknown.";
01107                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_SEPARATOR_FILE: return "The specified separator file is invalid.";
01108                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_PRIORITY: return "The specified priority is invalid.";
01109                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_PRINTER_NAME: return "The printer name is invalid.";
01110                 case Sylloge.WinAPI.ErrorCodes.ERROR_PRINTER_ALREADY_EXISTS: return "The printer already exists.";
01111                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_PRINTER_COMMAND: return "The printer command is invalid.";
01112                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_DATATYPE: return "The specified datatype is invalid.";
01113                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_ENVIRONMENT: return "The environment specified is invalid.";
01114                 case Sylloge.WinAPI.ErrorCodes.RPC_S_NO_MORE_BINDINGS: return "There are no more bindings.";
01115                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT: return "The account used is an interdomain trust account. Use your global user account or local user account to access this server.";
01116                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT: return "The account used is a computer account. Use your global user account or local user account to access this server.";
01117                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOLOGON_SERVER_TRUST_ACCOUNT: return "The account used is a server trust account. Use your global user account or local user account to access this server.";
01118                 case Sylloge.WinAPI.ErrorCodes.ERROR_DOMAIN_TRUST_INCONSISTENT: return "The name or security ID (SID) of the domain specified is inconsistent with the trust information for that domain.";
01119                 case Sylloge.WinAPI.ErrorCodes.ERROR_SERVER_HAS_OPEN_HANDLES: return "The server is in use and cannot be unloaded.";
01120                 case Sylloge.WinAPI.ErrorCodes.ERROR_RESOURCE_DATA_NOT_FOUND: return "The specified image file did not contain a resource section.";
01121                 case Sylloge.WinAPI.ErrorCodes.ERROR_RESOURCE_TYPE_NOT_FOUND: return "The specified resource type cannot be found in the image file.";
01122                 case Sylloge.WinAPI.ErrorCodes.ERROR_RESOURCE_NAME_NOT_FOUND: return "The specified resource name cannot be found in the image file.";
01123                 case Sylloge.WinAPI.ErrorCodes.ERROR_RESOURCE_LANG_NOT_FOUND: return "The specified resource language ID cannot be found in the image file.";
01124                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_ENOUGH_QUOTA: return "Not enough quota is available to process this command.";
01125                 case Sylloge.WinAPI.ErrorCodes.RPC_S_NO_INTERFACES: return "No interfaces have been registered.";
01126                 case Sylloge.WinAPI.ErrorCodes.RPC_S_CALL_CANCELLED: return "The remote procedure call was canceled.";
01127                 case Sylloge.WinAPI.ErrorCodes.RPC_S_BINDING_INCOMPLETE: return "The binding handle does not contain all required information.";
01128                 case Sylloge.WinAPI.ErrorCodes.RPC_S_COMM_FAILURE: return "A communications failure occurred during a remote procedure call.";
01129                 case Sylloge.WinAPI.ErrorCodes.RPC_S_UNSUPPORTED_AUTHN_LEVEL: return "The requested authentication level is not supported.";
01130                 case Sylloge.WinAPI.ErrorCodes.RPC_S_NO_PRINC_NAME: return "No principal name registered.";
01131                 case Sylloge.WinAPI.ErrorCodes.RPC_S_NOT_RPC_ERROR: return "The error specified is not a valid Windows RPC error code.";
01132                 case Sylloge.WinAPI.ErrorCodes.RPC_S_UUID_LOCAL_ONLY: return "A UUID that is valid only on this computer has been allocated.";
01133                 case Sylloge.WinAPI.ErrorCodes.RPC_S_SEC_PKG_ERROR: return "A security package specific error occurred.";
01134                 case Sylloge.WinAPI.ErrorCodes.RPC_S_NOT_CANCELLED: return "Thread is not canceled.";
01135                 case Sylloge.WinAPI.ErrorCodes.RPC_X_INVALID_ES_ACTION: return "Invalid operation on the encoding/decoding handle.";
01136                 case Sylloge.WinAPI.ErrorCodes.RPC_X_WRONG_ES_VERSION: return "Incompatible version of the serializing package.";
01137                 case Sylloge.WinAPI.ErrorCodes.RPC_X_WRONG_STUB_VERSION: return "Incompatible version of the RPC stub.";
01138                 case Sylloge.WinAPI.ErrorCodes.RPC_X_INVALID_PIPE_OBJECT: return "The RPC pipe object is invalid or corrupted.";
01139                 case Sylloge.WinAPI.ErrorCodes.RPC_X_WRONG_PIPE_ORDER: return "An invalid operation was attempted on an RPC pipe object.";
01140                 case Sylloge.WinAPI.ErrorCodes.RPC_X_WRONG_PIPE_VERSION: return "Unsupported RPC pipe version.";
01141                 case Sylloge.WinAPI.ErrorCodes.RPC_S_COOKIE_AUTH_FAILED: return "HTTP proxy server rejected the connection because the cookie authentication failed.";
01142                 case Sylloge.WinAPI.ErrorCodes.RPC_S_GROUP_MEMBER_NOT_FOUND: return "The group member was not found.";
01143                 case Sylloge.WinAPI.ErrorCodes.EPT_S_CANT_CREATE: return "The endpoint mapper database entry could not be created.";
01144                 case Sylloge.WinAPI.ErrorCodes.RPC_S_INVALID_OBJECT: return "The object universal unique identifier (UUID) is the nil UUID.";
01145                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_TIME: return "The specified time is invalid.";
01146                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_FORM_NAME: return "The specified form name is invalid.";
01147                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_FORM_SIZE: return "The specified form size is invalid.";
01148                 case Sylloge.WinAPI.ErrorCodes.ERROR_ALREADY_WAITING: return "The specified printer handle is already being waited on";
01149                 case Sylloge.WinAPI.ErrorCodes.ERROR_PRINTER_DELETED: return "The specified printer has been deleted.";
01150                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_PRINTER_STATE: return "The state of the printer is invalid.";
01151                 case Sylloge.WinAPI.ErrorCodes.ERROR_PASSWORD_MUST_CHANGE: return "The user's password must be changed before logging on the first time.";
01152                 case Sylloge.WinAPI.ErrorCodes.ERROR_DOMAIN_CONTROLLER_NOT_FOUND: return "Could not find the domain controller for this domain.";
01153                 case Sylloge.WinAPI.ErrorCodes.ERROR_ACCOUNT_LOCKED_OUT: return "The referenced account is currently locked out and may not be logged on to.";
01154                 case Sylloge.WinAPI.ErrorCodes.OR_INVALID_OXID: return "The object exporter specified was not found.";
01155                 case Sylloge.WinAPI.ErrorCodes.OR_INVALID_OID: return "The object specified was not found.";
01156                 case Sylloge.WinAPI.ErrorCodes.OR_INVALID_SET: return "The object resolver set specified was not found.";
01157                 case Sylloge.WinAPI.ErrorCodes.RPC_S_SEND_INCOMPLETE: return "Some data remains to be sent in the request buffer.";
01158                 case Sylloge.WinAPI.ErrorCodes.RPC_S_INVALID_ASYNC_HANDLE: return "Invalid asynchronous remote procedure call handle.";
01159                 case Sylloge.WinAPI.ErrorCodes.RPC_S_INVALID_ASYNC_CALL: return "Invalid asynchronous RPC call handle for this operation.";
01160                 case Sylloge.WinAPI.ErrorCodes.RPC_X_PIPE_CLOSED: return "The RPC pipe object has already been closed.";
01161                 case Sylloge.WinAPI.ErrorCodes.RPC_X_PIPE_DISCIPLINE_ERROR: return "The RPC call completed before all pipes were processed.";
01162                 case Sylloge.WinAPI.ErrorCodes.RPC_X_PIPE_EMPTY: return "No more data is available from the RPC pipe.";
01163                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_SITENAME: return "No site name is available for this machine.";
01164                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANT_ACCESS_FILE: return "The file cannot be accessed by the system.";
01165                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANT_RESOLVE_FILENAME: return "The name of the file cannot be resolved by the system.";
01166                 case Sylloge.WinAPI.ErrorCodes.RPC_S_ENTRY_TYPE_MISMATCH: return "The entry is not of the expected type.";
01167                 case Sylloge.WinAPI.ErrorCodes.RPC_S_NOT_ALL_OBJS_EXPORTED: return "Not all object UUIDs could be exported to the specified entry.";
01168                 case Sylloge.WinAPI.ErrorCodes.RPC_S_INTERFACE_NOT_EXPORTED: return "Interface could not be exported to the specified entry.";
01169                 case Sylloge.WinAPI.ErrorCodes.RPC_S_PROFILE_NOT_ADDED: return "The specified profile entry could not be added.";
01170                 case Sylloge.WinAPI.ErrorCodes.RPC_S_PRF_ELT_NOT_ADDED: return "The specified profile element could not be added.";
01171                 case Sylloge.WinAPI.ErrorCodes.RPC_S_PRF_ELT_NOT_REMOVED: return "The specified profile element could not be removed.";
01172                 case Sylloge.WinAPI.ErrorCodes.RPC_S_GRP_ELT_NOT_ADDED: return "The group element could not be added.";
01173                 case Sylloge.WinAPI.ErrorCodes.RPC_S_GRP_ELT_NOT_REMOVED: return "The group element could not be removed.";
01174                 case Sylloge.WinAPI.ErrorCodes.ERROR_KM_DRIVER_BLOCKED: return "The printer driver is not compatible with a policy enabled on your computer that blocks NT 4.0 drivers.";
01175                 case Sylloge.WinAPI.ErrorCodes.ERROR_CONTEXT_EXPIRED: return "The context has expired and can no longer be used.";
01176                 case Sylloge.WinAPI.ErrorCodes.ERROR_PER_USER_TRUST_QUOTA_EXCEEDED: return "The current user's delegated trust creation quota has been exceeded.";
01177                 case Sylloge.WinAPI.ErrorCodes.ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED: return "The total delegated trust creation quota has been exceeded.";
01178                 case Sylloge.WinAPI.ErrorCodes.ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED: return "The current user's delegated trust deletion quota has been exceeded.";
01179                 case Sylloge.WinAPI.ErrorCodes.ERROR_AUTHENTICATION_FIREWALL_FAILED: return "The machine you are logging onto is protected by an authentication firewall. The specified account is not allowed to authenticate to the machine.";
01180                 case Sylloge.WinAPI.ErrorCodes.ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED: return "Remote connections to the Print Spooler are blocked by a policy set on your machine.";
01181                 case Sylloge.WinAPI.ErrorCodes.ERROR_NTLM_BLOCKED: return "Authentication failed because NTLM authentication has been disabled.";
01182                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_PIXEL_FORMAT: return "The pixel format is invalid.";
01183                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_DRIVER: return "The specified driver is invalid.";
01184                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_WINDOW_STYLE: return "The window style or class attribute is invalid for this operation.";
01185                 case Sylloge.WinAPI.ErrorCodes.ERROR_METAFILE_NOT_SUPPORTED: return "The requested metafile operation is not supported.";
01186                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSFORM_NOT_SUPPORTED: return "The requested transformation operation is not supported.";
01187                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLIPPING_NOT_SUPPORTED: return "The requested clipping operation is not supported.";
01188                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_CMM: return "The specified color management module is invalid.";
01189                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_PROFILE: return "The specified color profile is invalid.";
01190                 case Sylloge.WinAPI.ErrorCodes.ERROR_TAG_NOT_FOUND: return "The specified tag was not found.";
01191                 case Sylloge.WinAPI.ErrorCodes.ERROR_TAG_NOT_PRESENT: return "A required tag is not present.";
01192                 case Sylloge.WinAPI.ErrorCodes.ERROR_DUPLICATE_TAG: return "The specified tag is already present.";
01193                 case Sylloge.WinAPI.ErrorCodes.ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE: return "The specified color profile is not associated with the specified device.";
01194                 case Sylloge.WinAPI.ErrorCodes.ERROR_PROFILE_NOT_FOUND: return "The specified color profile was not found.";
01195                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_COLORSPACE: return "The specified color space is invalid.";
01196                 case Sylloge.WinAPI.ErrorCodes.ERROR_ICM_NOT_ENABLED: return "Image Color Management is not enabled.";
01197                 case Sylloge.WinAPI.ErrorCodes.ERROR_DELETING_ICM_XFORM: return "There was an error while deleting the color transform.";
01198                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_TRANSFORM: return "The specified color transform is invalid.";
01199                 case Sylloge.WinAPI.ErrorCodes.ERROR_COLORSPACE_MISMATCH: return "The specified transform does not match the bitmap's color space.";
01200                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_COLORINDEX: return "The specified named color index is not present in the profile.";
01201                 case Sylloge.WinAPI.ErrorCodes.ERROR_PROFILE_DOES_NOT_MATCH_DEVICE: return "The specified profile is intended for a device of a different type than the specified device.";
01202                 case Sylloge.WinAPI.ErrorCodes.ERROR_CONNECTED_OTHER_PASSWORD: return "The network connection was made successfully, but the user had to be prompted for a password other than the one originally specified.";
01203                 case Sylloge.WinAPI.ErrorCodes.ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT: return "The network connection was made successfully using default credentials.";
01204                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_USERNAME: return "The specified user name is invalid.";
01205                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_CONNECTED: return "This network connection does not exist.";
01206                 case Sylloge.WinAPI.ErrorCodes.ERROR_OPEN_FILES: return "This network connection has files open or requests pending.";
01207                 case Sylloge.WinAPI.ErrorCodes.ERROR_ACTIVE_CONNECTIONS: return "Active connections still exist.";
01208                 case Sylloge.WinAPI.ErrorCodes.ERROR_DEVICE_IN_USE: return "The device is in use by an active process and cannot be disconnected.";
01209                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNKNOWN_PRINT_MONITOR: return "The specified print monitor is unknown.";
01210                 case Sylloge.WinAPI.ErrorCodes.ERROR_PRINTER_DRIVER_IN_USE: return "The specified printer driver is currently in use.";
01211                 case Sylloge.WinAPI.ErrorCodes.ERROR_SPOOL_FILE_NOT_FOUND: return "The spool file was not found.";
01212                 case Sylloge.WinAPI.ErrorCodes.ERROR_SPL_NO_STARTDOC: return "A StartDocPrinter call was not issued.";
01213                 case Sylloge.WinAPI.ErrorCodes.ERROR_SPL_NO_ADDJOB: return "An AddJob call was not issued.";
01214                 case Sylloge.WinAPI.ErrorCodes.ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED: return "The specified print processor has already been installed.";
01215                 case Sylloge.WinAPI.ErrorCodes.ERROR_PRINT_MONITOR_ALREADY_INSTALLED: return "The specified print monitor has already been installed.";
01216                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_PRINT_MONITOR: return "The specified print monitor does not have the required functions.";
01217                 case Sylloge.WinAPI.ErrorCodes.ERROR_PRINT_MONITOR_IN_USE: return "The specified print monitor is currently in use.";
01218                 case Sylloge.WinAPI.ErrorCodes.ERROR_PRINTER_HAS_JOBS_QUEUED: return "The requested operation is not allowed when there are jobs queued to the printer.";
01219                 case Sylloge.WinAPI.ErrorCodes.ERROR_SUCCESS_REBOOT_REQUIRED: return "The requested operation is successful. Changes will not be effective until the system is rebooted.";
01220                 case Sylloge.WinAPI.ErrorCodes.ERROR_SUCCESS_RESTART_REQUIRED: return "The requested operation is successful. Changes will not be effective until the service is restarted.";
01221                 case Sylloge.WinAPI.ErrorCodes.ERROR_PRINTER_NOT_FOUND: return "No printers were found.";
01222                 case Sylloge.WinAPI.ErrorCodes.ERROR_PRINTER_DRIVER_WARNED: return "The printer driver is known to be unreliable.";
01223                 case Sylloge.WinAPI.ErrorCodes.ERROR_PRINTER_DRIVER_BLOCKED: return "The printer driver is known to harm the system.";
01224                 case Sylloge.WinAPI.ErrorCodes.ERROR_PRINTER_DRIVER_PACKAGE_IN_USE: return "The specified printer driver package is currently in use.";
01225                 case Sylloge.WinAPI.ErrorCodes.ERROR_CORE_DRIVER_PACKAGE_NOT_FOUND: return "Unable to find a core driver package that is required by the printer driver package.";
01226                 case Sylloge.WinAPI.ErrorCodes.ERROR_FAIL_REBOOT_REQUIRED: return "The requested operation failed. A system reboot is required to roll back changes made.";
01227                 case Sylloge.WinAPI.ErrorCodes.ERROR_FAIL_REBOOT_INITIATED: return "The requested operation failed. A system reboot has been initiated to roll back changes made.";
01228                 case Sylloge.WinAPI.ErrorCodes.ERROR_PRINTER_DRIVER_DOWNLOAD_NEEDED: return "The specified printer driver was not found on the system and needs to be downloaded.";
01229                 case Sylloge.WinAPI.ErrorCodes.ERROR_PRINT_JOB_RESTART_REQUIRED: return "The requested print job has failed to print. A print system update requires the job to be resubmitted.";
01230                 case Sylloge.WinAPI.ErrorCodes.ERROR_IO_REISSUE_AS_CACHED: return "Reissue the given operation as a cached I/O operation.";
01231                 case Sylloge.WinAPI.ErrorCodes.ERROR_WINS_INTERNAL: return "WINS encountered an error while processing the command.";
01232                 case Sylloge.WinAPI.ErrorCodes.ERROR_CAN_NOT_DEL_LOCAL_WINS: return "The local WINS cannot be deleted.";
01233                 case Sylloge.WinAPI.ErrorCodes.ERROR_STATIC_INIT: return "The importation from the file failed.";
01234                 case Sylloge.WinAPI.ErrorCodes.ERROR_INC_BACKUP: return "The backup failed. Was a full backup done before?";
01235                 case Sylloge.WinAPI.ErrorCodes.ERROR_FULL_BACKUP: return "The backup failed. Check the directory to which you are backing the database.";
01236                 case Sylloge.WinAPI.ErrorCodes.ERROR_REC_NON_EXISTENT: return "The name does not exist in the WINS database.";
01237                 case Sylloge.WinAPI.ErrorCodes.ERROR_RPL_NOT_ALLOWED: return "Replication with a nonconfigured partner is not allowed.";
01238                 case Sylloge.WinAPI.ErrorCodes.ERROR_DHCP_ADDRESS_CONFLICT: return "The DHCP client has obtained an IP address that is already in use on the network. The local interface will be disabled until the DHCP client can obtain a new address.";
01239                 case Sylloge.WinAPI.ErrorCodes.ERROR_WMI_GUID_NOT_FOUND: return "The GUID passed was not recognized as valid by a WMI data provider.";
01240                 case Sylloge.WinAPI.ErrorCodes.ERROR_WMI_INSTANCE_NOT_FOUND: return "The instance name passed was not recognized as valid by a WMI data provider.";
01241                 case Sylloge.WinAPI.ErrorCodes.ERROR_WMI_ITEMID_NOT_FOUND: return "The data item ID passed was not recognized as valid by a WMI data provider.";
01242                 case Sylloge.WinAPI.ErrorCodes.ERROR_WMI_TRY_AGAIN: return "The WMI request could not be completed and should be retried.";
01243                 case Sylloge.WinAPI.ErrorCodes.ERROR_WMI_DP_NOT_FOUND: return "The WMI data provider could not be located.";
01244                 case Sylloge.WinAPI.ErrorCodes.ERROR_WMI_UNRESOLVED_INSTANCE_REF: return "The WMI data provider references an instance set that has not been registered.";
01245                 case Sylloge.WinAPI.ErrorCodes.ERROR_WMI_ALREADY_ENABLED: return "The WMI data block or event notification has already been enabled.";
01246                 case Sylloge.WinAPI.ErrorCodes.ERROR_WMI_GUID_DISCONNECTED: return "The WMI data block is no longer available.";
01247                 case Sylloge.WinAPI.ErrorCodes.ERROR_WMI_SERVER_UNAVAILABLE: return "The WMI data service is not available.";
01248                 case Sylloge.WinAPI.ErrorCodes.ERROR_WMI_DP_FAILED: return "The WMI data provider failed to carry out the request.";
01249                 case Sylloge.WinAPI.ErrorCodes.ERROR_WMI_INVALID_MOF: return "The WMI MOF information is not valid.";
01250                 case Sylloge.WinAPI.ErrorCodes.ERROR_WMI_INVALID_REGINFO: return "The WMI registration information is not valid.";
01251                 case Sylloge.WinAPI.ErrorCodes.ERROR_WMI_ALREADY_DISABLED: return "The WMI data block or event notification has already been disabled.";
01252                 case Sylloge.WinAPI.ErrorCodes.ERROR_WMI_READ_ONLY: return "The WMI data item or data block is read only.";
01253                 case Sylloge.WinAPI.ErrorCodes.ERROR_WMI_SET_FAILURE: return "The WMI data item or data block could not be changed.";
01254                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_MEDIA: return "The media identifier does not represent a valid medium.";
01255                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_LIBRARY: return "The library identifier does not represent a valid library.";
01256                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_MEDIA_POOL: return "The media pool identifier does not represent a valid media pool.";
01257                 case Sylloge.WinAPI.ErrorCodes.ERROR_DRIVE_MEDIA_MISMATCH: return "The drive and medium are not compatible or exist in different libraries.";
01258                 case Sylloge.WinAPI.ErrorCodes.ERROR_MEDIA_OFFLINE: return "The medium currently exists in an offline library and must be online to perform this operation.";
01259                 case Sylloge.WinAPI.ErrorCodes.ERROR_LIBRARY_OFFLINE: return "The operation cannot be performed on an offline library.";
01260                 case Sylloge.WinAPI.ErrorCodes.ERROR_EMPTY: return "The library, drive, or media pool is empty.";
01261                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_EMPTY: return "The library, drive, or media pool must be empty to perform this operation.";
01262                 case Sylloge.WinAPI.ErrorCodes.ERROR_MEDIA_UNAVAILABLE: return "No media is currently available in this media pool or library.";
01263                 case Sylloge.WinAPI.ErrorCodes.ERROR_RESOURCE_DISABLED: return "A resource required for this operation is disabled.";
01264                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_CLEANER: return "The media identifier does not represent a valid cleaner.";
01265                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNABLE_TO_CLEAN: return "The drive cannot be cleaned or does not support cleaning.";
01266                 case Sylloge.WinAPI.ErrorCodes.ERROR_OBJECT_NOT_FOUND: return "The object identifier does not represent a valid object.";
01267                 case Sylloge.WinAPI.ErrorCodes.ERROR_DATABASE_FAILURE: return "Unable to read from or write to the database.";
01268                 case Sylloge.WinAPI.ErrorCodes.ERROR_DATABASE_FULL: return "The database is full.";
01269                 case Sylloge.WinAPI.ErrorCodes.ERROR_MEDIA_INCOMPATIBLE: return "The medium is not compatible with the device or media pool.";
01270                 case Sylloge.WinAPI.ErrorCodes.ERROR_RESOURCE_NOT_PRESENT: return "The resource required for this operation does not exist.";
01271                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_OPERATION: return "The operation identifier is not valid.";
01272                 case Sylloge.WinAPI.ErrorCodes.ERROR_MEDIA_NOT_AVAILABLE: return "The media is not mounted or ready for use.";
01273                 case Sylloge.WinAPI.ErrorCodes.ERROR_DEVICE_NOT_AVAILABLE: return "The device is not ready for use.";
01274                 case Sylloge.WinAPI.ErrorCodes.ERROR_REQUEST_REFUSED: return "The operator or administrator has refused the request.";
01275                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_DRIVE_OBJECT: return "The drive identifier does not represent a valid drive.";
01276                 case Sylloge.WinAPI.ErrorCodes.ERROR_LIBRARY_FULL: return "Library is full. No slot is available for use.";
01277                 case Sylloge.WinAPI.ErrorCodes.ERROR_MEDIUM_NOT_ACCESSIBLE: return "The transport cannot access the medium.";
01278                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNABLE_TO_LOAD_MEDIUM: return "Unable to load the medium into the drive.";
01279                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNABLE_TO_INVENTORY_DRIVE: return "Unable to retrieve the drive status.";
01280                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNABLE_TO_INVENTORY_SLOT: return "Unable to retrieve the slot status.";
01281                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNABLE_TO_INVENTORY_TRANSPORT: return "Unable to retrieve status about the transport.";
01282                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSPORT_FULL: return "Cannot use the transport because it is already in use.";
01283                 case Sylloge.WinAPI.ErrorCodes.ERROR_CONTROLLING_IEPORT: return "Unable to open or close the inject/eject port.";
01284                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA: return "Unable to eject the medium because it is in a drive.";
01285                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLEANER_SLOT_SET: return "A cleaner slot is already reserved.";
01286                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLEANER_SLOT_NOT_SET: return "A cleaner slot is not reserved.";
01287                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLEANER_CARTRIDGE_SPENT: return "The cleaner cartridge has performed the maximum number of drive cleanings.";
01288                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNEXPECTED_OMID: return "Unexpected on-medium identifier.";
01289                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANT_DELETE_LAST_ITEM: return "The last remaining item in this group or resource cannot be deleted.";
01290                 case Sylloge.WinAPI.ErrorCodes.ERROR_MESSAGE_EXCEEDS_MAX_SIZE: return "The message provided exceeds the maximum size allowed for this parameter.";
01291                 case Sylloge.WinAPI.ErrorCodes.ERROR_VOLUME_CONTAINS_SYS_FILES: return "The volume contains system or paging files.";
01292                 case Sylloge.WinAPI.ErrorCodes.ERROR_INDIGENOUS_TYPE: return "The media type cannot be removed from this library since at least one drive in the library reports it can support this media type.";
01293                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_SUPPORTING_DRIVES: return "This offline media cannot be mounted on this system since no enabled drives are present which can be used.";
01294                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLEANER_CARTRIDGE_INSTALLED: return "A cleaner cartridge is present in the tape library.";
01295                 case Sylloge.WinAPI.ErrorCodes.ERROR_IEPORT_FULL: return "Cannot use the inject/eject port because it is not empty.";
01296                 case Sylloge.WinAPI.ErrorCodes.ERROR_FILE_OFFLINE: return "The file is currently not available for use on this computer.";
01297                 case Sylloge.WinAPI.ErrorCodes.ERROR_REMOTE_STORAGE_NOT_ACTIVE: return "The remote storage service is not operational at this time.";
01298                 case Sylloge.WinAPI.ErrorCodes.ERROR_REMOTE_STORAGE_MEDIA_ERROR: return "The remote storage service encountered a media error.";
01299                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_A_REPARSE_POINT: return "The file or directory is not a reparse point.";
01300                 case Sylloge.WinAPI.ErrorCodes.ERROR_REPARSE_ATTRIBUTE_CONFLICT: return "The reparse point attribute cannot be set because it conflicts with an existing attribute.";
01301                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_REPARSE_DATA: return "The data present in the reparse point buffer is invalid.";
01302                 case Sylloge.WinAPI.ErrorCodes.ERROR_REPARSE_TAG_INVALID: return "The tag present in the reparse point buffer is invalid.";
01303                 case Sylloge.WinAPI.ErrorCodes.ERROR_REPARSE_TAG_MISMATCH: return "There is a mismatch between the tag specified in the request and the tag present in the reparse point.";
01304                 case Sylloge.WinAPI.ErrorCodes.ERROR_VOLUME_NOT_SIS_ENABLED: return "Single Instance Storage is not available on this volume.";
01305                 case Sylloge.WinAPI.ErrorCodes.ERROR_DEPENDENT_RESOURCE_EXISTS: return "The operation cannot be completed because other resources are dependent on this resource.";
01306                 case Sylloge.WinAPI.ErrorCodes.ERROR_DEPENDENCY_NOT_FOUND: return "The cluster resource dependency cannot be found.";
01307                 case Sylloge.WinAPI.ErrorCodes.ERROR_DEPENDENCY_ALREADY_EXISTS: return "The cluster resource cannot be made dependent on the specified resource because it is already dependent.";
01308                 case Sylloge.WinAPI.ErrorCodes.ERROR_RESOURCE_NOT_ONLINE: return "The cluster resource is not online.";
01309                 case Sylloge.WinAPI.ErrorCodes.ERROR_HOST_NODE_NOT_AVAILABLE: return "A cluster node is not available for this operation.";
01310                 case Sylloge.WinAPI.ErrorCodes.ERROR_RESOURCE_NOT_AVAILABLE: return "The cluster resource is not available.";
01311                 case Sylloge.WinAPI.ErrorCodes.ERROR_RESOURCE_NOT_FOUND: return "The cluster resource could not be found.";
01312                 case Sylloge.WinAPI.ErrorCodes.ERROR_SHUTDOWN_CLUSTER: return "The cluster is being shut down.";
01313                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANT_EVICT_ACTIVE_NODE: return "A cluster node cannot be evicted from the cluster unless the node is down or it is the last node.";
01314                 case Sylloge.WinAPI.ErrorCodes.ERROR_OBJECT_ALREADY_EXISTS: return "The object already exists.";
01315                 case Sylloge.WinAPI.ErrorCodes.ERROR_OBJECT_IN_LIST: return "The object is already in the list.";
01316                 case Sylloge.WinAPI.ErrorCodes.ERROR_GROUP_NOT_AVAILABLE: return "The cluster group is not available for any new requests.";
01317                 case Sylloge.WinAPI.ErrorCodes.ERROR_GROUP_NOT_FOUND: return "The cluster group could not be found.";
01318                 case Sylloge.WinAPI.ErrorCodes.ERROR_GROUP_NOT_ONLINE: return "The operation could not be completed because the cluster group is not online.";
01319                 case Sylloge.WinAPI.ErrorCodes.ERROR_HOST_NODE_NOT_RESOURCE_OWNER: return "The operation failed because either the specified cluster node is not the owner of the resource, or the node is not a possible owner of the resource.";
01320                 case Sylloge.WinAPI.ErrorCodes.ERROR_HOST_NODE_NOT_GROUP_OWNER: return "The operation failed because either the specified cluster node is not the owner of the group, or the node is not a possible owner of the group.";
01321                 case Sylloge.WinAPI.ErrorCodes.ERROR_RESMON_CREATE_FAILED: return "The cluster resource could not be created in the specified resource monitor.";
01322                 case Sylloge.WinAPI.ErrorCodes.ERROR_RESMON_ONLINE_FAILED: return "The cluster resource could not be brought online by the resource monitor.";
01323                 case Sylloge.WinAPI.ErrorCodes.ERROR_RESOURCE_ONLINE: return "The operation could not be completed because the cluster resource is online.";
01324                 case Sylloge.WinAPI.ErrorCodes.ERROR_QUORUM_RESOURCE: return "The cluster resource could not be deleted or brought offline because it is the quorum resource.";
01325                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_QUORUM_CAPABLE: return "The cluster could not make the specified resource a quorum resource because it is not capable of being a quorum resource.";
01326                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_SHUTTING_DOWN: return "The cluster software is shutting down.";
01327                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_STATE: return "The group or resource is not in the correct state to perform the requested operation.";
01328                 case Sylloge.WinAPI.ErrorCodes.ERROR_RESOURCE_PROPERTIES_STORED: return "The properties were stored but not all changes will take effect until the next time the resource is brought online.";
01329                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_QUORUM_CLASS: return "The cluster could not make the specified resource a quorum resource because it does not belong to a shared storage class.";
01330                 case Sylloge.WinAPI.ErrorCodes.ERROR_CORE_RESOURCE: return "The cluster resource could not be deleted since it is a core resource.";
01331                 case Sylloge.WinAPI.ErrorCodes.ERROR_QUORUM_RESOURCE_ONLINE_FAILED: return "The quorum resource failed to come online.";
01332                 case Sylloge.WinAPI.ErrorCodes.ERROR_QUORUMLOG_OPEN_FAILED: return "The quorum log could not be created or mounted successfully.";
01333                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTERLOG_CORRUPT: return "The cluster log is corrupt.";
01334                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE: return "The record could not be written to the cluster log since it exceeds the maximum size.";
01335                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE: return "The cluster log exceeds its maximum size.";
01336                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND: return "No checkpoint record was found in the cluster log.";
01337                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE: return "The minimum required disk space needed for logging is not available.";
01338                 case Sylloge.WinAPI.ErrorCodes.ERROR_QUORUM_OWNER_ALIVE: return "The cluster node failed to take control of the quorum resource because the resource is owned by another active node.";
01339                 case Sylloge.WinAPI.ErrorCodes.ERROR_NETWORK_NOT_AVAILABLE: return "A cluster network is not available for this operation.";
01340                 case Sylloge.WinAPI.ErrorCodes.ERROR_NODE_NOT_AVAILABLE: return "A cluster node is not available for this operation.";
01341                 case Sylloge.WinAPI.ErrorCodes.ERROR_ALL_NODES_NOT_AVAILABLE: return "All cluster nodes must be running to perform this operation.";
01342                 case Sylloge.WinAPI.ErrorCodes.ERROR_RESOURCE_FAILED: return "A cluster resource failed.";
01343                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_INVALID_NODE: return "The cluster node is not valid.";
01344                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NODE_EXISTS: return "The cluster node already exists.";
01345                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_JOIN_IN_PROGRESS: return "A node is in the process of joining the cluster.";
01346                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NODE_NOT_FOUND: return "The cluster node was not found.";
01347                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND: return "The cluster local node information was not found.";
01348                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NETWORK_EXISTS: return "The cluster network already exists.";
01349                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NETWORK_NOT_FOUND: return "The cluster network was not found.";
01350                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NETINTERFACE_EXISTS: return "The cluster network interface already exists.";
01351                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NETINTERFACE_NOT_FOUND: return "The cluster network interface was not found.";
01352                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_INVALID_REQUEST: return "The cluster request is not valid for this object.";
01353                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_INVALID_NETWORK_PROVIDER: return "The cluster network provider is not valid.";
01354                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NODE_DOWN: return "The cluster node is down.";
01355                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NODE_UNREACHABLE: return "The cluster node is not reachable.";
01356                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NODE_NOT_MEMBER: return "The cluster node is not a member of the cluster.";
01357                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS: return "A cluster join operation is not in progress.";
01358                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_INVALID_NETWORK: return "The cluster network is not valid.";
01359                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NODE_UP: return "The cluster node is up.";
01360                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_IPADDR_IN_USE: return "The cluster IP address is already in use.";
01361                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NODE_NOT_PAUSED: return "The cluster node is not paused.";
01362                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NO_SECURITY_CONTEXT: return "No cluster security context is available.";
01363                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NETWORK_NOT_INTERNAL: return "The cluster network is not configured for internal cluster communication.";
01364                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NODE_ALREADY_UP: return "The cluster node is already up.";
01365                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NODE_ALREADY_DOWN: return "The cluster node is already down.";
01366                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NETWORK_ALREADY_ONLINE: return "The cluster network is already online.";
01367                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE: return "The cluster network is already offline.";
01368                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NODE_ALREADY_MEMBER: return "The cluster node is already a member of the cluster.";
01369                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_LAST_INTERNAL_NETWORK: return "The cluster network is the only one configured for internal cluster communication between two or more active cluster nodes. The internal communication capability cannot be removed from the network.";
01370                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS: return "One or more cluster resources depend on the network to provide service to clients. The client access capability cannot be removed from the network.";
01371                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_OPERATION_ON_QUORUM: return "This operation cannot be performed on the cluster resource as it the quorum resource. You may not bring the quorum resource offline or modify its possible owners list.";
01372                 case Sylloge.WinAPI.ErrorCodes.ERROR_DEPENDENCY_NOT_ALLOWED: return "The cluster quorum resource is not allowed to have any dependencies.";
01373                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NODE_PAUSED: return "The cluster node is paused.";
01374                 case Sylloge.WinAPI.ErrorCodes.ERROR_NODE_CANT_HOST_RESOURCE: return "The cluster resource cannot be brought online. The owner node cannot run this resource.";
01375                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NODE_NOT_READY: return "The cluster node is not ready to perform the requested operation.";
01376                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NODE_SHUTTING_DOWN: return "The cluster node is shutting down.";
01377                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_JOIN_ABORTED: return "The cluster join operation was aborted.";
01378                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_INCOMPATIBLE_VERSIONS: return "The cluster join operation failed due to incompatible software versions between the joining node and its sponsor.";
01379                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED: return "This resource cannot be created because the cluster has reached the limit on the number of resources it can monitor.";
01380                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED: return "The system configuration changed during the cluster join or form operation. The join or form operation was aborted.";
01381                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND: return "The specified resource type was not found.";
01382                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED: return "The specified node does not support a resource of this type. This may be due to version inconsistencies or due to the absence of the resource DLL on this node.";
01383                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_RESNAME_NOT_FOUND: return "The specified resource name is not supported by this resource DLL. This may be due to a bad (or changed) name supplied to the resource DLL.";
01384                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED: return "No authentication package could be registered with the RPC server.";
01385                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST: return "You cannot bring the group online because the owner of the group is not in the preferred list for the group. To change the owner node for the group, move the group.";
01386                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_DATABASE_SEQMISMATCH: return "The join operation failed because the cluster database sequence number has changed or is incompatible with the locker node. This may happen during a join operation if the cluster database was changing during the join.";
01387                 case Sylloge.WinAPI.ErrorCodes.ERROR_RESMON_INVALID_STATE: return "The resource monitor will not allow the fail operation to be performed while the resource is in its current state. This may happen if the resource is in a pending state.";
01388                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_GUM_NOT_LOCKER: return "A non locker code got a request to reserve the lock for making global updates.";
01389                 case Sylloge.WinAPI.ErrorCodes.ERROR_QUORUM_DISK_NOT_FOUND: return "The quorum disk could not be located by the cluster service.";
01390                 case Sylloge.WinAPI.ErrorCodes.ERROR_DATABASE_BACKUP_CORRUPT: return "The backed up cluster database is possibly corrupt.";
01391                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT: return "A DFS root already exists in this cluster node.";
01392                 case Sylloge.WinAPI.ErrorCodes.ERROR_RESOURCE_PROPERTY_UNCHANGEABLE: return "An attempt to modify a resource property failed because it conflicts with another existing property.";
01393                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE: return "An operation was attempted that is incompatible with the current membership state of the node.";
01394                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_QUORUMLOG_NOT_FOUND: return "The quorum resource does not contain the quorum log.";
01395                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_MEMBERSHIP_HALT: return "The membership engine requested shutdown of the cluster service on this node.";
01396                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_INSTANCE_ID_MISMATCH: return "The join operation failed because the cluster instance ID of the joining node does not match the cluster instance ID of the sponsor node.";
01397                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP: return "A matching cluster network for the specified IP address could not be found.";
01398                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH: return "The actual data type of the property did not match the expected data type of the property.";
01399                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP: return "The cluster node was evicted from the cluster successfully, but the node was not cleaned up. To determine what cleanup steps failed and how to recover, see the Failover Clustering application event log using Event Viewer.";
01400                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_PARAMETER_MISMATCH: return "Two or more parameter values specified for a resource's properties are in conflict.";
01401                 case Sylloge.WinAPI.ErrorCodes.ERROR_NODE_CANNOT_BE_CLUSTERED: return "This computer cannot be made a member of a cluster.";
01402                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_WRONG_OS_VERSION: return "This computer cannot be made a member of a cluster because it does not have the correct version of Windows installed.";
01403                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME: return "A cluster cannot be created with the specified cluster name because that cluster name is already in use. Specify a different name for the cluster.";
01404                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSCFG_ALREADY_COMMITTED: return "The cluster configuration action has already been committed.";
01405                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSCFG_ROLLBACK_FAILED: return "The cluster configuration action could not be rolled back.";
01406                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT: return "The drive letter assigned to a system disk on one node conflicted with the drive letter assigned to a disk on another node.";
01407                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_OLD_VERSION: return "One or more nodes in the cluster are running a version of Windows that does not support this operation.";
01408                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME: return "The name of the corresponding computer account doesn't match the Network Name for this resource.";
01409                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NO_NET_ADAPTERS: return "No network adapters are available.";
01410                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_POISONED: return "The cluster node has been poisoned.";
01411                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_GROUP_MOVING: return "The group is unable to accept the request since it is moving to another node.";
01412                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_RESOURCE_TYPE_BUSY: return "The resource type cannot accept the request since is too busy performing another operation.";
01413                 case Sylloge.WinAPI.ErrorCodes.ERROR_RESOURCE_CALL_TIMED_OUT: return "The call to the cluster resource DLL timed out.";
01414                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_CLUSTER_IPV6_ADDRESS: return "The address is not valid for an IPv6 Address resource. A global IPv6 address is required, and it must match a cluster network. Compatibility addresses are not permitted.";
01415                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_INTERNAL_INVALID_FUNCTION: return "An internal cluster error occurred. A call to an invalid function was attempted.";
01416                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_PARAMETER_OUT_OF_BOUNDS: return "A parameter value is out of acceptable range.";
01417                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_PARTIAL_SEND: return "A network error occurred while sending data to another node in the cluster. The number of bytes transmitted was less than required.";
01418                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_REGISTRY_INVALID_FUNCTION: return "An invalid cluster registry operation was attempted.";
01419                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_INVALID_STRING_TERMINATION: return "An input string of characters is not properly terminated.";
01420                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_INVALID_STRING_FORMAT: return "An input string of characters is not in a valid format for the data it represents.";
01421                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_DATABASE_TRANSACTION_IN_PROGRESS: return "An internal cluster error occurred. A cluster database transaction was attempted while a transaction was already in progress.";
01422                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_DATABASE_TRANSACTION_NOT_IN_PROGRESS: return "An internal cluster error occurred. There was an attempt to commit a cluster database transaction while no transaction was in progress.";
01423                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NULL_DATA: return "An internal cluster error occurred. Data was not properly initialized.";
01424                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_PARTIAL_READ: return "An error occurred while reading from a stream of data. An unexpected number of bytes was returned.";
01425                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_PARTIAL_WRITE: return "An error occurred while writing to a stream of data. The required number of bytes could not be written.";
01426                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_CANT_DESERIALIZE_DATA: return "An error occurred while deserializing a stream of cluster data.";
01427                 case Sylloge.WinAPI.ErrorCodes.ERROR_DEPENDENT_RESOURCE_PROPERTY_CONFLICT: return "One or more property values for this resource are in conflict with one or more property values associated with its dependent resource(s).";
01428                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NO_QUORUM: return "An quorum of cluster nodes was not present to form a cluster.";
01429                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_INVALID_IPV6_NETWORK: return "The cluster network is not valid for an IPv6 Address resource, or it does not match the configured address.";
01430                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_INVALID_IPV6_TUNNEL_NETWORK: return "The cluster network is not valid for an IPv6 Tunnel resource. Check the configuration of the IP Address resource on which the IPv6 Tunnel resource depends.";
01431                 case Sylloge.WinAPI.ErrorCodes.ERROR_QUORUM_NOT_ALLOWED_IN_THIS_GROUP: return "Quorum resource cannot reside in the Available Storage group.";
01432                 case Sylloge.WinAPI.ErrorCodes.ERROR_DEPENDENCY_TREE_TOO_COMPLEX: return "The dependencies for this resource are nested too deeply.";
01433                 case Sylloge.WinAPI.ErrorCodes.ERROR_EXCEPTION_IN_RESOURCE_CALL: return "The call into the resource DLL raised an unhandled exception.";
01434                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_RHS_FAILED_INITIALIZATION: return "The RHS process failed to initialize.";
01435                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NOT_INSTALLED: return "The Failover Clustering feature is not installed on this node.";
01436                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_RESOURCES_MUST_BE_ONLINE_ON_THE_SAME_NODE: return "The resources must be online on the same node for this operation.";
01437                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_MAX_NODES_IN_CLUSTER: return "A new node cannot be added since this cluster is already at its maximum number of nodes.";
01438                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_TOO_MANY_NODES: return "This cluster cannot be created since the specified number of nodes exceeds the maximum allowed limit.";
01439                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_OBJECT_ALREADY_USED: return "An attempt to use the specified cluster name failed because an enabled computer object with the given name already exists in the domain.";
01440                 case Sylloge.WinAPI.ErrorCodes.ERROR_NONCORE_GROUPS_FOUND: return "This cluster cannot be destroyed. It has non-core application groups which must be deleted before the cluster can be destroyed.";
01441                 case Sylloge.WinAPI.ErrorCodes.ERROR_FILE_SHARE_RESOURCE_CONFLICT: return "File share associated with file share witness resource cannot be hosted by this cluster or any of its nodes.";
01442                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_EVICT_INVALID_REQUEST: return "Eviction of this node is invalid at this time. Due to quorum requirements node eviction will result in cluster shutdown. If it is the last node in the cluster, destroy cluster command should be used.";
01443                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_SINGLETON_RESOURCE: return "Only one instance of this resource type is allowed in the cluster.";
01444                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_GROUP_SINGLETON_RESOURCE: return "Only one instance of this resource type is allowed per resource group.";
01445                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_RESOURCE_PROVIDER_FAILED: return "The resource failed to come online due to the failure of one or more provider resources.";
01446                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_RESOURCE_CONFIGURATION_ERROR: return "The resource has indicated that it cannot come online on any node.";
01447                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_GROUP_BUSY: return "The current operation cannot be performed on this group at this time.";
01448                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_NOT_SHARED_VOLUME: return "The directory or file is not located on a cluster shared volume.";
01449                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_INVALID_SECURITY_DESCRIPTOR: return "The Security Descriptor must explicitly grant full control to the Builtin Administrators group.";
01450                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_SHARED_VOLUMES_IN_USE: return "There is one or more shared volumes resources configured in the cluster. Those resources needs to be moved to available storage in order for operation to succeed.";
01451                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_USE_SHARED_VOLUMES_API: return "This group or resource cannot be directly manipulated. Use shared volume APIs to perform desired operation.";
01452                 case Sylloge.WinAPI.ErrorCodes.ERROR_CLUSTER_BACKUP_IN_PROGRESS: return "Back up is in progress. Please wait for backup completion before trying this operation again.";
01453                 case Sylloge.WinAPI.ErrorCodes.ERROR_ENCRYPTION_FAILED: return "The specified file could not be encrypted.";
01454                 case Sylloge.WinAPI.ErrorCodes.ERROR_DECRYPTION_FAILED: return "The specified file could not be decrypted.";
01455                 case Sylloge.WinAPI.ErrorCodes.ERROR_FILE_ENCRYPTED: return "The specified file is encrypted and the user does not have the ability to decrypt it.";
01456                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_RECOVERY_POLICY: return "There is no valid encryption recovery policy configured for this system.";
01457                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_EFS: return "The required encryption driver is not loaded for this system.";
01458                 case Sylloge.WinAPI.ErrorCodes.ERROR_WRONG_EFS: return "The file was encrypted with a different encryption driver than is currently loaded.";
01459                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_USER_KEYS: return "There are no EFS keys defined for the user.";
01460                 case Sylloge.WinAPI.ErrorCodes.ERROR_FILE_NOT_ENCRYPTED: return "The specified file is not encrypted.";
01461                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_EXPORT_FORMAT: return "The specified file is not in the defined EFS export format.";
01462                 case Sylloge.WinAPI.ErrorCodes.ERROR_FILE_READ_ONLY: return "The specified file is read only.";
01463                 case Sylloge.WinAPI.ErrorCodes.ERROR_DIR_EFS_DISALLOWED: return "The directory has been disabled for encryption.";
01464                 case Sylloge.WinAPI.ErrorCodes.ERROR_EFS_SERVER_NOT_TRUSTED: return "The server is not trusted for remote encryption operation.";
01465                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_RECOVERY_POLICY: return "Recovery policy configured for this system contains invalid recovery certificate.";
01466                 case Sylloge.WinAPI.ErrorCodes.ERROR_EFS_ALG_BLOB_TOO_BIG: return "The encryption algorithm used on the source file needs a bigger key buffer than the one on the destination file.";
01467                 case Sylloge.WinAPI.ErrorCodes.ERROR_VOLUME_NOT_SUPPORT_EFS: return "The disk partition does not support file encryption.";
01468                 case Sylloge.WinAPI.ErrorCodes.ERROR_EFS_DISABLED: return "This machine is disabled for file encryption.";
01469                 case Sylloge.WinAPI.ErrorCodes.ERROR_EFS_VERSION_NOT_SUPPORT: return "A newer system is required to decrypt this encrypted file.";
01470                 case Sylloge.WinAPI.ErrorCodes.ERROR_CS_ENCRYPTION_INVALID_SERVER_RESPONSE: return "The remote server sent an invalid response for a file being opened with Client Side Encryption.";
01471                 case Sylloge.WinAPI.ErrorCodes.ERROR_CS_ENCRYPTION_UNSUPPORTED_SERVER: return "Client Side Encryption is not supported by the remote server even though it claims to support it.";
01472                 case Sylloge.WinAPI.ErrorCodes.ERROR_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE: return "File is encrypted and should be opened in Client Side Encryption mode.";
01473                 case Sylloge.WinAPI.ErrorCodes.ERROR_CS_ENCRYPTION_NEW_ENCRYPTED_FILE: return "A new encrypted file is being created and a $EFS needs to be provided.";
01474                 case Sylloge.WinAPI.ErrorCodes.ERROR_CS_ENCRYPTION_FILE_NOT_CSE: return "The SMB client requested a CSE FSCTL on a non-CSE file.";
01475                 case Sylloge.WinAPI.ErrorCodes.ERROR_ENCRYPTION_POLICY_DENIES_OPERATION: return "The requested operation was blocked by policy. For more information, contact your system administrator.";
01476                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_BROWSER_SERVERS_FOUND: return "The list of servers for this workgroup is not currently available";
01477                 case Sylloge.WinAPI.ErrorCodes.SCHED_E_SERVICE_NOT_LOCALSYSTEM: return "The Task Scheduler service must be configured to run in the System account to function properly. Individual tasks may be configured to run in other accounts.";
01478                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_SECTOR_INVALID: return "Log service encountered an invalid log sector.";
01479                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_SECTOR_PARITY_INVALID: return "Log service encountered a log sector with invalid block parity.";
01480                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_SECTOR_REMAPPED: return "Log service encountered a remapped log sector.";
01481                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_BLOCK_INCOMPLETE: return "Log service encountered a partial or incomplete log block.";
01482                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_INVALID_RANGE: return "Log service encountered an attempt access data outside the active log range.";
01483                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_BLOCKS_EXHAUSTED: return "Log service user marshalling buffers are exhausted.";
01484                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_READ_CONTEXT_INVALID: return "Log service encountered an attempt read from a marshalling area with an invalid read context.";
01485                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_RESTART_INVALID: return "Log service encountered an invalid log restart area.";
01486                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_BLOCK_VERSION: return "Log service encountered an invalid log block version.";
01487                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_BLOCK_INVALID: return "Log service encountered an invalid log block.";
01488                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_READ_MODE_INVALID: return "Log service encountered an attempt to read the log with an invalid read mode.";
01489                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_NO_RESTART: return "Log service encountered a log stream with no restart area.";
01490                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_METADATA_CORRUPT: return "Log service encountered a corrupted metadata file.";
01491                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_METADATA_INVALID: return "Log service encountered a metadata file that could not be created by the log file system.";
01492                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_METADATA_INCONSISTENT: return "Log service encountered a metadata file with inconsistent data.";
01493                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_RESERVATION_INVALID: return "Log service encountered an attempt to erroneous allocate or dispose reservation space.";
01494                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_CANT_DELETE: return "Log service cannot delete log file or file system container.";
01495                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_CONTAINER_LIMIT_EXCEEDED: return "Log service has reached the maximum allowable containers allocated to a log file.";
01496                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_START_OF_LOG: return "Log service has attempted to read or write backward past the start of the log.";
01497                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_POLICY_ALREADY_INSTALLED: return "Log policy could not be installed because a policy of the same type is already present.";
01498                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_POLICY_NOT_INSTALLED: return "Log policy in question was not installed at the time of the request.";
01499                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_POLICY_INVALID: return "The installed set of policies on the log is invalid.";
01500                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_POLICY_CONFLICT: return "A policy on the log in question prevented the operation from completing.";
01501                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_PINNED_ARCHIVE_TAIL: return "Log space cannot be reclaimed because the log is pinned by the archive tail.";
01502                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_RECORD_NONEXISTENT: return "Log record is not a record in the log file.";
01503                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_RECORDS_RESERVED_INVALID: return "The number of reserved log records or the adjustment of the number of reserved log records is invalid.";
01504                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_SPACE_RESERVED_INVALID: return "Reserved log space or the adjustment of the log space is invalid.";
01505                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_TAIL_INVALID: return "An new or existing archive tail or base of the active log is invalid.";
01506                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_FULL: return "Log space is exhausted.";
01507                 case Sylloge.WinAPI.ErrorCodes.ERROR_COULD_NOT_RESIZE_LOG: return "The log could not be set to the requested size.";
01508                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_MULTIPLEXED: return "Log is multiplexed, no direct writes to the physical log is allowed.";
01509                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_DEDICATED: return "The operation failed because the log is a dedicated log.";
01510                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_ARCHIVE_NOT_IN_PROGRESS: return "The operation requires an archive context.";
01511                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_ARCHIVE_IN_PROGRESS: return "Log archival is in progress.";
01512                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_EPHEMERAL: return "The operation requires a non-ephemeral log, but the log is ephemeral.";
01513                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_NOT_ENOUGH_CONTAINERS: return "The log must have at least two containers before it can be read from or written to.";
01514                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_CLIENT_ALREADY_REGISTERED: return "A log client has already registered on the stream.";
01515                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_CLIENT_NOT_REGISTERED: return "A log client has not been registered on the stream.";
01516                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_FULL_HANDLER_IN_PROGRESS: return "A request has already been made to handle the log full condition.";
01517                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_CONTAINER_READ_FAILED: return "Log service encountered an error when attempting to read from a log container.";
01518                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_CONTAINER_WRITE_FAILED: return "Log service encountered an error when attempting to write to a log container.";
01519                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_CONTAINER_OPEN_FAILED: return "Log service encountered an error when attempting open a log container.";
01520                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_CONTAINER_STATE_INVALID: return "Log service encountered an invalid container state when attempting a requested action.";
01521                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_STATE_INVALID: return "Log service is not in the correct state to perform a requested action.";
01522                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_PINNED: return "Log space cannot be reclaimed because the log is pinned.";
01523                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_METADATA_FLUSH_FAILED: return "Log metadata flush failed.";
01524                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_INCONSISTENT_SECURITY: return "Security on the log and its containers is inconsistent.";
01525                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_APPENDED_FLUSH_FAILED: return "Records were appended to the log or reservation changes were made, but the log could not be flushed.";
01526                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_PINNED_RESERVATION: return "The log is pinned due to reservation consuming most of the log space. Free some reserved records to make space available.";
01527                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_TRANSACTION: return "The transaction handle associated with this operation is not valid.";
01528                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTION_NOT_ACTIVE: return "The requested operation was made in the context of a transaction that is no longer active.";
01529                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTION_REQUEST_NOT_VALID: return "The requested operation is not valid on the Transaction object in its current state.";
01530                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTION_NOT_REQUESTED: return "The caller has called a response API, but the response is not expected because the TM did not issue the corresponding request to the caller.";
01531                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTION_ALREADY_ABORTED: return "It is too late to perform the requested operation, since the Transaction has already been aborted.";
01532                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTION_ALREADY_COMMITTED: return "It is too late to perform the requested operation, since the Transaction has already been committed.";
01533                 case Sylloge.WinAPI.ErrorCodes.ERROR_TM_INITIALIZATION_FAILED: return "The Transaction Manager was unable to be successfully initialized. Transacted operations are not supported.";
01534                 case Sylloge.WinAPI.ErrorCodes.ERROR_RESOURCEMANAGER_READ_ONLY: return "The specified ResourceManager made no changes or updates to the resource under this transaction.";
01535                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTION_NOT_JOINED: return "The resource manager has attempted to prepare a transaction that it has not successfully joined.";
01536                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTION_SUPERIOR_EXISTS: return "The Transaction object already has a superior enlistment, and the caller attempted an operation that would have created a new superior. Only a single superior enlistment is allow.";
01537                 case Sylloge.WinAPI.ErrorCodes.ERROR_CRM_PROTOCOL_ALREADY_EXISTS: return "The RM tried to register a protocol that already exists.";
01538                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTION_PROPAGATION_FAILED: return "The attempt to propagate the Transaction failed.";
01539                 case Sylloge.WinAPI.ErrorCodes.ERROR_CRM_PROTOCOL_NOT_FOUND: return "The requested propagation protocol was not registered as a CRM.";
01540                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTION_INVALID_MARSHALL_BUFFER: return "The buffer passed in to PushTransaction or PullTransaction is not in a valid format.";
01541                 case Sylloge.WinAPI.ErrorCodes.ERROR_CURRENT_TRANSACTION_NOT_VALID: return "The current transaction context associated with the thread is not a valid handle to a transaction object.";
01542                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTION_NOT_FOUND: return "The specified Transaction object could not be opened, because it was not found.";
01543                 case Sylloge.WinAPI.ErrorCodes.ERROR_RESOURCEMANAGER_NOT_FOUND: return "The specified ResourceManager object could not be opened, because it was not found.";
01544                 case Sylloge.WinAPI.ErrorCodes.ERROR_ENLISTMENT_NOT_FOUND: return "The specified Enlistment object could not be opened, because it was not found.";
01545                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTIONMANAGER_NOT_FOUND: return "The specified TransactionManager object could not be opened, because it was not found. The TransactionManager must be brought fully Online by calling RecoverTransactionManager to recover to the end of its LogFile before objects in its Transaction or ResourceManager namespaces can be opened. In addition, errors in writing records to its LogFile can cause a TransactionManager to go offline.";
01546                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTIONMANAGER_NOT_ONLINE: return "The object specified could not be created or opened, because its associated TransactionManager is not online.";
01547                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION: return "The specified TransactionManager was unable to create the objects contained in its logfile in the Ob namespace. Therefore, the TransactionManager was unable to recover.";
01548                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTION_NOT_ROOT: return "The call to create a superior Enlistment on this Transaction object could not be completed, because the Transaction object specified for the enlistment is a subordinate branch of the Transaction. Only the root of the Transaction can be enlisted on as a superior.";
01549                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTION_OBJECT_EXPIRED: return "Because the associated transaction manager or resource manager has been closed, the handle is no longer valid.";
01550                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTION_RESPONSE_NOT_ENLISTED: return "The specified operation could not be performed on this Superior enlistment, because the enlistment was not created with the corresponding completion response in the NotificationMask.";
01551                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTION_RECORD_TOO_LONG: return "Either there are too many Enlistments on this Transaction, or the combined RecoveryInformation being logged on behalf of those Enlistments is too long.";
01552                 case Sylloge.WinAPI.ErrorCodes.ERROR_IMPLICIT_TRANSACTION_NOT_SUPPORTED: return "Implicit transactions are not supported.";
01553                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTION_INTEGRITY_VIOLATED: return "The kernel transaction manager had to abort or forget the transaction because it blocked forward progress.";
01554                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTIONMANAGER_IDENTITY_MISMATCH: return "The TransactionManager identity that was supplied did not match the one recorded in the TransactionManager's log file.";
01555                 case Sylloge.WinAPI.ErrorCodes.ERROR_RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT: return "This snapshot operation cannot continue because a transactional resource manager cannot be frozen in its current state. Please try again.";
01556                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTION_MUST_WRITETHROUGH: return "Either there are too many Enlistments on this Transaction, or the combined RecoveryInformation being logged on behalf of those Enlistments is too long.";
01557                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTION_NO_SUPERIOR: return "The transaction does not have a superior enlistment.";
01558                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTIONAL_CONFLICT: return "The function attempted to use a name that is reserved for use by another transaction.";
01559                 case Sylloge.WinAPI.ErrorCodes.ERROR_RM_NOT_ACTIVE: return "Transaction support within the specified resource manager is not started or was shut down due to an error.";
01560                 case Sylloge.WinAPI.ErrorCodes.ERROR_RM_METADATA_CORRUPT: return "The metadata of the RM has been corrupted. The RM will not function.";
01561                 case Sylloge.WinAPI.ErrorCodes.ERROR_DIRECTORY_NOT_RM: return "The specified directory does not contain a resource manager.";
01562                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTIONS_UNSUPPORTED_REMOTE: return "The remote server or share does not support transacted file operations.";
01563                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_RESIZE_INVALID_SIZE: return "The requested log size is invalid.";
01564                 case Sylloge.WinAPI.ErrorCodes.ERROR_OBJECT_NO_LONGER_EXISTS: return "The object (file, stream, link) corresponding to the handle has been deleted by a Transaction Savepoint Rollback.";
01565                 case Sylloge.WinAPI.ErrorCodes.ERROR_STREAM_MINIVERSION_NOT_FOUND: return "The specified file miniversion was not found for this transacted file open.";
01566                 case Sylloge.WinAPI.ErrorCodes.ERROR_STREAM_MINIVERSION_NOT_VALID: return "The specified file miniversion was found but has been invalidated. Most likely cause is a transaction savepoint rollback.";
01567                 case Sylloge.WinAPI.ErrorCodes.ERROR_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION: return "A miniversion may only be opened in the context of the transaction that created it.";
01568                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT: return "It is not possible to open a miniversion with modify access.";
01569                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANT_CREATE_MORE_STREAM_MINIVERSIONS: return "It is not possible to create any more miniversions for this stream.";
01570                 case Sylloge.WinAPI.ErrorCodes.ERROR_REMOTE_FILE_VERSION_MISMATCH: return "The remote server sent mismatching version number or Fid for a file opened with transactions.";
01571                 case Sylloge.WinAPI.ErrorCodes.ERROR_HANDLE_NO_LONGER_VALID: return "The handle has been invalidated by a transaction. The most likely cause is the presence of memory mapping on a file or an open handle when the transaction ended or rolled back to savepoint.";
01572                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_TXF_METADATA: return "There is no transaction metadata on the file.";
01573                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_CORRUPTION_DETECTED: return "The log data is corrupt.";
01574                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANT_RECOVER_WITH_HANDLE_OPEN: return "The file can't be recovered because there is a handle still open on it.";
01575                 case Sylloge.WinAPI.ErrorCodes.ERROR_RM_DISCONNECTED: return "The transaction outcome is unavailable because the resource manager responsible for it has disconnected.";
01576                 case Sylloge.WinAPI.ErrorCodes.ERROR_ENLISTMENT_NOT_SUPERIOR: return "The request was rejected because the enlistment in question is not a superior enlistment.";
01577                 case Sylloge.WinAPI.ErrorCodes.ERROR_RECOVERY_NOT_NEEDED: return "The transactional resource manager is already consistent. Recovery is not needed.";
01578                 case Sylloge.WinAPI.ErrorCodes.ERROR_RM_ALREADY_STARTED: return "The transactional resource manager has already been started.";
01579                 case Sylloge.WinAPI.ErrorCodes.ERROR_FILE_IDENTITY_NOT_PERSISTENT: return "The file cannot be opened transactionally, because its identity depends on the outcome of an unresolved transaction.";
01580                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANT_BREAK_TRANSACTIONAL_DEPENDENCY: return "The operation cannot be performed because another transaction is depending on the fact that this property will not change.";
01581                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANT_CROSS_RM_BOUNDARY: return "The operation would involve a single file with two transactional resource managers and is therefore not allowed.";
01582                 case Sylloge.WinAPI.ErrorCodes.ERROR_TXF_DIR_NOT_EMPTY: return "The $Txf directory must be empty for this operation to succeed.";
01583                 case Sylloge.WinAPI.ErrorCodes.ERROR_INDOUBT_TRANSACTIONS_EXIST: return "The operation would leave a transactional resource manager in an inconsistent state and is therefore not allowed.";
01584                 case Sylloge.WinAPI.ErrorCodes.ERROR_TM_VOLATILE: return "The operation could not be completed because the transaction manager does not have a log.";
01585                 case Sylloge.WinAPI.ErrorCodes.ERROR_ROLLBACK_TIMER_EXPIRED: return "A rollback could not be scheduled because a previously scheduled rollback has already executed or been queued for execution.";
01586                 case Sylloge.WinAPI.ErrorCodes.ERROR_TXF_ATTRIBUTE_CORRUPT: return "The transactional metadata attribute on the file or directory is corrupt and unreadable.";
01587                 case Sylloge.WinAPI.ErrorCodes.ERROR_EFS_NOT_ALLOWED_IN_TRANSACTION: return "The encryption operation could not be completed because a transaction is active.";
01588                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTIONAL_OPEN_NOT_ALLOWED: return "This object is not allowed to be opened in a transaction.";
01589                 case Sylloge.WinAPI.ErrorCodes.ERROR_LOG_GROWTH_FAILED: return "An attempt to create space in the transactional resource manager's log failed. The failure status has been recorded in the event log.";
01590                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE: return "Memory mapping (creating a mapped section) a remote file under a transaction is not supported.";
01591                 case Sylloge.WinAPI.ErrorCodes.ERROR_TXF_METADATA_ALREADY_PRESENT: return "Transaction metadata is already present on this file and cannot be superseded.";
01592                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTION_SCOPE_CALLBACKS_NOT_SET: return "A transaction scope could not be entered because the scope handler has not been initialized.";
01593                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTION_REQUIRED_PROMOTION: return "Promotion was required in order to allow the resource manager to enlist, but the transaction was set to disallow it.";
01594                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANNOT_EXECUTE_FILE_IN_TRANSACTION: return "This file is open for modification in an unresolved transaction and may be opened for execute only by a transacted reader.";
01595                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTIONS_NOT_FROZEN: return "The request to thaw frozen transactions was ignored because transactions had not previously been frozen.";
01596                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTION_FREEZE_IN_PROGRESS: return "Transactions cannot be frozen because a freeze is already in progress.";
01597                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_SNAPSHOT_VOLUME: return "The target volume is not a snapshot volume. This operation is only valid on a volume mounted as a snapshot.";
01598                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_SAVEPOINT_WITH_OPEN_FILES: return "The savepoint operation failed because files are open on the transaction. This is not permitted.";
01599                 case Sylloge.WinAPI.ErrorCodes.ERROR_DATA_LOST_REPAIR: return "Windows has discovered corruption in a file, and that file has since been repaired. Data loss may have occurred.";
01600                 case Sylloge.WinAPI.ErrorCodes.ERROR_SPARSE_NOT_ALLOWED_IN_TRANSACTION: return "The sparse operation could not be completed because a transaction is active on the file.";
01601                 case Sylloge.WinAPI.ErrorCodes.ERROR_TM_IDENTITY_MISMATCH: return "The call to create a TransactionManager object failed because the Tm Identity stored in the logfile does not match the Tm Identity that was passed in as an argument.";
01602                 case Sylloge.WinAPI.ErrorCodes.ERROR_FLOATED_SECTION: return "I/O was attempted on a section object that has been floated as a result of a transaction ending. There is no valid data.";
01603                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANNOT_ACCEPT_TRANSACTED_WORK: return "The transactional resource manager cannot currently accept transacted work due to a transient condition such as low resources.";
01604                 case Sylloge.WinAPI.ErrorCodes.ERROR_CANNOT_ABORT_TRANSACTIONS: return "The transactional resource manager had too many transactions outstanding that could not be aborted. The transactional resource manager has been shut down.";
01605                 case Sylloge.WinAPI.ErrorCodes.ERROR_BAD_CLUSTERS: return "The operation could not be completed due to bad clusters on disk.";
01606                 case Sylloge.WinAPI.ErrorCodes.ERROR_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION: return "The compression operation could not be completed because a transaction is active on the file.";
01607                 case Sylloge.WinAPI.ErrorCodes.ERROR_VOLUME_DIRTY: return "The operation could not be completed because the volume is dirty. Please run chkdsk and try again.";
01608                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_LINK_TRACKING_IN_TRANSACTION: return "The link tracking operation could not be completed because a transaction is active.";
01609                 case Sylloge.WinAPI.ErrorCodes.ERROR_OPERATION_NOT_SUPPORTED_IN_TRANSACTION: return "This operation cannot be performed in a transaction.";
01610                 case Sylloge.WinAPI.ErrorCodes.ERROR_EXPIRED_HANDLE: return "The handle is no longer properly associated with its transaction. It may have been opened in a transactional resource manager that was subsequently forced to restart. Please close the handle and open a new one.";
01611                 case Sylloge.WinAPI.ErrorCodes.ERROR_TRANSACTION_NOT_ENLISTED: return "The specified operation could not be performed because the resource manager is not enlisted in the transaction.";
01612                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_WINSTATION_NAME_INVALID: return "The specified session name is invalid.";
01613                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_INVALID_PD: return "The specified protocol driver is invalid.";
01614                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_PD_NOT_FOUND: return "The specified protocol driver was not found in the system path.";
01615                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_WD_NOT_FOUND: return "The specified terminal connection driver was not found in the system path.";
01616                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY: return "A registry key for event logging could not be created for this session.";
01617                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_SERVICE_NAME_COLLISION: return "A service with the same name already exists on the system.";
01618                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_CLOSE_PENDING: return "A close operation is pending on the session.";
01619                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_NO_OUTBUF: return "There are no free output buffers available.";
01620                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_MODEM_INF_NOT_FOUND: return "The MODEM.INF file was not found.";
01621                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_INVALID_MODEMNAME: return "The modem name was not found in MODEM.INF.";
01622                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_MODEM_RESPONSE_ERROR: return "The modem did not accept the command sent to it. Verify that the configured modem name matches the attached modem.";
01623                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_MODEM_RESPONSE_TIMEOUT: return "The modem did not respond to the command sent to it. Verify that the modem is properly cabled and powered on.";
01624                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_MODEM_RESPONSE_NO_CARRIER: return "Carrier detect has failed or carrier has been dropped due to disconnect.";
01625                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE: return "Dial tone not detected within the required time. Verify that the phone cable is properly attached and functional.";
01626                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_MODEM_RESPONSE_BUSY: return "Busy signal detected at remote site on callback.";
01627                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_MODEM_RESPONSE_VOICE: return "Voice detected at remote site on callback.";
01628                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_TD_ERROR: return "Transport driver error";
01629                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_WINSTATION_NOT_FOUND: return "The specified session cannot be found.";
01630                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_WINSTATION_ALREADY_EXISTS: return "The specified session name is already in use.";
01631                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_WINSTATION_BUSY: return "The requested operation cannot be completed because the terminal connection is currently busy processing a connect, disconnect, reset, or delete operation.";
01632                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_BAD_VIDEO_MODE: return "An attempt has been made to connect to a session whose video mode is not supported by the current client.";
01633                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_GRAPHICS_INVALID: return "The application attempted to enable DOS graphics mode. DOS graphics mode is not supported.";
01634                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_LOGON_DISABLED: return "Your interactive logon privilege has been disabled. Please contact your administrator.";
01635                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_NOT_CONSOLE: return "The requested operation can be performed only on the system console. This is most often the result of a driver or system DLL requiring direct console access.";
01636                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_CLIENT_QUERY_TIMEOUT: return "The client failed to respond to the server connect message.";
01637                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_CONSOLE_DISCONNECT: return "Disconnecting the console session is not supported.";
01638                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_CONSOLE_CONNECT: return "Reconnecting a disconnected session to the console is not supported.";
01639                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_SHADOW_DENIED: return "The request to control another session remotely was denied.";
01640                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_WINSTATION_ACCESS_DENIED: return "The requested session access is denied.";
01641                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_INVALID_WD: return "The specified terminal connection driver is invalid.";
01642                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_SHADOW_INVALID: return "The requested session cannot be controlled remotely. This may be because the session is disconnected or does not currently have a user logged on.";
01643                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_SHADOW_DISABLED: return "The requested session is not configured to allow remote control.";
01644                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_CLIENT_LICENSE_IN_USE: return "Your request to connect to this Terminal Server has been rejected. Your Terminal Server client license number is currently being used by another user. Please call your system administrator to obtain a unique license number.";
01645                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_CLIENT_LICENSE_NOT_SET: return "Your request to connect to this Terminal Server has been rejected. Your Terminal Server client license number has not been entered for this copy of the Terminal Server client. Please contact your system administrator.";
01646                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_LICENSE_NOT_AVAILABLE: return "The number of connections to this computer is limited and all connections are in use right now. Try connecting later or contact your system administrator.";
01647                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_LICENSE_CLIENT_INVALID: return "The client you are using is not licensed to use this system. Your logon request is denied.";
01648                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_LICENSE_EXPIRED: return "The system license has expired. Your logon request is denied.";
01649                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_SHADOW_NOT_RUNNING: return "Remote control could not be terminated because the specified session is not currently being remotely controlled.";
01650                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE: return "The remote control of the console was terminated because the display mode was changed. Changing the display mode in a remote control session is not supported.";
01651                 case Sylloge.WinAPI.ErrorCodes.ERROR_ACTIVATION_COUNT_EXCEEDED: return "Activation has already been reset the maximum number of times for this installation. Your activation timer will not be cleared.";
01652                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_WINSTATIONS_DISABLED: return "Remote logins are currently disabled.";
01653                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_ENCRYPTION_LEVEL_REQUIRED: return "You do not have the proper encryption level to access this Session.";
01654                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_SESSION_IN_USE: return "The user %s\\%s is currently logged on to this computer. Only the current user or an administrator can log on to this computer.";
01655                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_NO_FORCE_LOGOFF: return "The user %s\\%s is already logged on to the console of this computer. You do not have permission to log in at this time. To resolve this issue, contact %s\\%s and have them log off.";
01656                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_ACCOUNT_RESTRICTION: return "Unable to log you on because of an account restriction.";
01657                 case Sylloge.WinAPI.ErrorCodes.ERROR_RDP_PROTOCOL_ERROR: return "The RDP protocol component {1} detected an error in the protocol stream and has disconnected the client.";
01658                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_CDM_CONNECT: return "The Client Drive Mapping Service Has Connected on Terminal Connection.";
01659                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_CDM_DISCONNECT: return "The Client Drive Mapping Service Has Disconnected on Terminal Connection.";
01660                 case Sylloge.WinAPI.ErrorCodes.ERROR_CTX_SECURITY_LAYER_ERROR: return "The Terminal Server security layer detected an error in the protocol stream and has disconnected the client.";
01661                 case Sylloge.WinAPI.ErrorCodes.ERROR_TS_INCOMPATIBLE_SESSIONS: return "The target session is incompatible with the current session.";
01662                 case Sylloge.WinAPI.ErrorCodes.FRS_ERR_INVALID_API_SEQUENCE: return "The file replication service API was called incorrectly.";
01663                 case Sylloge.WinAPI.ErrorCodes.FRS_ERR_STARTING_SERVICE: return "The file replication service cannot be started.";
01664                 case Sylloge.WinAPI.ErrorCodes.FRS_ERR_STOPPING_SERVICE: return "The file replication service cannot be stopped.";
01665                 case Sylloge.WinAPI.ErrorCodes.FRS_ERR_INTERNAL_API: return "The file replication service API terminated the request. The event log may have more information.";
01666                 case Sylloge.WinAPI.ErrorCodes.FRS_ERR_INTERNAL: return "The file replication service terminated the request. The event log may have more information.";
01667                 case Sylloge.WinAPI.ErrorCodes.FRS_ERR_SERVICE_COMM: return "The file replication service cannot be contacted. The event log may have more information.";
01668                 case Sylloge.WinAPI.ErrorCodes.FRS_ERR_INSUFFICIENT_PRIV: return "The file replication service cannot satisfy the request because the user has insufficient privileges. The event log may have more information.";
01669                 case Sylloge.WinAPI.ErrorCodes.FRS_ERR_AUTHENTICATION: return "The file replication service cannot satisfy the request because authenticated RPC is not available. The event log may have more information.";
01670                 case Sylloge.WinAPI.ErrorCodes.FRS_ERR_PARENT_INSUFFICIENT_PRIV: return "The file replication service cannot satisfy the request because the user has insufficient privileges on the domain controller. The event log may have more information.";
01671                 case Sylloge.WinAPI.ErrorCodes.FRS_ERR_PARENT_AUTHENTICATION: return "The file replication service cannot satisfy the request because authenticated RPC is not available on the domain controller. The event log may have more information.";
01672                 case Sylloge.WinAPI.ErrorCodes.FRS_ERR_CHILD_TO_PARENT_COMM: return "The file replication service cannot communicate with the file replication service on the domain controller. The event log may have more information.";
01673                 case Sylloge.WinAPI.ErrorCodes.FRS_ERR_PARENT_TO_CHILD_COMM: return "The file replication service on the domain controller cannot communicate with the file replication service on this computer. The event log may have more information.";
01674                 case Sylloge.WinAPI.ErrorCodes.FRS_ERR_SYSVOL_POPULATE: return "The file replication service cannot populate the system volume because of an internal error. The event log may have more information.";
01675                 case Sylloge.WinAPI.ErrorCodes.FRS_ERR_SYSVOL_POPULATE_TIMEOUT: return "The file replication service cannot populate the system volume because of an internal timeout. The event log may have more information.";
01676                 case Sylloge.WinAPI.ErrorCodes.FRS_ERR_SYSVOL_IS_BUSY: return "The file replication service cannot process the request. The system volume is busy with a previous request.";
01677                 case Sylloge.WinAPI.ErrorCodes.FRS_ERR_SYSVOL_DEMOTE: return "The file replication service cannot stop replicating the system volume because of an internal error. The event log may have more information.";
01678                 case Sylloge.WinAPI.ErrorCodes.FRS_ERR_INVALID_SERVICE_PARAMETER: return "The file replication service detected an invalid parameter.";
01679                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NOT_INSTALLED: return "An error occurred while installing the directory service. For more information, see the event log.";
01680                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY: return "The directory service evaluated group memberships locally.";
01681                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NO_ATTRIBUTE_OR_VALUE: return "The specified directory service attribute or value does not exist.";
01682                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_INVALID_ATTRIBUTE_SYNTAX: return "The attribute syntax specified to the directory service is invalid.";
01683                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED: return "The attribute type specified to the directory service is not defined.";
01684                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS: return "The specified directory service attribute or value already exists.";
01685                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_BUSY: return "The directory service is busy.";
01686                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_UNAVAILABLE: return "The directory service is unavailable.";
01687                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NO_RIDS_ALLOCATED: return "The directory service was unable to allocate a relative identifier.";
01688                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NO_MORE_RIDS: return "The directory service has exhausted the pool of relative identifiers.";
01689                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_INCORRECT_ROLE_OWNER: return "The requested operation could not be performed because the directory service is not the master for that type of operation.";
01690                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_RIDMGR_INIT_ERROR: return "The directory service was unable to initialize the subsystem that allocates relative identifiers.";
01691                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_OBJ_CLASS_VIOLATION: return "The requested operation did not satisfy one or more constraints associated with the class of the object.";
01692                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_ON_NON_LEAF: return "The directory service can perform the requested operation only on a leaf object.";
01693                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_ON_RDN: return "The directory service cannot perform the requested operation on the RDN attribute of an object.";
01694                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_MOD_OBJ_CLASS: return "The directory service detected an attempt to modify the object class of an object.";
01695                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CROSS_DOM_MOVE_ERROR: return "The requested cross-domain move operation could not be performed.";
01696                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_GC_NOT_AVAILABLE: return "Unable to contact the global catalog server.";
01697                 case Sylloge.WinAPI.ErrorCodes.ERROR_SHARED_POLICY: return "The policy object is shared and can only be modified at the root.";
01698                 case Sylloge.WinAPI.ErrorCodes.ERROR_POLICY_OBJECT_NOT_FOUND: return "The policy object does not exist.";
01699                 case Sylloge.WinAPI.ErrorCodes.ERROR_POLICY_ONLY_IN_DS: return "The requested policy information is only in the directory service.";
01700                 case Sylloge.WinAPI.ErrorCodes.ERROR_PROMOTION_ACTIVE: return "A domain controller promotion is currently active.";
01701                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_PROMOTION_ACTIVE: return "A domain controller promotion is not currently active";
01702                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_OPERATIONS_ERROR: return "An operations error occurred.";
01703                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_PROTOCOL_ERROR: return "A protocol error occurred.";
01704                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_TIMELIMIT_EXCEEDED: return "The time limit for this request was exceeded.";
01705                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SIZELIMIT_EXCEEDED: return "The size limit for this request was exceeded.";
01706                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_ADMIN_LIMIT_EXCEEDED: return "The administrative limit for this request was exceeded.";
01707                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_COMPARE_FALSE: return "The compare response was false.";
01708                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_COMPARE_TRUE: return "The compare response was true.";
01709                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_AUTH_METHOD_NOT_SUPPORTED: return "The requested authentication method is not supported by the server.";
01710                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_STRONG_AUTH_REQUIRED: return "A more secure authentication method is required for this server.";
01711                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_INAPPROPRIATE_AUTH: return "Inappropriate authentication.";
01712                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_AUTH_UNKNOWN: return "The authentication mechanism is unknown.";
01713                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_REFERRAL: return "A referral was returned from the server.";
01714                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_UNAVAILABLE_CRIT_EXTENSION: return "The server does not support the requested critical extension.";
01715                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CONFIDENTIALITY_REQUIRED: return "This request requires a secure connection.";
01716                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_INAPPROPRIATE_MATCHING: return "Inappropriate matching.";
01717                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CONSTRAINT_VIOLATION: return "A constraint violation occurred.";
01718                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NO_SUCH_OBJECT: return "There is no such object on the server.";
01719                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_ALIAS_PROBLEM: return "There is an alias problem.";
01720                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_INVALID_DN_SYNTAX: return "An invalid dn syntax has been specified.";
01721                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_IS_LEAF: return "The object is a leaf object.";
01722                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_ALIAS_DEREF_PROBLEM: return "There is an alias dereferencing problem.";
01723                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_UNWILLING_TO_PERFORM: return "The server is unwilling to process the request.";
01724                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_LOOP_DETECT: return "A loop has been detected.";
01725                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NAMING_VIOLATION: return "There is a naming violation.";
01726                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_OBJECT_RESULTS_TOO_LARGE: return "The result set is too large.";
01727                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_AFFECTS_MULTIPLE_DSAS: return "The operation affects multiple DSAs";
01728                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SERVER_DOWN: return "The server is not operational.";
01729                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_LOCAL_ERROR: return "A local error has occurred.";
01730                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_ENCODING_ERROR: return "An encoding error has occurred.";
01731                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DECODING_ERROR: return "A decoding error has occurred.";
01732                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_FILTER_UNKNOWN: return "The search filter cannot be recognized.";
01733                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_PARAM_ERROR: return "One or more parameters are illegal.";
01734                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NOT_SUPPORTED: return "The specified method is not supported.";
01735                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NO_RESULTS_RETURNED: return "No results were returned.";
01736                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CONTROL_NOT_FOUND: return "The specified control is not supported by the server.";
01737                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CLIENT_LOOP: return "A referral loop was detected by the client.";
01738                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_REFERRAL_LIMIT_EXCEEDED: return "The preset referral limit was exceeded.";
01739                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SORT_CONTROL_MISSING: return "The search requires a SORT control.";
01740                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_OFFSET_RANGE_ERROR: return "The search results exceed the offset range specified.";
01741                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_ROOT_MUST_BE_NC: return "The root object must be the head of a naming context. The root object cannot have an instantiated parent.";
01742                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_ADD_REPLICA_INHIBITED: return "The add replica operation cannot be performed. The naming context must be writeable in order to create the replica.";
01743                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_ATT_NOT_DEF_IN_SCHEMA: return "A reference to an attribute that is not defined in the schema occurred.";
01744                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_MAX_OBJ_SIZE_EXCEEDED: return "The maximum size of an object has been exceeded.";
01745                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_OBJ_STRING_NAME_EXISTS: return "An attempt was made to add an object to the directory with a name that is already in use.";
01746                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA: return "An attempt was made to add an object of a class that does not have an RDN defined in the schema.";
01747                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_RDN_DOESNT_MATCH_SCHEMA: return "An attempt was made to add an object using an RDN that is not the RDN defined in the schema.";
01748                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NO_REQUESTED_ATTS_FOUND: return "None of the requested attributes were found on the objects.";
01749                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_USER_BUFFER_TO_SMALL: return "The user buffer is too small.";
01750                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_ATT_IS_NOT_ON_OBJ: return "The attribute specified in the operation is not present on the object.";
01751                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_ILLEGAL_MOD_OPERATION: return "Illegal modify operation. Some aspect of the modification is not permitted.";
01752                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_OBJ_TOO_LARGE: return "The specified object is too large.";
01753                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_BAD_INSTANCE_TYPE: return "The specified instance type is not valid.";
01754                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_MASTERDSA_REQUIRED: return "The operation must be performed at a master DSA.";
01755                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_OBJECT_CLASS_REQUIRED: return "The object class attribute must be specified.";
01756                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_MISSING_REQUIRED_ATT: return "A required attribute is missing.";
01757                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_ATT_NOT_DEF_FOR_CLASS: return "An attempt was made to modify an object to include an attribute that is not legal for its class.";
01758                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_ATT_ALREADY_EXISTS: return "The specified attribute is already present on the object.";
01759                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_ADD_ATT_VALUES: return "The specified attribute is not present, or has no values.";
01760                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SINGLE_VALUE_CONSTRAINT: return "Multiple values were specified for an attribute that can have only one value.";
01761                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_RANGE_CONSTRAINT: return "A value for the attribute was not in the acceptable range of values.";
01762                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_ATT_VAL_ALREADY_EXISTS: return "The specified value already exists.";
01763                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_REM_MISSING_ATT: return "The attribute cannot be removed because it is not present on the object.";
01764                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_REM_MISSING_ATT_VAL: return "The attribute value cannot be removed because it is not present on the object.";
01765                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_ROOT_CANT_BE_SUBREF: return "The specified root object cannot be a subreference.";
01766                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NO_CHAINING: return "Chaining is not permitted.";
01767                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NO_CHAINED_EVAL: return "Chained evaluation is not permitted.";
01768                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NO_PARENT_OBJECT: return "The operation could not be performed because the object's parent is either uninstantiated or deleted.";
01769                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_PARENT_IS_AN_ALIAS: return "Having a parent that is an alias is not permitted. Aliases are leaf objects.";
01770                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_MIX_MASTER_AND_REPS: return "The object and parent must be of the same type, either both masters or both replicas.";
01771                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CHILDREN_EXIST: return "The operation cannot be performed because child objects exist. This operation can only be performed on a leaf object.";
01772                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_OBJ_NOT_FOUND: return "Directory object not found.";
01773                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_ALIASED_OBJ_MISSING: return "The aliased object is missing.";
01774                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_BAD_NAME_SYNTAX: return "The object name has bad syntax.";
01775                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_ALIAS_POINTS_TO_ALIAS: return "It is not permitted for an alias to refer to another alias.";
01776                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_DEREF_ALIAS: return "The alias cannot be dereferenced.";
01777                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_OUT_OF_SCOPE: return "The operation is out of scope.";
01778                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_OBJECT_BEING_REMOVED: return "The operation cannot continue because the object is in the process of being removed.";
01779                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_DELETE_DSA_OBJ: return "The DSA object cannot be deleted.";
01780                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_GENERIC_ERROR: return "A directory service error has occurred.";
01781                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DSA_MUST_BE_INT_MASTER: return "The operation can only be performed on an internal master DSA object.";
01782                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CLASS_NOT_DSA: return "The object must be of class DSA.";
01783                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_INSUFF_ACCESS_RIGHTS: return "Insufficient access rights to perform the operation.";
01784                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_ILLEGAL_SUPERIOR: return "The object cannot be added because the parent is not on the list of possible superiors.";
01785                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_ATTRIBUTE_OWNED_BY_SAM: return "Access to the attribute is not permitted because the attribute is owned by the Security Accounts Manager (SAM).";
01786                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NAME_TOO_MANY_PARTS: return "The name has too many parts.";
01787                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NAME_TOO_LONG: return "The name is too long.";
01788                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NAME_VALUE_TOO_LONG: return "The name value is too long.";
01789                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NAME_UNPARSEABLE: return "The directory service encountered an error parsing a name.";
01790                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NAME_TYPE_UNKNOWN: return "The directory service cannot get the attribute type for a name.";
01791                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NOT_AN_OBJECT: return "The name does not identify an object; the name identifies a phantom.";
01792                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SEC_DESC_TOO_SHORT: return "The security descriptor is too short.";
01793                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SEC_DESC_INVALID: return "The security descriptor is invalid.";
01794                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NO_DELETED_NAME: return "Failed to create name for deleted object.";
01795                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SUBREF_MUST_HAVE_PARENT: return "The parent of a new subref must exist.";
01796                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NCNAME_MUST_BE_NC: return "The object must be a naming context.";
01797                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_ADD_SYSTEM_ONLY: return "It is not permitted to add an attribute which is owned by the system.";
01798                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CLASS_MUST_BE_CONCRETE: return "The class of the object must be structural; you cannot instantiate an abstract class.";
01799                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_INVALID_DMD: return "The schema object could not be found.";
01800                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_OBJ_GUID_EXISTS: return "A local object with this GUID (dead or alive) already exists.";
01801                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NOT_ON_BACKLINK: return "The operation cannot be performed on a back link.";
01802                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NO_CROSSREF_FOR_NC: return "The cross reference for the specified naming context could not be found.";
01803                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SHUTTING_DOWN: return "The operation could not be performed because the directory service is shutting down.";
01804                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_UNKNOWN_OPERATION: return "The directory service request is invalid.";
01805                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_INVALID_ROLE_OWNER: return "The role owner attribute could not be read.";
01806                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_COULDNT_CONTACT_FSMO: return "The requested FSMO operation failed. The current FSMO holder could not be contacted.";
01807                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CROSS_NC_DN_RENAME: return "Modification of a DN across a naming context is not permitted.";
01808                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_MOD_SYSTEM_ONLY: return "The attribute cannot be modified because it is owned by the system.";
01809                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_REPLICATOR_ONLY: return "Only the replicator can perform this function.";
01810                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_OBJ_CLASS_NOT_DEFINED: return "The specified class is not defined.";
01811                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_OBJ_CLASS_NOT_SUBCLASS: return "The specified class is not a subclass.";
01812                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NAME_REFERENCE_INVALID: return "The name reference is invalid.";
01813                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CROSS_REF_EXISTS: return "A cross reference already exists.";
01814                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_DEL_MASTER_CROSSREF: return "It is not permitted to delete a master cross reference.";
01815                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD: return "Subtree notifications are only supported on NC heads.";
01816                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX: return "Notification filter is too complex.";
01817                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DUP_RDN: return "Duplicate RDN.";
01818                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DUP_OID: return "Duplicate OID.";
01819                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DUP_MAPI_ID: return "Duplicate MAPI identifier.";
01820                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DUP_SCHEMA_ID_GUID: return "Duplicate schema-id GUID.";
01821                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DUP_LDAP_DISPLAY_NAME: return "Duplicate LDAP display name.";
01822                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SEMANTIC_ATT_TEST: return "Range-lower less than range upper.";
01823                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SYNTAX_MISMATCH: return "Syntax mismatch.";
01824                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_EXISTS_IN_MUST_HAVE: return "Attribute is used in must-contain.";
01825                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_EXISTS_IN_MAY_HAVE: return "Attribute is used in may-contain.";
01826                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NONEXISTENT_MAY_HAVE: return "Attribute in may-contain does not exist.";
01827                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NONEXISTENT_MUST_HAVE: return "Attribute in must-contain does not exist.";
01828                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_AUX_CLS_TEST_FAIL: return "Class in aux-class list does not exist or is not an auxiliary class.";
01829                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NONEXISTENT_POSS_SUP: return "Class in poss-superiors does not exist.";
01830                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SUB_CLS_TEST_FAIL: return "Class in subclassof list does not exist or does not satisfy hierarchy rules.";
01831                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_BAD_RDN_ATT_ID_SYNTAX: return "Rdn-Att-Id has wrong syntax.";
01832                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_EXISTS_IN_AUX_CLS: return "Class is used as auxiliary class.";
01833                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_EXISTS_IN_SUB_CLS: return "Class is used as sub class.";
01834                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_EXISTS_IN_POSS_SUP: return "Class is used as poss superior.";
01835                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_RECALCSCHEMA_FAILED: return "Schema update failed in recalculating validation cache.";
01836                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_TREE_DELETE_NOT_FINISHED: return "The tree deletion is not finished. The request must be made again to continue deleting the tree.";
01837                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_DELETE: return "The requested delete operation could not be performed.";
01838                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_ATT_SCHEMA_REQ_ID: return "Cannot read the governs class identifier for the schema record.";
01839                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_BAD_ATT_SCHEMA_SYNTAX: return "The attribute schema has bad syntax.";
01840                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_CACHE_ATT: return "The attribute could not be cached.";
01841                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_CACHE_CLASS: return "The class could not be cached.";
01842                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_REMOVE_ATT_CACHE: return "The attribute could not be removed from the cache.";
01843                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_REMOVE_CLASS_CACHE: return "The class could not be removed from the cache.";
01844                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_RETRIEVE_DN: return "The distinguished name attribute could not be read.";
01845                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_MISSING_SUPREF: return "No superior reference has been configured for the directory service. The directory service is therefore unable to issue referrals to objects outside this forest.";
01846                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_RETRIEVE_INSTANCE: return "The instance type attribute could not be retrieved.";
01847                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CODE_INCONSISTENCY: return "An internal error has occurred.";
01848                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DATABASE_ERROR: return "A database error has occurred.";
01849                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_GOVERNSID_MISSING: return "The attribute GOVERNSID is missing.";
01850                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_MISSING_EXPECTED_ATT: return "An expected attribute is missing.";
01851                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NCNAME_MISSING_CR_REF: return "The specified naming context is missing a cross reference.";
01852                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SECURITY_CHECKING_ERROR: return "A security checking error has occurred.";
01853                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SCHEMA_NOT_LOADED: return "The schema is not loaded.";
01854                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SCHEMA_ALLOC_FAILED: return "Schema allocation failed. Please check if the machine is running low on memory.";
01855                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_ATT_SCHEMA_REQ_SYNTAX: return "Failed to obtain the required syntax for the attribute schema.";
01856                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_GCVERIFY_ERROR: return "The global catalog verification failed. The global catalog is not available or does not support the operation. Some part of the directory is currently not available.";
01857                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_SCHEMA_MISMATCH: return "The replication operation failed because of a schema mismatch between the servers involved.";
01858                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_FIND_DSA_OBJ: return "The DSA object could not be found.";
01859                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_FIND_EXPECTED_NC: return "The naming context could not be found.";
01860                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_FIND_NC_IN_CACHE: return "The naming context could not be found in the cache.";
01861                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_RETRIEVE_CHILD: return "The child object could not be retrieved.";
01862                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SECURITY_ILLEGAL_MODIFY: return "The modification was not permitted for security reasons.";
01863                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_REPLACE_HIDDEN_REC: return "The operation cannot replace the hidden record.";
01864                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_BAD_HIERARCHY_FILE: return "The hierarchy file is invalid.";
01865                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED: return "The attempt to build the hierarchy table failed.";
01866                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CONFIG_PARAM_MISSING: return "The directory configuration parameter is missing from the registry.";
01867                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_COUNTING_AB_INDICES_FAILED: return "The attempt to count the address book indices failed.";
01868                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED: return "The allocation of the hierarchy table failed.";
01869                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_INTERNAL_FAILURE: return "The directory service encountered an internal failure.";
01870                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_UNKNOWN_ERROR: return "The directory service encountered an unknown failure.";
01871                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_ROOT_REQUIRES_CLASS_TOP: return "A root object requires a class of 'top'.";
01872                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_REFUSING_FSMO_ROLES: return "This directory server is shutting down, and cannot take ownership of new floating single-master operation roles.";
01873                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_MISSING_FSMO_SETTINGS: return "The directory service is missing mandatory configuration information, and is unable to determine the ownership of floating single-master operation roles.";
01874                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_UNABLE_TO_SURRENDER_ROLES: return "The directory service was unable to transfer ownership of one or more floating single-master operation roles to other servers.";
01875                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_GENERIC: return "The replication operation failed.";
01876                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_INVALID_PARAMETER: return "An invalid parameter was specified for this replication operation.";
01877                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_BUSY: return "The directory service is too busy to complete the replication operation at this time.";
01878                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_BAD_DN: return "The distinguished name specified for this replication operation is invalid.";
01879                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_BAD_NC: return "The naming context specified for this replication operation is invalid.";
01880                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_DN_EXISTS: return "The distinguished name specified for this replication operation already exists.";
01881                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_INTERNAL_ERROR: return "The replication system encountered an internal error.";
01882                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_INCONSISTENT_DIT: return "The replication operation encountered a database inconsistency.";
01883                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_CONNECTION_FAILED: return "The server specified for this replication operation could not be contacted.";
01884                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_BAD_INSTANCE_TYPE: return "The replication operation encountered an object with an invalid instance type.";
01885                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_OUT_OF_MEM: return "The replication operation failed to allocate memory.";
01886                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_MAIL_PROBLEM: return "The replication operation encountered an error with the mail system.";
01887                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_REF_ALREADY_EXISTS: return "The replication reference information for the target server already exists.";
01888                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_REF_NOT_FOUND: return "The replication reference information for the target server does not exist.";
01889                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_OBJ_IS_REP_SOURCE: return "The naming context cannot be removed because it is replicated to another server.";
01890                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_DB_ERROR: return "The replication operation encountered a database error.";
01891                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_NO_REPLICA: return "The naming context is in the process of being removed or is not replicated from the specified server.";
01892                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_ACCESS_DENIED: return "Replication access was denied.";
01893                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_NOT_SUPPORTED: return "The requested operation is not supported by this version of the directory service.";
01894                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_RPC_CANCELLED: return "The replication remote procedure call was canceled.";
01895                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_SOURCE_DISABLED: return "The source server is currently rejecting replication requests.";
01896                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_SINK_DISABLED: return "The destination server is currently rejecting replication requests.";
01897                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_NAME_COLLISION: return "The replication operation failed due to a collision of object names.";
01898                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_SOURCE_REINSTALLED: return "The replication source has been reinstalled.";
01899                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_MISSING_PARENT: return "The replication operation failed because a required parent object is missing.";
01900                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_PREEMPTED: return "The replication operation was preempted.";
01901                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_ABANDON_SYNC: return "The replication synchronization attempt was abandoned because of a lack of updates.";
01902                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_SHUTDOWN: return "The replication operation was terminated because the system is shutting down.";
01903                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET: return "Synchronization attempt failed because the destination DC is currently waiting to synchronize new partial attributes from source. This condition is normal if a recent schema change modified the partial attribute set. The destination partial attribute set is not a subset of source partial attribute set.";
01904                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA: return "The replication synchronization attempt failed because a master replica attempted to sync from a partial replica.";
01905                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_EXTN_CONNECTION_FAILED: return "The server specified for this replication operation was contacted, but that server was unable to contact an additional server needed to complete the operation.";
01906                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_INSTALL_SCHEMA_MISMATCH: return "The version of the directory service schema of the source forest is not compatible with the version of the directory service on this computer.";
01907                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DUP_LINK_ID: return "An attribute with the same link identifier already exists.";
01908                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NAME_ERROR_RESOLVING: return "Generic processing error.";
01909                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NAME_ERROR_NOT_FOUND: return "Could not find the name or insufficient right to see name.";
01910                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NAME_ERROR_NOT_UNIQUE: return "Input name mapped to more than one output name.";
01911                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NAME_ERROR_NO_MAPPING: return "Input name found, but not the associated output format.";
01912                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NAME_ERROR_DOMAIN_ONLY: return "Unable to resolve completely, only the domain was found.";
01913                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING: return "Unable to perform purely syntactical mapping at the client without going out to the wire.";
01914                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CONSTRUCTED_ATT_MOD: return "Modification of a constructed attribute is not allowed.";
01915                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_WRONG_OM_OBJ_CLASS: return "The OM-Object-Class specified is incorrect for an attribute with the specified syntax.";
01916                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_REPL_PENDING: return "The replication request has been posted; waiting for reply.";
01917                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DS_REQUIRED: return "The requested operation requires a directory service, and none was available.";
01918                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_INVALID_LDAP_DISPLAY_NAME: return "The LDAP display name of the class or attribute contains non-ASCII characters.";
01919                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NON_BASE_SEARCH: return "The requested search operation is only supported for base searches.";
01920                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_RETRIEVE_ATTS: return "The search failed to retrieve attributes from the database.";
01921                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_BACKLINK_WITHOUT_LINK: return "The schema update operation tried to add a backward link attribute that has no corresponding forward link.";
01922                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_EPOCH_MISMATCH: return "Source and destination of a cross-domain move do not agree on the object's epoch number. Either source or destination does not have the latest version of the object.";
01923                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SRC_NAME_MISMATCH: return "Source and destination of a cross-domain move do not agree on the object's current name. Either source or destination does not have the latest version of the object.";
01924                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SRC_AND_DST_NC_IDENTICAL: return "Source and destination for the cross-domain move operation are identical. Caller should use local move operation instead of cross-domain move operation.";
01925                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DST_NC_MISMATCH: return "Source and destination for a cross-domain move are not in agreement on the naming contexts in the forest. Either source or destination does not have the latest version of the Partitions container.";
01926                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC: return "Destination of a cross-domain move is not authoritative for the destination naming context.";
01927                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SRC_GUID_MISMATCH: return "Source and destination of a cross-domain move do not agree on the identity of the source object. Either source or destination does not have the latest version of the source object.";
01928                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_MOVE_DELETED_OBJECT: return "Object being moved across-domains is already known to be deleted by the destination server. The source server does not have the latest version of the source object.";
01929                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_PDC_OPERATION_IN_PROGRESS: return "Another operation which requires exclusive access to the PDC FSMO is already in progress.";
01930                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD: return "A cross-domain move operation failed such that two versions of the moved object exist - one each in the source and destination domains. The destination object needs to be removed to restore the system to a consistent state.";
01931                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION: return "Trust account or restricted RID, which prevent its move.";
01932                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS: return "Can't move objects with memberships across domain boundaries as once moved, this would violate the membership conditions of the account group. Remove the object from any account group memberships and retry.";
01933                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NC_MUST_HAVE_NC_PARENT: return "A naming context head must be the immediate child of another naming context head, not of an interior node.";
01934                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE: return "The directory cannot validate the proposed naming context name because it does not hold a replica of the naming context above the proposed naming context. Please ensure that the domain naming master role is held by a server that is configured as a global catalog server, and that the server is up to date with its replication partners. (Applies only to Windows 2000 Domain Naming masters)";
01935                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DST_DOMAIN_NOT_NATIVE: return "Destination domain must be in native mode.";
01936                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER: return "The operation cannot be performed because the server does not have an infrastructure container in the domain of interest.";
01937                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_MOVE_ACCOUNT_GROUP: return "Cross-domain move of non-empty account groups is not allowed.";
01938                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_MOVE_RESOURCE_GROUP: return "Cross-domain move of non-empty resource groups is not allowed.";
01939                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_INVALID_SEARCH_FLAG: return "The search flags for the attribute are invalid. The ANR bit is valid only on attributes of Unicode or Teletex strings.";
01940                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NO_TREE_DELETE_ABOVE_NC: return "Tree deletions starting at an object which has an NC head as a descendant are not allowed.";
01941                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE: return "The directory service failed to lock a tree in preparation for a tree deletion because the tree was in use.";
01942                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE: return "The directory service failed to identify the list of objects to delete while attempting a tree deletion.";
01943                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SAM_INIT_FAILURE: return "0x{1}. Please shut down this system and reboot into Directory Services Restore Mode. Check the event log for more detailed information.";
01944                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SENSITIVE_GROUP_VIOLATION: return "Only an administrator can modify the membership list of an administrative group.";
01945                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_MOD_PRIMARYGROUPID: return "Cannot change the primary group ID of a domain controller account.";
01946                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD: return "An attempt is made to modify the base schema.";
01947                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NONSAFE_SCHEMA_CHANGE: return "Adding a new mandatory attribute to an existing class, deleting a mandatory attribute from an existing class, or adding an optional attribute to the special class Top that is not a backlink attribute (directly or through inheritance, for example, by adding or deleting an auxiliary class) is not allowed.";
01948                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SCHEMA_UPDATE_DISALLOWED: return "Schema update is not allowed on this DC because the DC is not the schema FSMO Role Owner.";
01949                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_CREATE_UNDER_SCHEMA: return "An object of this class cannot be created under the schema container. You can only create attribute-schema and class-schema objects under the schema container.";
01950                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_INSTALL_NO_SRC_SCH_VERSION: return "The replica/child install failed to get the objectVersion attribute on the schema container on the source DC. Either the attribute is missing on the schema container or the credentials supplied do not have permission to read it.";
01951                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE: return "The replica/child install failed to read the objectVersion attribute in the SCHEMA section of the file schema.ini in the system32 directory.";
01952                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_INVALID_GROUP_TYPE: return "The specified group type is invalid.";
01953                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN: return "You cannot nest global groups in a mixed domain if the group is security-enabled.";
01954                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN: return "You cannot nest local groups in a mixed domain if the group is security-enabled.";
01955                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER: return "A global group cannot have a local group as a member.";
01956                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER: return "A global group cannot have a universal group as a member.";
01957                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER: return "A universal group cannot have a local group as a member.";
01958                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER: return "A global group cannot have a cross-domain member.";
01959                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER: return "A local group cannot have another cross domain local group as a member.";
01960                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_HAVE_PRIMARY_MEMBERS: return "A group with primary members cannot change to a security-disabled group.";
01961                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_STRING_SD_CONVERSION_FAILED: return "The schema cache load failed to convert the string default SD on a class-schema object.";
01962                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NAMING_MASTER_GC: return "Only DSAs configured to be Global Catalog servers should be allowed to hold the Domain Naming Master FSMO role. (Applies only to Windows 2000 servers)";
01963                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DNS_LOOKUP_FAILURE: return "The DSA operation is unable to proceed because of a DNS lookup failure.";
01964                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_COULDNT_UPDATE_SPNS: return "While processing a change to the DNS Host Name for an object, the Service Principal Name values could not be kept in sync.";
01965                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_RETRIEVE_SD: return "The Security Descriptor attribute could not be read.";
01966                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_KEY_NOT_UNIQUE: return "The object requested was not found, but an object with that key was found.";
01967                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_WRONG_LINKED_ATT_SYNTAX: return "The syntax of the linked attribute being added is incorrect. Forward links can only have syntax 2.5.5.1, 2.5.5.7, and 2.5.5.14, and backlinks can only have syntax 2.5.5.1";
01968                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD: return "Security Account Manager needs to get the boot password.";
01969                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY: return "Security Account Manager needs to get the boot key from floppy disk.";
01970                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_START: return "Directory Service cannot start.";
01971                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_INIT_FAILURE: return "Directory Services could not start.";
01972                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION: return "The connection between client and server requires packet privacy or better.";
01973                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SOURCE_DOMAIN_IN_FOREST: return "The source domain may not be in the same forest as destination.";
01974                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST: return "The destination domain must be in the forest.";
01975                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED: return "The operation requires that destination domain auditing be enabled.";
01976                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN: return "The operation couldn't locate a DC for the source domain.";
01977                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER: return "The source object must be a group or user.";
01978                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SRC_SID_EXISTS_IN_FOREST: return "The source object's SID already exists in destination forest.";
01979                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH: return "The source and destination object must be of the same type.";
01980                 case Sylloge.WinAPI.ErrorCodes.ERROR_SAM_INIT_FAILURE: return "0x{1}. Click OK to shut down the system and reboot into Safe Mode. Check the event log for detailed information.";
01981                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_SCHEMA_INFO_SHIP: return "Schema information could not be included in the replication request.";
01982                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_SCHEMA_CONFLICT: return "The replication operation could not be completed due to a schema incompatibility.";
01983                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT: return "The replication operation could not be completed due to a previous schema incompatibility.";
01984                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_OBJ_NC_MISMATCH: return "The replication update could not be applied because either the source or the destination has not yet received information regarding a recent cross-domain move operation.";
01985                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NC_STILL_HAS_DSAS: return "The requested domain could not be deleted because there exist domain controllers that still host this domain.";
01986                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_GC_REQUIRED: return "The requested operation can be performed only on a global catalog server.";
01987                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY: return "A local group can only be a member of other local groups in the same domain.";
01988                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS: return "Foreign security principals cannot be members of universal groups.";
01989                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_ADD_TO_GC: return "The attribute is not allowed to be replicated to the GC because of security reasons.";
01990                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NO_CHECKPOINT_WITH_PDC: return "The checkpoint with the PDC could not be taken because there too many modifications being processed currently.";
01991                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SOURCE_AUDITING_NOT_ENABLED: return "The operation requires that source domain auditing be enabled.";
01992                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC: return "Security principal objects can only be created inside domain naming contexts.";
01993                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_INVALID_NAME_FOR_SPN: return "A Service Principal Name (SPN) could not be constructed because the provided hostname is not in the necessary format.";
01994                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS: return "A Filter was passed that uses constructed attributes.";
01995                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_UNICODEPWD_NOT_IN_QUOTES: return "The unicodePwd attribute value must be enclosed in double quotes.";
01996                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED: return "Your computer could not be joined to the domain. You have exceeded the maximum number of computer accounts you are allowed to create in this domain. Contact your system administrator to have this limit reset or increased.";
01997                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_MUST_BE_RUN_ON_DST_DC: return "For security reasons, the operation must be run on the destination DC.";
01998                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER: return "For security reasons, the source DC must be NT4SP4 or greater.";
01999                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ: return "Critical Directory Service System objects cannot be deleted during tree delete operations. The tree delete may have been partially performed.";
02000                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_INIT_FAILURE_CONSOLE: return "0x{1}. Please click OK to shutdown the system. You can use the recovery console to diagnose the system further.";
02001                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SAM_INIT_FAILURE_CONSOLE: return "0x{1}. Please click OK to shutdown the system. You can use the recovery console to diagnose the system further.";
02002                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_FOREST_VERSION_TOO_HIGH: return "The version of the operating system is incompatible with the current AD DS forest functional level or AD LDS Configuration Set functional level. You must upgrade to a new version of the operating system before this server can become an AD DS Domain Controller or add an AD LDS Instance in this AD DS forest or AD LDS Configuration Set.";
02003                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DOMAIN_VERSION_TOO_HIGH: return "The version of the operating system installed is incompatible with the current domain functional level. You must upgrade to a new version of the operating system before this server can become a domain controller in this domain.";
02004                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_FOREST_VERSION_TOO_LOW: return "The version of the operating system installed on this server no longer supports the current AD DS Forest functional level or AD LDS Configuration Set functional level. You must raise the AD DS Forest functional level or AD LDS Configuration Set functional level before this server can become an AD DS Domain Controller or an AD LDS Instance in this Forest or Configuration Set.";
02005                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DOMAIN_VERSION_TOO_LOW: return "The version of the operating system installed on this server no longer supports the current domain functional level. You must raise the domain functional level before this server can become a domain controller in this domain.";
02006                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_INCOMPATIBLE_VERSION: return "The version of the operating system installed on this server is incompatible with the functional level of the domain or forest.";
02007                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_LOW_DSA_VERSION: return "The functional level of the domain (or forest) cannot be raised to the requested value, because there exist one or more domain controllers in the domain (or forest) that are at a lower incompatible functional level.";
02008                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN: return "The forest functional level cannot be raised to the requested value since one or more domains are still in mixed domain mode. All domains in the forest must be in native mode, for you to raise the forest functional level.";
02009                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NOT_SUPPORTED_SORT_ORDER: return "The sort order requested is not supported.";
02010                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NAME_NOT_UNIQUE: return "The requested name already exists as a unique identifier.";
02011                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4: return "The machine account was created pre-NT4. The account needs to be recreated.";
02012                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_OUT_OF_VERSION_STORE: return "The database is out of version store.";
02013                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_INCOMPATIBLE_CONTROLS_USED: return "Unable to continue operation because multiple conflicting controls were used.";
02014                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NO_REF_DOMAIN: return "Unable to find a valid security descriptor reference domain for this partition.";
02015                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_RESERVED_LINK_ID: return "The link identifier is reserved.";
02016                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_LINK_ID_NOT_AVAILABLE: return "There are no link identifiers available.";
02017                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER: return "An account group cannot have a universal group as a member.";
02018                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE: return "Rename or move operations on naming context heads or read-only objects are not allowed.";
02019                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC: return "Move operations on objects in the schema naming context are not allowed.";
02020                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG: return "A system flag has been set on the object and does not allow the object to be moved or renamed.";
02021                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_MODIFYDN_WRONG_GRANDPARENT: return "This object is not allowed to change its grandparent container. Moves are not forbidden on this object, but are restricted to sibling containers.";
02022                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NAME_ERROR_TRUST_REFERRAL: return "Unable to resolve completely, a referral to another forest is generated.";
02023                 case Sylloge.WinAPI.ErrorCodes.ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER: return "The requested action is not supported on standard server.";
02024                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD: return "Could not access a partition of the directory service located on a remote server. Make sure at least one server is running for the partition in question.";
02025                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2: return "The directory cannot validate the proposed naming context (or partition) name because it does not hold a replica nor can it contact a replica of the naming context above the proposed naming context. Please ensure that the parent naming context is properly registered in DNS, and at least one replica of this naming context is reachable by the Domain Naming master.";
02026                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_THREAD_LIMIT_EXCEEDED: return "The thread limit for this request was exceeded.";
02027                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NOT_CLOSEST: return "The Global catalog server is not in the closest site.";
02028                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF: return "The DS cannot derive a service principal name (SPN) with which to mutually authenticate the target server because the corresponding server object in the local DS database has no serverReference attribute.";
02029                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_SINGLE_USER_MODE_FAILED: return "The Directory Service failed to enter single user mode.";
02030                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NTDSCRIPT_SYNTAX_ERROR: return "The Directory Service cannot parse the script because of a syntax error.";
02031                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NTDSCRIPT_PROCESS_ERROR: return "The Directory Service cannot process the script because of an error.";
02032                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DIFFERENT_REPL_EPOCHS: return "The directory service cannot perform the requested operation because the servers involved are of different replication epochs (which is usually related to a domain rename that is in progress).";
02033                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRS_EXTENSIONS_CHANGED: return "The directory service binding must be renegotiated due to a change in the server extensions information.";
02034                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR: return "Operation not allowed on a disabled cross reference.";
02035                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NO_MSDS_INTID: return "No values for msDS-IntId are available.";
02036                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DUP_MSDS_INTID: return "Duplicate msDS-INtId. Retry the operation.";
02037                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_EXISTS_IN_RDNATTID: return "Attribute is used in rDNAttID.";
02038                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_AUTHORIZATION_FAILED: return "The directory service failed to authorize the request.";
02039                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_INVALID_SCRIPT: return "The Directory Service cannot process the script because it is invalid.";
02040                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_REMOTE_CROSSREF_OP_FAILED: return "The remote create cross reference operation failed on the Domain Naming Master FSMO. The operation's error is in the extended data.";
02041                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CROSS_REF_BUSY: return "A cross reference is in use locally with the same name.";
02042                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN: return "The DS cannot derive a service principal name (SPN) with which to mutually authenticate the target server because the server's domain has been deleted from the forest.";
02043                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC: return "Writeable NCs prevent this DC from demoting.";
02044                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DUPLICATE_ID_FOUND: return "The requested object has a non-unique identifier and cannot be retrieved.";
02045                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT: return "Insufficient attributes were given to create an object. This object may not exist because it may have been deleted and already garbage collected.";
02046                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_GROUP_CONVERSION_ERROR: return "The group cannot be converted due to attribute restrictions on the requested group type.";
02047                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_MOVE_APP_BASIC_GROUP: return "Cross-domain move of non-empty basic application groups is not allowed.";
02048                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_CANT_MOVE_APP_QUERY_GROUP: return "Cross-domain move of non-empty query based application groups is not allowed.";
02049                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_ROLE_NOT_VERIFIED: return "The FSMO role ownership could not be verified because its directory partition has not replicated successfully with at least one replication partner.";
02050                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL: return "The target container for a redirection of a well known object container cannot already be a special container.";
02051                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DOMAIN_RENAME_IN_PROGRESS: return "The Directory Service cannot perform the requested operation because a domain rename operation is in progress.";
02052                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_EXISTING_AD_CHILD_NC: return "The directory service detected a child partition below the requested new partition name. The partition hierarchy must be created in a top down method.";
02053                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_REPL_LIFETIME_EXCEEDED: return "The directory service cannot replicate with this server because the time since the last replication with this server has exceeded the tombstone lifetime.";
02054                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER: return "The requested operation is not allowed on an object under the system container.";
02055                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_LDAP_SEND_QUEUE_FULL: return "The LDAP servers network send queue has filled up because the client is not processing the results of it's requests fast enough. No more requests will be processed until the client catches up. If the client does not catch up then it will be disconnected.";
02056                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_OUT_SCHEDULE_WINDOW: return "The scheduled replication did not take place because the system was too busy to execute the request within the schedule window. The replication queue is overloaded. Consider reducing the number of partners or decreasing the scheduled replication frequency.";
02057                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_POLICY_NOT_KNOWN: return "At this time, it cannot be determined if the branch replication policy is available on the hub domain controller. Please retry at a later time to account for replication latencies.";
02058                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_SITE_SETTINGS_OBJECT: return "The site settings object for the specified site does not exist.";
02059                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_SECRETS: return "The local account store does not contain secret material for the specified account.";
02060                 case Sylloge.WinAPI.ErrorCodes.ERROR_NO_WRITABLE_DC_FOUND: return "Could not find a writable domain controller in the domain.";
02061                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NO_SERVER_OBJECT: return "The server object for the domain controller does not exist.";
02062                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NO_NTDSA_OBJECT: return "The NTDS Settings object for the domain controller does not exist.";
02063                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_NON_ASQ_SEARCH: return "The requested search operation is not supported for ASQ searches.";
02064                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_AUDIT_FAILURE: return "A required audit event could not be generated for the operation.";
02065                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_INVALID_SEARCH_FLAG_SUBTREE: return "The search flags for the attribute are invalid. The subtree index bit is valid only on single valued attributes.";
02066                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_INVALID_SEARCH_FLAG_TUPLE: return "The search flags for the attribute are invalid. The tuple index bit is valid only on attributes of Unicode strings.";
02067                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_HIERARCHY_TABLE_TOO_DEEP: return "The address books are nested too deeply. Failed to build the hierarchy table.";
02068                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_CORRUPT_UTD_VECTOR: return "The specified up-to-date-ness vector is corrupt.";
02069                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_SECRETS_DENIED: return "The request to replicate secrets is denied.";
02070                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_RESERVED_MAPI_ID: return "The MAPI identifier is reserved.";
02071                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_MAPI_ID_NOT_AVAILABLE: return "There are no MAPI identifiers available.";
02072                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DRA_MISSING_KRBTGT_SECRET: return "The replication operation failed because the required attributes of the local krbtgt object are missing.";
02073                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_DOMAIN_NAME_EXISTS_IN_FOREST: return "The domain name of the trusted domain already exists in the forest.";
02074                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_FLAT_NAME_EXISTS_IN_FOREST: return "The flat name of the trusted domain already exists in the forest.";
02075                 case Sylloge.WinAPI.ErrorCodes.ERROR_INVALID_USER_PRINCIPAL_NAME: return "The User Principal Name (UPN) is invalid.";
02076                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS: return "OID mapped groups cannot have members.";
02077                 case Sylloge.WinAPI.ErrorCodes.ERROR_DS_OID_NOT_FOUND: return "The specified OID cannot be found.";
02078                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_RCODE_FORMAT_ERROR: return "DNS server unable to interpret format.";
02079                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_RCODE_SERVER_FAILURE: return "DNS server failure.";
02080                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_RCODE_NAME_ERROR: return "DNS name does not exist.";
02081                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_RCODE_NOT_IMPLEMENTED: return "DNS request not supported by name server.";
02082                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_RCODE_REFUSED: return "DNS operation refused.";
02083                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_RCODE_YXDOMAIN: return "DNS name that ought not exist, does exist.";
02084                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_RCODE_YXRRSET: return "DNS RR set that ought not exist, does exist.";
02085                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_RCODE_NXRRSET: return "DNS RR set that ought to exist, does not exist.";
02086                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_RCODE_NOTAUTH: return "DNS server not authoritative for zone.";
02087                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_RCODE_NOTZONE: return "DNS name in update or prereq is not in zone.";
02088                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_RCODE_BADSIG: return "DNS signature failed to verify.";
02089                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_RCODE_BADKEY: return "DNS bad key.";
02090                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_RCODE_BADTIME: return "DNS signature validity expired.";
02091                 case Sylloge.WinAPI.ErrorCodes.DNS_INFO_NO_RECORDS: return "No records found for given DNS query.";
02092                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_BAD_PACKET: return "Bad DNS packet.";
02093                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_NO_PACKET: return "No DNS packet.";
02094                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_RCODE: return "DNS error, check rcode.";
02095                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_UNSECURE_PACKET: return "Unsecured DNS packet.";
02096                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_INVALID_TYPE: return "Invalid DNS type.";
02097                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_INVALID_IP_ADDRESS: return "Invalid IP address.";
02098                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_INVALID_PROPERTY: return "Invalid property.";
02099                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_TRY_AGAIN_LATER: return "Try DNS operation again later.";
02100                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_NOT_UNIQUE: return "Record for given name and type is not unique.";
02101                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_NON_RFC_NAME: return "DNS name does not comply with RFC specifications.";
02102                 case Sylloge.WinAPI.ErrorCodes.DNS_STATUS_FQDN: return "DNS name is a fully-qualified DNS name.";
02103                 case Sylloge.WinAPI.ErrorCodes.DNS_STATUS_DOTTED_NAME: return "DNS name is dotted (multi-label).";
02104                 case Sylloge.WinAPI.ErrorCodes.DNS_STATUS_SINGLE_PART_NAME: return "DNS name is a single-part name.";
02105                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_INVALID_NAME_CHAR: return "DNS name contains an invalid character.";
02106                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_NUMERIC_NAME: return "DNS name is entirely numeric.";
02107                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER: return "The operation requested is not permitted on a DNS root server.";
02108                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION: return "The record could not be created because this part of the DNS namespace has been delegated to another server.";
02109                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_CANNOT_FIND_ROOT_HINTS: return "The DNS server could not find a set of root hints.";
02110                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_INCONSISTENT_ROOT_HINTS: return "The DNS server found root hints but they were not consistent across all adapters.";
02111                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_DWORD_VALUE_TOO_SMALL: return "The specified value is too small for this parameter.";
02112                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_DWORD_VALUE_TOO_LARGE: return "The specified value is too large for this parameter.";
02113                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_BACKGROUND_LOADING: return "This operation is not allowed while the DNS server is loading zones in the background. Please try again later.";
02114                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_NOT_ALLOWED_ON_RODC: return "The operation requested is not permitted on against a DNS server running on a read-only DC.";
02115                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_NOT_ALLOWED_UNDER_DNAME: return "No data is allowed to exist underneath a DNAME record.";
02116                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_DELEGATION_REQUIRED: return "This operation requires credentials delegation.";
02117                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_ZONE_DOES_NOT_EXIST: return "DNS zone does not exist.";
02118                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_NO_ZONE_INFO: return "DNS zone information not available.";
02119                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_INVALID_ZONE_OPERATION: return "Invalid operation for DNS zone.";
02120                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_ZONE_CONFIGURATION_ERROR: return "Invalid DNS zone configuration.";
02121                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_ZONE_HAS_NO_SOA_RECORD: return "DNS zone has no start of authority (SOA) record.";
02122                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_ZONE_HAS_NO_NS_RECORDS: return "DNS zone has no Name Server (NS) record.";
02123                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_ZONE_LOCKED: return "DNS zone is locked.";
02124                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_ZONE_CREATION_FAILED: return "DNS zone creation failed.";
02125                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_ZONE_ALREADY_EXISTS: return "DNS zone already exists.";
02126                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_AUTOZONE_ALREADY_EXISTS: return "DNS automatic zone already exists.";
02127                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_INVALID_ZONE_TYPE: return "Invalid DNS zone type.";
02128                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP: return "Secondary DNS zone requires master IP address.";
02129                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_ZONE_NOT_SECONDARY: return "DNS zone not secondary.";
02130                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_NEED_SECONDARY_ADDRESSES: return "Need secondary IP address.";
02131                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_WINS_INIT_FAILED: return "WINS initialization failed.";
02132                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_NEED_WINS_SERVERS: return "Need WINS servers.";
02133                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_NBSTAT_INIT_FAILED: return "NBTSTAT initialization call failed.";
02134                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_SOA_DELETE_INVALID: return "Invalid delete of start of authority (SOA)";
02135                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_FORWARDER_ALREADY_EXISTS: return "A conditional forwarding zone already exists for that name.";
02136                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_ZONE_REQUIRES_MASTER_IP: return "This zone must be configured with one or more master DNS server IP addresses.";
02137                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_ZONE_IS_SHUTDOWN: return "The operation cannot be performed because this zone is shutdown.";
02138                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_PRIMARY_REQUIRES_DATAFILE: return "Primary DNS zone requires datafile.";
02139                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_INVALID_DATAFILE_NAME: return "Invalid datafile name for DNS zone.";
02140                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_DATAFILE_OPEN_FAILURE: return "Failed to open datafile for DNS zone.";
02141                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_FILE_WRITEBACK_FAILED: return "Failed to write datafile for DNS zone.";
02142                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_DATAFILE_PARSING: return "Failure while reading datafile for DNS zone.";
02143                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_RECORD_DOES_NOT_EXIST: return "DNS record does not exist.";
02144                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_RECORD_FORMAT: return "DNS record format error.";
02145                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_NODE_CREATION_FAILED: return "Node creation failure in DNS.";
02146                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_UNKNOWN_RECORD_TYPE: return "Unknown DNS record type.";
02147                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_RECORD_TIMED_OUT: return "DNS record timed out.";
02148                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_NAME_NOT_IN_ZONE: return "Name not in DNS zone.";
02149                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_CNAME_LOOP: return "CNAME loop detected.";
02150                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_NODE_IS_CNAME: return "Node is a CNAME DNS record.";
02151                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_CNAME_COLLISION: return "A CNAME record already exists for given name.";
02152                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT: return "Record only at DNS zone root.";
02153                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_RECORD_ALREADY_EXISTS: return "DNS record already exists.";
02154                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_SECONDARY_DATA: return "Secondary DNS zone data error.";
02155                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_NO_CREATE_CACHE_DATA: return "Could not create DNS cache data.";
02156                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_NAME_DOES_NOT_EXIST: return "DNS name does not exist.";
02157                 case Sylloge.WinAPI.ErrorCodes.DNS_WARNING_PTR_CREATE_FAILED: return "Could not create pointer (PTR) record.";
02158                 case Sylloge.WinAPI.ErrorCodes.DNS_WARNING_DOMAIN_UNDELETED: return "DNS domain was undeleted.";
02159                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_DS_UNAVAILABLE: return "The directory service is unavailable.";
02160                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_DS_ZONE_ALREADY_EXISTS: return "DNS zone already exists in the directory service.";
02161                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE: return "DNS server not creating or reading the boot file for the directory service integrated DNS zone.";
02162                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_NODE_IS_DNAME: return "Node is a DNAME DNS record.";
02163                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_DNAME_COLLISION: return "A DNAME record already exists for given name.";
02164                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_ALIAS_LOOP: return "An alias loop has been detected with either CNAME or DNAME records.";
02165                 case Sylloge.WinAPI.ErrorCodes.DNS_INFO_AXFR_COMPLETE: return "DNS AXFR (zone transfer) complete.";
02166                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_AXFR: return "DNS zone transfer failed.";
02167                 case Sylloge.WinAPI.ErrorCodes.DNS_INFO_ADDED_LOCAL_WINS: return "Added local WINS server.";
02168                 case Sylloge.WinAPI.ErrorCodes.DNS_STATUS_CONTINUE_NEEDED: return "Secure update call needs to continue update request.";
02169                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_NO_TCPIP: return "TCP/IP network protocol not installed.";
02170                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_NO_DNS_SERVERS: return "No DNS servers configured for local system.";
02171                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_DP_DOES_NOT_EXIST: return "The specified directory partition does not exist.";
02172                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_DP_ALREADY_EXISTS: return "The specified directory partition already exists.";
02173                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_DP_NOT_ENLISTED: return "This DNS server is not enlisted in the specified directory partition.";
02174                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_DP_ALREADY_ENLISTED: return "This DNS server is already enlisted in the specified directory partition.";
02175                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_DP_NOT_AVAILABLE: return "The directory partition is not available at this time. Please wait a few minutes and try again.";
02176                 case Sylloge.WinAPI.ErrorCodes.DNS_ERROR_DP_FSMO_ERROR: return "The application directory partition operation failed. The domain controller holding the domain naming master role is down or unable to service the request or is not running Windows Server 2003.";
02177                 case Sylloge.WinAPI.ErrorCodes.WSAEINTR: return "A blocking operation was interrupted by a call to WSACancelBlockingCall.";
02178                 case Sylloge.WinAPI.ErrorCodes.WSAEBADF: return "The file handle supplied is not valid.";
02179                 case Sylloge.WinAPI.ErrorCodes.WSAEACCES: return "An attempt was made to access a socket in a way forbidden by its access permissions.";
02180                 case Sylloge.WinAPI.ErrorCodes.WSAEFAULT: return "The system detected an invalid pointer address in attempting to use a pointer argument in a call.";
02181                 case Sylloge.WinAPI.ErrorCodes.WSAEINVAL: return "An invalid argument was supplied.";
02182                 case Sylloge.WinAPI.ErrorCodes.WSAEMFILE: return "Too many open sockets.";
02183                 case Sylloge.WinAPI.ErrorCodes.WSAEWOULDBLOCK: return "A non-blocking socket operation could not be completed immediately.";
02184                 case Sylloge.WinAPI.ErrorCodes.WSAEINPROGRESS: return "A blocking operation is currently executing.";
02185                 case Sylloge.WinAPI.ErrorCodes.WSAEALREADY: return "An operation was attempted on a non-blocking socket that already had an operation in progress.";
02186                 case Sylloge.WinAPI.ErrorCodes.WSAENOTSOCK: return "An operation was attempted on something that is not a socket.";
02187                 case Sylloge.WinAPI.ErrorCodes.WSAEDESTADDRREQ: return "A required address was omitted from an operation on a socket.";
02188                 case Sylloge.WinAPI.ErrorCodes.WSAEMSGSIZE: return "A message sent on a datagram socket was larger than the internal message buffer or some other network limit, or the buffer used to receive a datagram into was smaller than the datagram itself.";
02189                 case Sylloge.WinAPI.ErrorCodes.WSAEPROTOTYPE: return "A protocol was specified in the socket function call that does not support the semantics of the socket type requested.";
02190                 case Sylloge.WinAPI.ErrorCodes.WSAENOPROTOOPT: return "An unknown, invalid, or unsupported option or level was specified in a getsockopt or setsockopt call.";
02191                 case Sylloge.WinAPI.ErrorCodes.WSAEPROTONOSUPPORT: return "The requested protocol has not been configured into the system, or no implementation for it exists.";
02192                 case Sylloge.WinAPI.ErrorCodes.WSAESOCKTNOSUPPORT: return "The support for the specified socket type does not exist in this address family.";
02193                 case Sylloge.WinAPI.ErrorCodes.WSAEOPNOTSUPP: return "The attempted operation is not supported for the type of object referenced.";
02194                 case Sylloge.WinAPI.ErrorCodes.WSAEPFNOSUPPORT: return "The protocol family has not been configured into the system or no implementation for it exists.";
02195                 case Sylloge.WinAPI.ErrorCodes.WSAEAFNOSUPPORT: return "An address incompatible with the requested protocol was used.";
02196                 case Sylloge.WinAPI.ErrorCodes.WSAEADDRINUSE: return "Only one usage of each socket address (protocol/network address/port) is normally permitted.";
02197                 case Sylloge.WinAPI.ErrorCodes.WSAEADDRNOTAVAIL: return "The requested address is not valid in its context.";
02198                 case Sylloge.WinAPI.ErrorCodes.WSAENETDOWN: return "A socket operation encountered a dead network.";
02199                 case Sylloge.WinAPI.ErrorCodes.WSAENETUNREACH: return "A socket operation was attempted to an unreachable network.";
02200                 case Sylloge.WinAPI.ErrorCodes.WSAENETRESET: return "The connection has been broken due to keep-alive activity detecting a failure while the operation was in progress.";
02201                 case Sylloge.WinAPI.ErrorCodes.WSAECONNABORTED: return "An established connection was aborted by the software in your host machine.";
02202                 case Sylloge.WinAPI.ErrorCodes.WSAECONNRESET: return "An existing connection was forcibly closed by the remote host.";
02203                 case Sylloge.WinAPI.ErrorCodes.WSAENOBUFS: return "An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full.";
02204                 case Sylloge.WinAPI.ErrorCodes.WSAEISCONN: return "A connect request was made on an already connected socket.";
02205                 case Sylloge.WinAPI.ErrorCodes.WSAENOTCONN: return "A request to send or receive data was disallowed because the socket is not connected and (when sending on a datagram socket using a sendto call) no address was supplied.";
02206                 case Sylloge.WinAPI.ErrorCodes.WSAESHUTDOWN: return "A request to send or receive data was disallowed because the socket had already been shut down in that direction with a previous shutdown call.";
02207                 case Sylloge.WinAPI.ErrorCodes.WSAETOOMANYREFS: return "Too many references to some kernel object.";
02208                 case Sylloge.WinAPI.ErrorCodes.WSAETIMEDOUT: return "A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.";
02209                 case Sylloge.WinAPI.ErrorCodes.WSAECONNREFUSED: return "No connection could be made because the target machine actively refused it.";
02210                 case Sylloge.WinAPI.ErrorCodes.WSAELOOP: return "Cannot translate name.";
02211                 case Sylloge.WinAPI.ErrorCodes.WSAENAMETOOLONG: return "Name component or name was too long.";
02212                 case Sylloge.WinAPI.ErrorCodes.WSAEHOSTDOWN: return "A socket operation failed because the destination host was down.";
02213                 case Sylloge.WinAPI.ErrorCodes.WSAEHOSTUNREACH: return "A socket operation was attempted to an unreachable host.";
02214                 case Sylloge.WinAPI.ErrorCodes.WSAENOTEMPTY: return "Cannot remove a directory that is not empty.";
02215                 case Sylloge.WinAPI.ErrorCodes.WSAEPROCLIM: return "A Windows Sockets implementation may have a limit on the number of applications that may use it simultaneously.";
02216                 case Sylloge.WinAPI.ErrorCodes.WSAEUSERS: return "Ran out of quota.";
02217                 case Sylloge.WinAPI.ErrorCodes.WSAEDQUOT: return "Ran out of disk quota.";
02218                 case Sylloge.WinAPI.ErrorCodes.WSAESTALE: return "File handle reference is no longer available.";
02219                 case Sylloge.WinAPI.ErrorCodes.WSAEREMOTE: return "Item is not available locally.";
02220                 case Sylloge.WinAPI.ErrorCodes.WSASYSNOTREADY: return "WSAStartup cannot function at this time because the underlying system it uses to provide network services is currently unavailable.";
02221                 case Sylloge.WinAPI.ErrorCodes.WSAVERNOTSUPPORTED: return "The Windows Sockets version requested is not supported.";
02222                 case Sylloge.WinAPI.ErrorCodes.WSANOTINITIALISED: return "Either the application has not called WSAStartup, or WSAStartup failed.";
02223                 case Sylloge.WinAPI.ErrorCodes.WSAEDISCON: return "Returned by WSARecv or WSARecvFrom to indicate the remote party has initiated a graceful shutdown sequence.";
02224                 case Sylloge.WinAPI.ErrorCodes.WSAENOMORE: return "No more results can be returned by WSALookupServiceNext.";
02225                 case Sylloge.WinAPI.ErrorCodes.WSAECANCELLED: return "A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled.";
02226                 case Sylloge.WinAPI.ErrorCodes.WSAEINVALIDPROCTABLE: return "The procedure call table is invalid.";
02227                 case Sylloge.WinAPI.ErrorCodes.WSAEINVALIDPROVIDER: return "The requested service provider is invalid.";
02228                 case Sylloge.WinAPI.ErrorCodes.WSAEPROVIDERFAILEDINIT: return "The requested service provider could not be loaded or initialized.";
02229                 case Sylloge.WinAPI.ErrorCodes.WSASYSCALLFAILURE: return "A system call has failed.";
02230                 case Sylloge.WinAPI.ErrorCodes.WSASERVICE_NOT_FOUND: return "No such service is known. The service cannot be found in the specified name space.";
02231                 case Sylloge.WinAPI.ErrorCodes.WSATYPE_NOT_FOUND: return "The specified class was not found.";
02232                 case Sylloge.WinAPI.ErrorCodes.WSA_E_NO_MORE: return "No more results can be returned by WSALookupServiceNext.";
02233                 case Sylloge.WinAPI.ErrorCodes.WSA_E_CANCELLED: return "A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled.";
02234                 case Sylloge.WinAPI.ErrorCodes.WSAEREFUSED: return "A database query failed because it was actively refused.";
02235                 case Sylloge.WinAPI.ErrorCodes.WSAHOST_NOT_FOUND: return "No such host is known.";
02236                 case Sylloge.WinAPI.ErrorCodes.WSATRY_AGAIN: return "This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server.";
02237                 case Sylloge.WinAPI.ErrorCodes.WSANO_RECOVERY: return "A non-recoverable error occurred during a database lookup.";
02238                 case Sylloge.WinAPI.ErrorCodes.WSANO_DATA: return "The requested name is valid, but no data of the requested type was found.";
02239                 case Sylloge.WinAPI.ErrorCodes.WSA_QOS_RECEIVERS: return "At least one reserve has arrived.";
02240                 case Sylloge.WinAPI.ErrorCodes.WSA_QOS_SENDERS: return "At least one path has arrived.";
02241                 case Sylloge.WinAPI.ErrorCodes.WSA_QOS_NO_SENDERS: return "There are no senders.";
02242                 case Sylloge.WinAPI.ErrorCodes.WSA_QOS_NO_RECEIVERS: return "There are no receivers.";
02243                 case Sylloge.WinAPI.ErrorCodes.WSA_QOS_REQUEST_CONFIRMED: return "Reserve has been confirmed.";
02244                 case Sylloge.WinAPI.ErrorCodes.WSA_QOS_ADMISSION_FAILURE: return "Error due to lack of resources.";
02245                 case Sylloge.WinAPI.ErrorCodes.WSA_QOS_POLICY_FAILURE: return "Rejected for administrative reasons - bad credentials.";
02246                 case Sylloge.WinAPI.ErrorCodes.WSA_QOS_BAD_STYLE: return "Unknown or conflicting style.";
02247                 case Sylloge.WinAPI.ErrorCodes.WSA_QOS_BAD_OBJECT: return "Problem with some part of the filterspec or providerspecific buffer in general.";
02248                 case Sylloge.WinAPI.ErrorCodes.WSA_QOS_TRAFFIC_CTRL_ERROR: return "Problem with some part of the flowspec.";
02249                 case Sylloge.WinAPI.ErrorCodes.WSA_QOS_GENERIC_ERROR: return "General QOS error.";
02250                 case Sylloge.WinAPI.ErrorCodes.WSA_QOS_ESERVICETYPE: return "An invalid or unrecognized service type was found in the flowspec.";
02251                 case Sylloge.WinAPI.ErrorCodes.WSA_QOS_EFLOWSPEC: return "An invalid or inconsistent flowspec was found in the QOS structure.";
02252                 case Sylloge.WinAPI.ErrorCodes.WSA_QOS_EPROVSPECBUF: return "Invalid QOS provider-specific buffer.";
02253                 case Sylloge.WinAPI.ErrorCodes.WSA_QOS_EFILTERSTYLE: return "An invalid QOS filter style was used.";
02254                 case Sylloge.WinAPI.ErrorCodes.WSA_QOS_EFILTERTYPE: return "An invalid QOS filter type was used.";
02255                 case Sylloge.WinAPI.ErrorCodes.WSA_QOS_EFILTERCOUNT: return "An incorrect number of QOS FILTERSPECs were specified in the FLOWDESCRIPTOR.";
02256                 case Sylloge.WinAPI.ErrorCodes.WSA_QOS_EOBJLENGTH: return "An object with an invalid ObjectLength field was specified in the QOS provider-specific buffer.";
02257                 case Sylloge.WinAPI.ErrorCodes.WSA_QOS_EFLOWCOUNT: return "An incorrect number of flow descriptors was specified in the QOS structure.";
02258                 case Sylloge.WinAPI.ErrorCodes.WSA_QOS_EUNKOWNPSOBJ: return "An unrecognized object was found in the QOS provider-specific buffer.";
02259                 case Sylloge.WinAPI.ErrorCodes.WSA_QOS_EPOLICYOBJ: return "An invalid policy object was found in the QOS provider-specific buffer.";
02260                 case Sylloge.WinAPI.ErrorCodes.WSA_QOS_EFLOWDESC: return "An invalid QOS flow descriptor was found in the flow descriptor list.";
02261                 case Sylloge.WinAPI.ErrorCodes.WSA_QOS_EPSFLOWSPEC: return "An invalid or inconsistent flowspec was found in the QOS provider specific buffer.";
02262                 case Sylloge.WinAPI.ErrorCodes.WSA_QOS_EPSFILTERSPEC: return "An invalid FILTERSPEC was found in the QOS provider-specific buffer.";
02263                 case Sylloge.WinAPI.ErrorCodes.WSA_QOS_ESDMODEOBJ: return "An invalid shape discard mode object was found in the QOS provider specific buffer.";
02264                 case Sylloge.WinAPI.ErrorCodes.WSA_QOS_ESHAPERATEOBJ: return "An invalid shaping rate object was found in the QOS provider-specific buffer.";
02265                 case Sylloge.WinAPI.ErrorCodes.WSA_QOS_RESERVED_PETYPE: return "A reserved policy element was found in the QOS provider-specific buffer.";
02266                 case Sylloge.WinAPI.ErrorCodes.WSA_SECURE_HOST_NOT_FOUND: return "No such host is known securely.";
02267                 case Sylloge.WinAPI.ErrorCodes.WSA_IPSEC_NAME_POLICY_ERROR: return "Name based IPSEC policy could not be added.";
02268                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_OUT_OF_HANDLES: return "No more handles could be generated at this time.";
02269                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_TIMEOUT: return "The request has timed out.";
02270                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_EXTENDED_ERROR: return "An extended error was returned from the server. This is typically a string or buffer containing a verbose error message. Call InternetGetLastResponseInfo to retrieve the error text.";
02271                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_INTERNAL_ERROR: return "An internal error has occurred.";
02272                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_INVALID_URL: return "The URL is invalid.";
02273                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_UNRECOGNIZED_SCHEME: return "The URL scheme could not be recognized, or is not supported.";
02274                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_NAME_NOT_RESOLVED: return "The server name could not be resolved.";
02275                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_PROTOCOL_NOT_FOUND: return "The requested protocol could not be located.";
02276                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_INVALID_OPTION: return "A request to InternetQueryOption or InternetSetOption specified an invalid option value.";
02277                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_BAD_OPTION_LENGTH: return "The length of an option supplied to InternetQueryOption or InternetSetOption is incorrect for the type of option specified.";
02278                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_OPTION_NOT_SETTABLE: return "The requested option cannot be set, only queried.";
02279                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_SHUTDOWN: return "WinINet support is being shut down or unloaded.";
02280                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_INCORRECT_USER_NAME: return "The request to connect and log on to an FTP server could not be completed because the supplied user name is incorrect.";
02281                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_INCORRECT_PASSWORD: return "The request to connect and log on to an FTP server could not be completed because the supplied password is incorrect.";
02282                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_LOGIN_FAILURE: return "The request to connect and log on to an FTP server failed.";
02283                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_INVALID_OPERATION: return "The requested operation is invalid.";
02284                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_OPERATION_CANCELLED: return "The operation was canceled, usually because the handle on which the request was operating was closed before the operation completed.";
02285                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_INCORRECT_HANDLE_TYPE: return "The type of handle supplied is incorrect for this operation.";
02286                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_INCORRECT_HANDLE_STATE: return "The requested operation cannot be carried out because the handle supplied is not in the correct state.";
02287                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_NOT_PROXY_REQUEST: return "The request cannot be made via a proxy.";
02288                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_REGISTRY_VALUE_NOT_FOUND: return "A required registry value could not be located.";
02289                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_BAD_REGISTRY_PARAMETER: return "A required registry value was located but is an incorrect type or has an invalid value.";
02290                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_NO_DIRECT_ACCESS: return "Direct network access cannot be made at this time.";
02291                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_NO_CONTEXT: return "An asynchronous request could not be made because a zero context value was supplied.";
02292                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_NO_CALLBACK: return "An asynchronous request could not be made because a callback function has not been set.";
02293                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_REQUEST_PENDING: return "The required operation could not be completed because one or more requests are pending.";
02294                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_INCORRECT_FORMAT: return "The format of the request is invalid.";
02295                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_ITEM_NOT_FOUND: return "The requested item could not be located.";
02296                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_CANNOT_CONNECT: return "The attempt to connect to the server failed.";
02297                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_CONNECTION_ABORTED: return "The connection with the server has been terminated.";
02298                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_CONNECTION_RESET: return "The connection with the server has been reset.";
02299                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_FORCE_RETRY: return "The function needs to redo the request.";
02300                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_INVALID_PROXY_REQUEST: return "The request to the proxy was invalid.";
02301                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_NEED_UI: return "Windows Vista and Windows Server 2008 and earlier only.";
02302                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_HANDLE_EXISTS: return "The request failed because the handle already exists.";
02303                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_SEC_CERT_DATE_INVALID: return "SSL certificate date that was received from the server is bad. The certificate is expired.";
02304                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_SEC_CERT_CN_INVALID: return "SSL certificate common name (host name field) is incorrect—for example, if you entered www.server.com and the common name on the certificate says www.different.com.";
02305                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_HTTP_TO_HTTPS_ON_REDIR: return "The application is moving from a non-SSL to an SSL connection because of a redirect.";
02306                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_HTTPS_TO_HTTP_ON_REDIR: return "The application is moving from an SSL to an non-SSL connection because of a redirect.";
02307                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_MIXED_SECURITY: return "The content is not entirely secure. Some of the content being viewed may have come from unsecured servers.";
02308                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_CHG_POST_IS_NON_SECURE: return "The application is posting and attempting to change multiple lines of text on a server that is not secure.";
02309                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_POST_IS_NON_SECURE: return "The application is posting data to a server that is not secure.";
02310                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_CLIENT_AUTH_CERT_NEEDED: return "The server is requesting client authentication.";
02311                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_INVALID_CA: return "The function is unfamiliar with the Certificate Authority that generated the server's certificate.";
02312                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_CLIENT_AUTH_NOT_SETUP: return "Client authorization is not set up on this computer.";
02313                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_ASYNC_THREAD_FAILED: return "The application could not start an asynchronous thread.";
02314                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_REDIRECT_SCHEME_CHANGE: return "The function could not handle the redirection, because the scheme changed (for example, HTTP to FTP).";
02315                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_DIALOG_PENDING: return "Another thread has a password dialog box in progress.";
02316                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_RETRY_DIALOG: return "The dialog box should be retried.";
02317                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_HTTPS_HTTP_SUBMIT_REDIR: return "The data being submitted to an SSL connection is being redirected to a non-SSL connection.";
02318                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_INSERT_CDROM: return "Windows Vista and Windows Server 2008 and earlier only.";
02319                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_FORTEZZA_LOGIN_NEEDED: return "The requested resource requires Fortezza authentication.";
02320                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_SEC_CERT_ERRORS: return "The SSL certificate contains errors.";
02321                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_SEC_CERT_NO_REV: return "ERROR_INTERNET_SEC_CERT_NO_REV";
02322                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_SEC_CERT_REV_FAILED: return "R_INTERNET_SEC_CERT_REV_FAILED";
02323                 case Sylloge.WinAPI.ErrorCodes.ERROR_FTP_TRANSFER_IN_PROGRESS: return "The requested operation cannot be made on the FTP session handle because an operation is already in progress.";
02324                 case Sylloge.WinAPI.ErrorCodes.ERROR_FTP_DROPPED: return "The FTP operation was not completed because the session was aborted.";
02325                 case Sylloge.WinAPI.ErrorCodes.ERROR_FTP_NO_PASSIVE_MODE: return "Passive mode is not available on the server.";
02326                 case Sylloge.WinAPI.ErrorCodes.ERROR_GOPHER_PROTOCOL_ERROR: return "Windows XP and Windows Server 2003 R2 and earlier only.";
02327                 case Sylloge.WinAPI.ErrorCodes.ERROR_GOPHER_NOT_FILE: return "Windows XP and Windows Server 2003 R2 and earlier only.";
02328                 case Sylloge.WinAPI.ErrorCodes.ERROR_GOPHER_DATA_ERROR: return "Windows XP and Windows Server 2003 R2 and earlier only.";
02329                 case Sylloge.WinAPI.ErrorCodes.ERROR_GOPHER_END_OF_DATA: return "Windows XP and Windows Server 2003 R2 and earlier only.";
02330                 case Sylloge.WinAPI.ErrorCodes.ERROR_GOPHER_INVALID_LOCATOR: return "Windows XP and Windows Server 2003 R2 and earlier only.";
02331                 case Sylloge.WinAPI.ErrorCodes.ERROR_GOPHER_INCORRECT_LOCATOR_TYPE: return "Windows XP and Windows Server 2003 R2 and earlier only.";
02332                 case Sylloge.WinAPI.ErrorCodes.ERROR_GOPHER_NOT_GOPHER_PLUS: return "Windows XP and Windows Server 2003 R2 and earlier only.";
02333                 case Sylloge.WinAPI.ErrorCodes.ERROR_GOPHER_ATTRIBUTE_NOT_FOUND: return "Windows XP and Windows Server 2003 R2 and earlier only.";
02334                 case Sylloge.WinAPI.ErrorCodes.ERROR_GOPHER_UNKNOWN_LOCATOR: return "Windows XP and Windows Server 2003 R2 and earlier only.";
02335                 case Sylloge.WinAPI.ErrorCodes.ERROR_HTTP_HEADER_NOT_FOUND: return "The requested header could not be located.";
02336                 case Sylloge.WinAPI.ErrorCodes.ERROR_HTTP_DOWNLEVEL_SERVER: return "The server did not return any headers.";
02337                 case Sylloge.WinAPI.ErrorCodes.ERROR_HTTP_INVALID_SERVER_RESPONSE: return "The server response could not be parsed.";
02338                 case Sylloge.WinAPI.ErrorCodes.ERROR_HTTP_INVALID_HEADER: return "The supplied header is invalid.";
02339                 case Sylloge.WinAPI.ErrorCodes.ERROR_HTTP_INVALID_QUERY_REQUEST: return "The request made to HttpQueryInfo is invalid.";
02340                 case Sylloge.WinAPI.ErrorCodes.ERROR_HTTP_HEADER_ALREADY_EXISTS: return "The header could not be added because it already exists.";
02341                 case Sylloge.WinAPI.ErrorCodes.ERROR_HTTP_REDIRECT_FAILED: return "The redirection failed because either the scheme changed (for example, HTTP to FTP) or all attempts made to redirect failed (default is five attempts).";
02342                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_SECURITY_CHANNEL_ERROR: return "The application experienced an internal error loading the SSL libraries.";
02343                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_UNABLE_TO_CACHE_FILE: return "The function was unable to cache the file.";
02344                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_TCPIP_NOT_INSTALLED: return "The required protocol stack is not loaded and the application cannot start WinSock.";
02345                 case Sylloge.WinAPI.ErrorCodes.ERROR_HTTP_NOT_REDIRECTED: return "The HTTP request was not redirected.";
02346                 case Sylloge.WinAPI.ErrorCodes.ERROR_HTTP_COOKIE_NEEDS_CONFIRMATION: return "Windows Vista and Windows Server 2008 and earlier only.";
02347                 case Sylloge.WinAPI.ErrorCodes.ERROR_HTTP_COOKIE_DECLINED: return "The HTTP cookie was declined by the server.";
02348                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_DISCONNECTED: return "The Internet connection has been lost.";
02349                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_SERVER_UNREACHABLE: return "The Web site or server indicated is unreachable.";
02350                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_PROXY_SERVER_UNREACHABLE: return "The designated proxy server cannot be reached.";
02351                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_BAD_AUTO_PROXY_SCRIPT: return "There was an error in the automatic proxy configuration script.";
02352                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_UNABLE_TO_DOWNLOAD_SCRIPT: return "The automatic proxy configuration script could not be downloaded. The INTERNET_FLAG_MUST_CACHE_REQUEST flag was set.";
02353                 case Sylloge.WinAPI.ErrorCodes.ERROR_HTTP_REDIRECT_NEEDS_CONFIRMATION: return "The redirection requires user confirmation.";
02354                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_SEC_INVALID_CERT: return "SSL certificate is invalid.";
02355                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_SEC_CERT_REVOKED: return "SSL certificate was revoked.";
02356                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_FAILED_DUETOSECURITYCHECK: return "The function failed due to a security check.";
02357                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_NOT_INITIALIZED: return "Initialization of the WinINet API has not occurred. Indicates that a higher-level function, such as InternetOpen, has not been called yet.";
02358                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_NEED_MSN_SSPI_PKG: return "Not currently implemented.";
02359                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_LOGIN_FAILURE_DISPLAY_ENTITY_BODY: return "The MS-Logoff digest header has been returned from the Web site. This header specifically instructs the digest package to purge credentials for the associated realm. This error will only be returned if INTERNET_ERROR_MASK_LOGIN_FAILURE_DISPLAY_ENTITY_BODY has been set.";
02360                 case Sylloge.WinAPI.ErrorCodes.ERROR_INTERNET_DECODING_FAILED: return "WinINet failed to perform content decoding on the response. For more information, see the Content Encoding topic.";
02361                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_QM_POLICY_EXISTS: return "The specified quick mode policy already exists.";
02362                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_QM_POLICY_NOT_FOUND: return "The specified quick mode policy was not found.";
02363                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_QM_POLICY_IN_USE: return "The specified quick mode policy is being used.";
02364                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_MM_POLICY_EXISTS: return "The specified main mode policy already exists.";
02365                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_MM_POLICY_NOT_FOUND: return "The specified main mode policy was not found";
02366                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_MM_POLICY_IN_USE: return "The specified main mode policy is being used.";
02367                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_MM_FILTER_EXISTS: return "The specified main mode filter already exists.";
02368                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_MM_FILTER_NOT_FOUND: return "The specified main mode filter was not found.";
02369                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_TRANSPORT_FILTER_EXISTS: return "The specified transport mode filter already exists.";
02370                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND: return "The specified transport mode filter does not exist.";
02371                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_MM_AUTH_EXISTS: return "The specified main mode authentication list exists.";
02372                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_MM_AUTH_NOT_FOUND: return "The specified main mode authentication list was not found.";
02373                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_MM_AUTH_IN_USE: return "The specified main mode authentication list is being used.";
02374                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND: return "The specified default main mode policy was not found.";
02375                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND: return "The specified default main mode authentication list was not found.";
02376                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND: return "The specified default quick mode policy was not found.";
02377                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_TUNNEL_FILTER_EXISTS: return "The specified tunnel mode filter exists.";
02378                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND: return "The specified tunnel mode filter was not found.";
02379                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_MM_FILTER_PENDING_DELETION: return "The Main Mode filter is pending deletion.";
02380                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION: return "The transport filter is pending deletion.";
02381                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION: return "The tunnel filter is pending deletion.";
02382                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_MM_POLICY_PENDING_DELETION: return "The Main Mode policy is pending deletion.";
02383                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_MM_AUTH_PENDING_DELETION: return "The Main Mode authentication bundle is pending deletion.";
02384                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_QM_POLICY_PENDING_DELETION: return "The Quick Mode policy is pending deletion.";
02385                 case Sylloge.WinAPI.ErrorCodes.WARNING_IPSEC_MM_POLICY_PRUNED: return "The Main Mode policy was successfully added, but some of the requested offers are not supported.";
02386                 case Sylloge.WinAPI.ErrorCodes.WARNING_IPSEC_QM_POLICY_PRUNED: return "The Quick Mode policy was successfully added, but some of the requested offers are not supported.";
02387                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_NEG_STATUS_BEGIN: return "ERROR_IPSEC_IKE_NEG_STATUS_BEGIN";
02388                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_AUTH_FAIL: return "IKE authentication credentials are unacceptable";
02389                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_ATTRIB_FAIL: return "IKE security attributes are unacceptable";
02390                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_NEGOTIATION_PENDING: return "IKE Negotiation in progress";
02391                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR: return "General processing error";
02392                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_TIMED_OUT: return "Negotiation timed out";
02393                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_NO_CERT: return "IKE failed to find valid machine certificate. Contact your Network Security Administrator about installing a valid certificate in the appropriate Certificate Store.";
02394                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_SA_DELETED: return "IKE SA deleted by peer before establishment completed";
02395                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_SA_REAPED: return "IKE SA deleted before establishment completed";
02396                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_MM_ACQUIRE_DROP: return "Negotiation request sat in Queue too long";
02397                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_QM_ACQUIRE_DROP: return "Negotiation request sat in Queue too long";
02398                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_QUEUE_DROP_MM: return "Negotiation request sat in Queue too long";
02399                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM: return "Negotiation request sat in Queue too long";
02400                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_DROP_NO_RESPONSE: return "No response from peer";
02401                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_MM_DELAY_DROP: return "Negotiation took too long";
02402                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_QM_DELAY_DROP: return "Negotiation took too long";
02403                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_ERROR: return "Unknown error occurred";
02404                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_CRL_FAILED: return "Certificate Revocation Check failed";
02405                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_INVALID_KEY_USAGE: return "Invalid certificate key usage";
02406                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_INVALID_CERT_TYPE: return "Invalid certificate type";
02407                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_NO_PRIVATE_KEY: return "IKE negotiation failed because the machine certificate used does not have a private key. IPsec certificates require a private key. Contact your Network Security administrator about replacing with a certificate that has a private key.";
02408                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_SIMULTANEOUS_REKEY: return "Simultaneous rekeys were detected.";
02409                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_DH_FAIL: return "Failure in Diffie-Hellman computation";
02410                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_CRITICAL_PAYLOAD_NOT_RECOGNIZED: return "Don't know how to process critical payload";
02411                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_INVALID_HEADER: return "Invalid header";
02412                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_NO_POLICY: return "No policy configured";
02413                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_INVALID_SIGNATURE: return "Failed to verify signature";
02414                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_KERBEROS_ERROR: return "Failed to authenticate using Kerberos";
02415                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_NO_PUBLIC_KEY: return "Peer's certificate did not have a public key";
02416                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_PROCESS_ERR: return "Error processing error payload";
02417                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_PROCESS_ERR_SA: return "Error processing SA payload";
02418                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_PROCESS_ERR_PROP: return "Error processing Proposal payload";
02419                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_PROCESS_ERR_TRANS: return "Error processing Transform payload";
02420                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_PROCESS_ERR_KE: return "Error processing KE payload";
02421                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_PROCESS_ERR_ID: return "Error processing ID payload";
02422                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_PROCESS_ERR_CERT: return "Error processing Cert payload";
02423                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ: return "Error processing Certificate Request payload";
02424                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_PROCESS_ERR_HASH: return "Error processing Hash payload";
02425                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_PROCESS_ERR_SIG: return "Error processing Signature payload";
02426                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_PROCESS_ERR_NONCE: return "Error processing Nonce payload";
02427                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY: return "Error processing Notify payload";
02428                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_PROCESS_ERR_DELETE: return "Error processing Delete Payload";
02429                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR: return "Error processing VendorId payload";
02430                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_INVALID_PAYLOAD: return "Invalid payload received";
02431                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_LOAD_SOFT_SA: return "Soft SA loaded";
02432                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN: return "Soft SA torn down";
02433                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_INVALID_COOKIE: return "Invalid cookie received.";
02434                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_NO_PEER_CERT: return "Peer failed to send valid machine certificate";
02435                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_PEER_CRL_FAILED: return "Certification Revocation check of peer's certificate failed";
02436                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_POLICY_CHANGE: return "New policy invalidated SAs formed with old policy";
02437                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_NO_MM_POLICY: return "There is no available Main Mode IKE policy.";
02438                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_NOTCBPRIV: return "Failed to enabled TCB privilege.";
02439                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_SECLOADFAIL: return "Failed to load SECURITY.DLL.";
02440                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_FAILSSPINIT: return "Failed to obtain security function table dispatch address from SSPI.";
02441                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_FAILQUERYSSP: return "Failed to query Kerberos package to obtain max token size.";
02442                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_SRVACQFAIL: return "Failed to obtain Kerberos server credentials for ISAKMP/ERROR_IPSEC_IKE service. Kerberos authentication will not function. The most likely reason for this is lack of domain membership. This is normal if your computer is a member of a workgroup.";
02443                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_SRVQUERYCRED: return "Failed to determine SSPI principal name for ISAKMP/ERROR_IPSEC_IKE service (QueryCredentialsAttributes).";
02444                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_GETSPIFAIL: return "Failed to obtain new SPI for the inbound SA from Ipsec driver. The most common cause for this is that the driver does not have the correct filter. Check your policy to verify the filters.";
02445                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_INVALID_FILTER: return "Given filter is invalid";
02446                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_OUT_OF_MEMORY: return "Memory allocation failed.";
02447                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED: return "Failed to add Security Association to IPSec Driver. The most common cause for this is if the IKE negotiation took too long to complete. If the problem persists, reduce the load on the faulting machine.";
02448                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_INVALID_POLICY: return "Invalid policy";
02449                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_UNKNOWN_DOI: return "Invalid DOI";
02450                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_INVALID_SITUATION: return "Invalid situation";
02451                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_DH_FAILURE: return "Diffie-Hellman failure";
02452                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_INVALID_GROUP: return "Invalid Diffie-Hellman group";
02453                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_ENCRYPT: return "Error encrypting payload";
02454                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_DECRYPT: return "Error decrypting payload";
02455                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_POLICY_MATCH: return "Policy match error";
02456                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_UNSUPPORTED_ID: return "Unsupported ID";
02457                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_INVALID_HASH: return "Hash verification failed";
02458                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_INVALID_HASH_ALG: return "Invalid hash algorithm";
02459                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_INVALID_HASH_SIZE: return "Invalid hash size";
02460                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG: return "Invalid encryption algorithm";
02461                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_INVALID_AUTH_ALG: return "Invalid authentication algorithm";
02462                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_INVALID_SIG: return "Invalid certificate signature";
02463                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_LOAD_FAILED: return "Load failed";
02464                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_RPC_DELETE: return "Deleted via RPC call";
02465                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_BENIGN_REINIT: return "Temporary state created to perform reinit. This is not a real failure.";
02466                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY: return "The lifetime value received in the Responder Lifetime Notify is below the Windows 2000 configured minimum value. Please fix the policy on the peer machine.";
02467                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_INVALID_MAJOR_VERSION: return "The recipient cannot handle version of IKE specified in the header.";
02468                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN: return "Key length in certificate is too small for configured security requirements.";
02469                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_MM_LIMIT: return "Max number of established MM SAs to peer exceeded.";
02470                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_NEGOTIATION_DISABLED: return "IKE received a policy that disables negotiation.";
02471                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_QM_LIMIT: return "Reached maximum quick mode limit for the main mode. New main mode will be started.";
02472                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_MM_EXPIRED: return "Main mode SA lifetime expired or peer sent a main mode delete.";
02473                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_PEER_MM_ASSUMED_INVALID: return "Main mode SA assumed to be invalid because peer stopped responding.";
02474                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_CERT_CHAIN_POLICY_MISMATCH: return "Certificate doesn't chain to a trusted root in IPsec policy.";
02475                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_UNEXPECTED_MESSAGE_ID: return "Received unexpected message ID.";
02476                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_INVALID_AUTH_PAYLOAD: return "Received invalid authentication offers.";
02477                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_DOS_COOKIE_SENT: return "Sent DOS cookie notify to initiator.";
02478                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_SHUTTING_DOWN: return "IKE service is shutting down.";
02479                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_CGA_AUTH_FAILED: return "Could not verify binding between CGA address and certificate.";
02480                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_PROCESS_ERR_NATOA: return "Error processing NatOA payload.";
02481                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_INVALID_MM_FOR_QM: return "Parameters of the main mode are invalid for this quick mode.";
02482                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_QM_EXPIRED: return "Quick mode SA was expired by IPsec driver.";
02483                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_TOO_MANY_FILTERS: return "Too many dynamically added IKEEXT filters were detected.";
02484                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_KILL_DUMMY_NAP_TUNNEL: return "NAP reauth succeeded and must delete the dummy NAP IkeV2 tunnel.";
02485                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_INNER_IP_ASSIGNMENT_FAILURE: return "Error in assigning inner IP address to initiator in tunnel mode.";
02486                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_REQUIRE_CP_PAYLOAD_MISSING: return "Require configuration payload missing.";
02487                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_KEY_MODULE_IMPERSONATION_NEGOTIATION_PENDING: return "A negotiation running as the security principle who issued the connection is in progress";
02488                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_COEXISTENCE_SUPPRESS: return "SA was deleted due to IKEv1/AuthIP co-existence suppress check.";
02489                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_RATELIMIT_DROP: return "Incoming SA request was dropped due to peer IP address rate limiting.";
02490                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_PEER_DOESNT_SUPPORT_MOBIKE: return "Peer does not support MOBIKE.";
02491                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE: return "SA establishment is not authorized.";
02492                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_IKE_NEG_STATUS_EXTENDED_END: return "ERROR_IPSEC_IKE_NEG_STATUS_EXTENDED_END";
02493                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_BAD_SPI: return "The SPI in the packet does not match a valid IPsec SA.";
02494                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_SA_LIFETIME_EXPIRED: return "Packet was received on an IPsec SA whose lifetime has expired.";
02495                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_WRONG_SA: return "Packet was received on an IPsec SA that doesn't match the packet characteristics.";
02496                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_REPLAY_CHECK_FAILED: return "Packet sequence number replay check failed.";
02497                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_INVALID_PACKET: return "IPsec header and/or trailer in the packet is invalid.";
02498                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_INTEGRITY_CHECK_FAILED: return "IPsec integrity check failed.";
02499                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_CLEAR_TEXT_DROP: return "IPsec dropped a clear text packet.";
02500                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_AUTH_FIREWALL_DROP: return "IPsec dropped an incoming ESP packet in authenticated firewall mode. This drop is benign.";
02501                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_THROTTLE_DROP: return "IPsec dropped a packet due to DOS throttle.";
02502                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_DOSP_BLOCK: return "IPsec Dos Protection matched an explicit block rule.";
02503                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_DOSP_RECEIVED_MULTICAST: return "IPsec Dos Protection received an IPsec specific multicast packet which is not allowed.";
02504                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_DOSP_INVALID_PACKET: return "IPsec Dos Protection received an incorrectly formatted packet.";
02505                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_DOSP_STATE_LOOKUP_FAILED: return "IPsec Dos Protection failed to lookup state.";
02506                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_DOSP_MAX_ENTRIES: return "IPsec Dos Protection failed to create state because there are already maximum number of entries allowed by policy.";
02507                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_DOSP_KEYMOD_NOT_ALLOWED: return "IPsec Dos Protection received an IPsec negotiation packet for a keying module which is not allowed by policy.";
02508                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_DOSP_NOT_INSTALLED: return "IPsec Dos Protection has not been enabled.";
02509                 case Sylloge.WinAPI.ErrorCodes.ERROR_IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES: return "IPsec Dos Protection failed to create per internal IP ratelimit queue because there is already maximum number of queues allowed by policy.";
02510                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_SECTION_NOT_FOUND: return "The requested section was not present in the activation context.";
02511                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_CANT_GEN_ACTCTX: return "The application has failed to start because its side-by-side configuration is incorrect. Please see the application event log or use the command-line sxstrace.exe tools for more detail.";
02512                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_INVALID_ACTCTXDATA_FORMAT: return "The application binding data format is invalid.";
02513                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_ASSEMBLY_NOT_FOUND: return "The referenced assembly is not installed on your system.";
02514                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_MANIFEST_FORMAT_ERROR: return "The manifest file does not begin with the required tag and format information.";
02515                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_MANIFEST_PARSE_ERROR: return "The manifest file contains one or more syntax errors.";
02516                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_ACTIVATION_CONTEXT_DISABLED: return "The application attempted to activate a disabled activation context.";
02517                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_KEY_NOT_FOUND: return "The requested lookup key was not found in any active activation context.";
02518                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_VERSION_CONFLICT: return "A component version required by the application conflicts with another component version already active.";
02519                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_WRONG_SECTION_TYPE: return "The type requested activation context section does not match the query API used.";
02520                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_THREAD_QUERIES_DISABLED: return "Lack of system resources has required isolated activation to be disabled for the current thread of execution.";
02521                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET: return "An attempt to set the process default activation context failed because the process default activation context was already set.";
02522                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_UNKNOWN_ENCODING_GROUP: return "The encoding group identifier specified is not recognized.";
02523                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_UNKNOWN_ENCODING: return "The encoding requested is not recognized.";
02524                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_INVALID_XML_NAMESPACE_URI: return "The manifest contains a reference to an invalid URI.";
02525                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED: return "The application manifest contains a reference to a dependent assembly which is not installed";
02526                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED: return "The manifest for an assembly used by the application has a reference to a dependent assembly which is not installed";
02527                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE: return "The manifest contains an attribute for the assembly identity which is not valid.";
02528                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE: return "The manifest is missing the required default namespace specification on the assembly element.";
02529                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE: return "asm.v1.";
02530                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT: return "The private manifest probed has crossed a path with an unsupported reparse point.";
02531                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_DUPLICATE_DLL_NAME: return "Two or more components referenced directly or indirectly by the application manifest have files by the same name.";
02532                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME: return "Two or more components referenced directly or indirectly by the application manifest have window classes with the same name.";
02533                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_DUPLICATE_CLSID: return "Two or more components referenced directly or indirectly by the application manifest have the same COM server CLSIDs.";
02534                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_DUPLICATE_IID: return "Two or more components referenced directly or indirectly by the application manifest have proxies for the same COM interface IIDs.";
02535                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_DUPLICATE_TLBID: return "Two or more components referenced directly or indirectly by the application manifest have the same COM type library TLBIDs.";
02536                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_DUPLICATE_PROGID: return "Two or more components referenced directly or indirectly by the application manifest have the same COM ProgIDs.";
02537                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_DUPLICATE_ASSEMBLY_NAME: return "Two or more components referenced directly or indirectly by the application manifest are different versions of the same component which is not permitted.";
02538                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_FILE_HASH_MISMATCH: return "A component's file does not match the verification information present in the component manifest.";
02539                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_POLICY_PARSE_ERROR: return "The policy manifest contains one or more syntax errors.";
02540                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_MISSINGQUOTE: return "A string literal was expected, but no opening quote character was found.";
02541                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_COMMENTSYNTAX: return "Incorrect syntax was used in a comment.";
02542                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_BADSTARTNAMECHAR: return "A name was started with an invalid character.";
02543                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_BADNAMECHAR: return "A name contained an invalid character.";
02544                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_BADCHARINSTRING: return "A string literal contained an invalid character.";
02545                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_XMLDECLSYNTAX: return "Invalid syntax for an xml declaration.";
02546                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_BADCHARDATA: return "An Invalid character was found in text content.";
02547                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_MISSINGWHITESPACE: return "Required white space was missing.";
02548                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_EXPECTINGTAGEND: return "The character '>' was expected.";
02549                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_MISSINGSEMICOLON: return "A semi colon character was expected.";
02550                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_UNBALANCEDPAREN: return "Unbalanced parentheses.";
02551                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_INTERNALERROR: return "Internal error.";
02552                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE: return "Whitespace is not allowed at this location.";
02553                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_INCOMPLETE_ENCODING: return "End of file reached in invalid state for current encoding.";
02554                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_MISSING_PAREN: return "Missing parenthesis.";
02555                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE: return "A single or double closing quote character (\' or \") is missing.";
02556                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_MULTIPLE_COLONS: return "Multiple colons are not allowed in a name.";
02557                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_INVALID_DECIMAL: return "Invalid character for decimal digit.";
02558                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_INVALID_HEXIDECIMAL: return "Invalid character for hexadecimal digit.";
02559                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_INVALID_UNICODE: return "Invalid unicode character value for this platform.";
02560                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK: return "Expecting whitespace or '?'.";
02561                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_UNEXPECTEDENDTAG: return "End tag was not expected at this location.";
02562                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_UNCLOSEDTAG: return "{0}.";
02563                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_DUPLICATEATTRIBUTE: return "Duplicate attribute.";
02564                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_MULTIPLEROOTS: return "Only one top level element is allowed in an XML document.";
02565                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_INVALIDATROOTLEVEL: return "Invalid at the top level of the document.";
02566                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_BADXMLDECL: return "Invalid xml declaration.";
02567                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_MISSINGROOT: return "XML document must have a top level element.";
02568                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_UNEXPECTEDEOF: return "Unexpected end of file.";
02569                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_BADPEREFINSUBSET: return "Parameter entities cannot be used inside markup declarations in an internal subset.";
02570                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_UNCLOSEDSTARTTAG: return "Element was not closed.";
02571                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_UNCLOSEDENDTAG: return "End element was missing the character '>'.";
02572                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_UNCLOSEDSTRING: return "A string literal was not closed.";
02573                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_UNCLOSEDCOMMENT: return "A comment was not closed.";
02574                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_UNCLOSEDDECL: return "A declaration was not closed.";
02575                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_UNCLOSEDCDATA: return "A CDATA section was not closed.";
02576                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_RESERVEDNAMESPACE: return "The namespace prefix is not allowed to start with the reserved string \"xml\".";
02577                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_INVALIDENCODING: return "System does not support the specified encoding.";
02578                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_INVALIDSWITCH: return "Switch from current encoding to specified encoding not supported.";
02579                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_BADXMLCASE: return "The name 'xml' is reserved and must be lower case.";
02580                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_INVALID_STANDALONE: return "The standalone attribute must have the value 'yes' or 'no'.";
02581                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_UNEXPECTED_STANDALONE: return "The standalone attribute cannot be used in external entities.";
02582                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_INVALID_VERSION: return "Invalid version number.";
02583                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_XML_E_MISSINGEQUALS: return "Missing equals sign between attribute and attribute value.";
02584                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_PROTECTION_RECOVERY_FAILED: return "Unable to recover the specified assembly.";
02585                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT: return "The public key for an assembly was too short to be allowed.";
02586                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_PROTECTION_CATALOG_NOT_VALID: return "The catalog for an assembly is not valid, or does not match the assembly's manifest.";
02587                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_UNTRANSLATABLE_HRESULT: return "An HRESULT could not be translated to a corresponding WinAPI error code.";
02588                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING: return "The catalog for an assembly is missing.";
02589                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE: return "The supplied assembly identity is missing one or more attributes which must be present in this context.";
02590                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME: return "The supplied assembly identity has one or more attribute names that contain characters not permitted in XML names.";
02591                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_ASSEMBLY_MISSING: return "The referenced assembly could not be found.";
02592                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_CORRUPT_ACTIVATION_STACK: return "The activation context activation stack for the running thread of execution is corrupt.";
02593                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_CORRUPTION: return "The application isolation metadata for this process or thread has become corrupt.";
02594                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_EARLY_DEACTIVATION: return "The activation context being deactivated is not the most recently activated one.";
02595                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_INVALID_DEACTIVATION: return "The activation context being deactivated is not active for the current thread of execution.";
02596                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_MULTIPLE_DEACTIVATION: return "The activation context being deactivated has already been deactivated.";
02597                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_PROCESS_TERMINATION_REQUESTED: return "A component used by the isolation facility has requested to terminate the process.";
02598                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_RELEASE_ACTIVATION_CONTEXT: return "A kernel mode component is releasing a reference on an activation context.";
02599                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY: return "The activation context of system default assembly could not be generated.";
02600                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE: return "The value of an attribute in an identity is not within the legal range.";
02601                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME: return "The name of an attribute in an identity is not within the legal range.";
02602                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_IDENTITY_DUPLICATE_ATTRIBUTE: return "An identity contains two definitions for the same attribute.";
02603                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_IDENTITY_PARSE_ERROR: return "The identity string is malformed. This may be due to a trailing comma, more than two unnamed attributes, missing attribute name or missing attribute value.";
02604                 case Sylloge.WinAPI.ErrorCodes.ERROR_MALFORMED_SUBSTITUTION_STRING: return "A string containing localized substitutable content was malformed. Either a dollar sign ($) was followed by something other than a left parenthesis or another dollar sign or an substitution's right parenthesis was not found.";
02605                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_INCORRECT_PUBLIC_KEY_TOKEN: return "The public key token does not correspond to the public key specified.";
02606                 case Sylloge.WinAPI.ErrorCodes.ERROR_UNMAPPED_SUBSTITUTION_STRING: return "A substitution string had no mapping.";
02607                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_ASSEMBLY_NOT_LOCKED: return "The component must be locked before making the request.";
02608                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_COMPONENT_STORE_CORRUPT: return "The component store has been corrupted.";
02609                 case Sylloge.WinAPI.ErrorCodes.ERROR_ADVANCED_INSTALLER_FAILED: return "An advanced installer failed during setup or servicing.";
02610                 case Sylloge.WinAPI.ErrorCodes.ERROR_XML_ENCODING_MISMATCH: return "The character encoding in the XML declaration did not match the encoding used in the document.";
02611                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT: return "The identities of the manifests are identical but their contents are different.";
02612                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_IDENTITIES_DIFFERENT: return "The component identities are different.";
02613                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT: return "The assembly is not a deployment.";
02614                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_FILE_NOT_PART_OF_ASSEMBLY: return "The file is not a part of the assembly.";
02615                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_MANIFEST_TOO_BIG: return "The size of the manifest exceeds the maximum allowed.";
02616                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_SETTING_NOT_REGISTERED: return "The setting is not registered.";
02617                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_TRANSACTION_CLOSURE_INCOMPLETE: return "One or more required members of the transaction are not present.";
02618                 case Sylloge.WinAPI.ErrorCodes.ERROR_SMI_PRIMITIVE_INSTALLER_FAILED: return "The SMI primitive installer failed during setup or servicing.";
02619                 case Sylloge.WinAPI.ErrorCodes.ERROR_GENERIC_COMMAND_FAILED: return "A generic command executable returned a result that indicates failure.";
02620                 case Sylloge.WinAPI.ErrorCodes.ERROR_SXS_FILE_HASH_MISSING: return "A component is missing file verification information in its manifest.";
02621                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_INVALID_CHANNEL_PATH: return "The specified channel path is invalid.";
02622                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_INVALID_QUERY: return "The specified query is invalid.";
02623                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_PUBLISHER_METADATA_NOT_FOUND: return "The publisher metadata cannot be found in the resource.";
02624                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_EVENT_TEMPLATE_NOT_FOUND: return "The template for an event definition cannot be found in the resource (error ";
02625                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_INVALID_PUBLISHER_NAME: return "The specified publisher name is invalid.";
02626                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_INVALID_EVENT_DATA: return "The event data raised by the publisher is not compatible with the event template definition in the publisher's manifest";
02627                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_CHANNEL_NOT_FOUND: return "The specified channel could not be found. Check channel configuration.";
02628                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_MALFORMED_XML_TEXT: return "The specified xml text was not well-formed. See Extended Error for more details.";
02629                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_SUBSCRIPTION_TO_DIRECT_CHANNEL: return "The caller is trying to subscribe to a direct channel which is not allowed. The events for a direct channel go directly to a logfile and cannot be subscribed to.";
02630                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_CONFIGURATION_ERROR: return "Configuration error.";
02631                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_QUERY_RESULT_STALE: return "The query result is stale / invalid. This may be due to the log being cleared or rolling over after the query result was created. Users should handle this code by releasing the query result object and reissuing the query.";
02632                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_QUERY_RESULT_INVALID_POSITION: return "Query result is currently at an invalid position.";
02633                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_NON_VALIDATING_MSXML: return "Registered MSXML doesn't support validation.";
02634                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_FILTER_ALREADYSCOPED: return "An expression can only be followed by a change of scope operation if it itself evaluates to a node set and is not already part of some other change of scope operation.";
02635                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_FILTER_NOTELTSET: return "Can't perform a step operation from a term that does not represent an element set.";
02636                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_FILTER_INVARG: return "Left hand side arguments to binary operators must be either attributes, nodes or variables and right hand side arguments must be constants.";
02637                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_FILTER_INVTEST: return "A step operation must involve either a node test or, in the case of a predicate, an algebraic expression against which to test each node in the node set identified by the preceding node set can be evaluated.";
02638                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_FILTER_INVTYPE: return "This data type is currently unsupported.";
02639                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_FILTER_PARSEERR: return "A syntax error occurred at position {0}!d!";
02640                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_FILTER_UNSUPPORTEDOP: return "This operator is unsupported by this implementation of the filter.";
02641                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_FILTER_UNEXPECTEDTOKEN: return "The token encountered was unexpected.";
02642                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_INVALID_OPERATION_OVER_ENABLED_DIRECT_CHANNEL: return "The requested operation cannot be performed over an enabled direct channel. The channel must first be disabled before performing the requested operation.";
02643                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_INVALID_CHANNEL_PROPERTY_VALUE: return "Channel property {0}!s! contains invalid value. The value has invalid type, is outside of valid range, can't be updated or is not supported by this type of channel.";
02644                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_INVALID_PUBLISHER_PROPERTY_VALUE: return "Publisher property {0}!s! contains invalid value. The value has invalid type, is outside of valid range, can't be updated or is not supported by this type of publisher.";
02645                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_CHANNEL_CANNOT_ACTIVATE: return "The channel fails to activate.";
02646                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_FILTER_TOO_COMPLEX: return "The xpath expression exceeded supported complexity. Please simplify it or split it into two or more simple expressions.";
02647                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_MESSAGE_NOT_FOUND: return "The message resource is present but the message is not found in the string/message table.";
02648                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_MESSAGE_ID_NOT_FOUND: return "The message identifier for the desired message could not be found.";
02649                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_UNRESOLVED_VALUE_INSERT: return "The substitution string for insert index ({0}) could not be found.";
02650                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_UNRESOLVED_PARAMETER_INSERT: return "The description string for parameter reference ({0}) could not be found.";
02651                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_MAX_INSERTS_REACHED: return "The maximum number of replacements has been reached.";
02652                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_EVENT_DEFINITION_NOT_FOUND: return "The event definition could not be found for the event identifier ({0}).";
02653                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_MESSAGE_LOCALE_NOT_FOUND: return "The locale specific resource for the desired message is not present.";
02654                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_VERSION_TOO_OLD: return "The resource is too old to be compatible.";
02655                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_VERSION_TOO_NEW: return "The resource is too new to be compatible.";
02656                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_CANNOT_OPEN_CHANNEL_OF_QUERY: return "The channel at index {0}!d! of the query cannot be opened.";
02657                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_PUBLISHER_DISABLED: return "The publisher has been disabled and its resource is not available. This usually occurs when the publisher is in the process of being uninstalled or upgraded.";
02658                 case Sylloge.WinAPI.ErrorCodes.ERROR_EVT_FILTER_OUT_OF_RANGE: return "Attempted to create a numeric type that is outside of its valid range.";
02659                 case Sylloge.WinAPI.ErrorCodes.ERROR_EC_SUBSCRIPTION_CANNOT_ACTIVATE: return "The subscription fails to activate.";
02660                 case Sylloge.WinAPI.ErrorCodes.ERROR_EC_LOG_DISABLED: return "The log of the subscription is in disabled state, and cannot be used to forward events. The log must first be enabled before the subscription can be activated.";
02661                 case Sylloge.WinAPI.ErrorCodes.ERROR_EC_CIRCULAR_FORWARDING: return "When forwarding events from local machine to itself, the query of the subscription can't contain target log of the subscription.";
02662                 case Sylloge.WinAPI.ErrorCodes.ERROR_EC_CREDSTORE_FULL: return "The credential store that is used to save credentials is full.";
02663                 case Sylloge.WinAPI.ErrorCodes.ERROR_EC_CRED_NOT_FOUND: return "The credential used by this subscription can't be found in credential store.";
02664                 case Sylloge.WinAPI.ErrorCodes.ERROR_EC_NO_ACTIVE_CHANNEL: return "No active channel is found for the query.";
02665                 case Sylloge.WinAPI.ErrorCodes.ERROR_MUI_FILE_NOT_FOUND: return "The resource loader failed to find MUI file.";
02666                 case Sylloge.WinAPI.ErrorCodes.ERROR_MUI_INVALID_FILE: return "The resource loader failed to load MUI file because the file fail to pass validation.";
02667                 case Sylloge.WinAPI.ErrorCodes.ERROR_MUI_INVALID_RC_CONFIG: return "The RC Manifest is corrupted with garbage data or unsupported version or missing required item.";
02668                 case Sylloge.WinAPI.ErrorCodes.ERROR_MUI_INVALID_LOCALE_NAME: return "The RC Manifest has invalid culture name.";
02669                 case Sylloge.WinAPI.ErrorCodes.ERROR_MUI_INVALID_ULTIMATEFALLBACK_NAME: return "The RC Manifest has invalid ultimatefallback name.";
02670                 case Sylloge.WinAPI.ErrorCodes.ERROR_MUI_FILE_NOT_LOADED: return "The resource loader cache doesn't have loaded MUI entry.";
02671                 case Sylloge.WinAPI.ErrorCodes.ERROR_RESOURCE_ENUM_USER_STOP: return "User stop resource enumeration.";
02672                 case Sylloge.WinAPI.ErrorCodes.ERROR_MUI_INTLSETTINGS_UILANG_NOT_INSTALLED: return "UI language installation failed.";
02673                 case Sylloge.WinAPI.ErrorCodes.ERROR_MUI_INTLSETTINGS_INVALID_LOCALE_NAME: return "Locale installation failed.";
02674                 case Sylloge.WinAPI.ErrorCodes.ERROR_MCA_INVALID_CAPABILITIES_STRING: return "The monitor returned a DDC/CI capabilities string that did not comply with the ACCESS.bus 3.0, DDC/CI 1.1, or MCCS 2 Revision 1 specification.";
02675                 case Sylloge.WinAPI.ErrorCodes.ERROR_MCA_INVALID_VCP_VERSION: return "The monitor's VCP Version (0xDF) VCP code returned an invalid version value.";
02676                 case Sylloge.WinAPI.ErrorCodes.ERROR_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION: return "The monitor does not comply with the MCCS specification it claims to supports.";
02677                 case Sylloge.WinAPI.ErrorCodes.ERROR_MCA_MCCS_VERSION_MISMATCH: return "The MCCS version in a monitor's mccs_ver capability does not match the MCCS version the monitor reports when the VCP Version (0xDF) VCP code is used.";
02678                 case Sylloge.WinAPI.ErrorCodes.ERROR_MCA_UNSUPPORTED_MCCS_VERSION: return "The Monitor Configuration API only works with monitors that support the MCCS 1.0 specification, MCCS 2.0 specification, or the MCCS 2.0 Revision 1 specification.";
02679                 case Sylloge.WinAPI.ErrorCodes.ERROR_MCA_INTERNAL_ERROR: return "An internal Monitor Configuration API error occurred.";
02680                 case Sylloge.WinAPI.ErrorCodes.ERROR_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED: return "The monitor returned an invalid monitor technology type. CRT, Plasma, and LCD (TFT) are examples of monitor technology types. This error implies that the monitor violated the MCCS 2.0 or the MCCS 2.0 Revision 1 specification.";
02681                 case Sylloge.WinAPI.ErrorCodes.ERROR_MCA_UNSUPPORTED_COLOR_TEMPERATURE: return "The caller of SetMonitorColorTemperature specified a color temperature that the current monitor did not support. This error implies that the monitor violated the MCCS 2.0 or the MCCS 2.0 Revision 1 specification.";
02682                 case Sylloge.WinAPI.ErrorCodes.ERROR_AMBIGUOUS_SYSTEM_DEVICE: return "The requested system device cannot be identified due to multiple indistinguishable devices potentially matching the identification criteria.";
02683                 case Sylloge.WinAPI.ErrorCodes.ERROR_SYSTEM_DEVICE_NOT_FOUND: return "The requested system device cannot be found.";
02684                 case Sylloge.WinAPI.ErrorCodes.ERROR_HASH_NOT_SUPPORTED: return "Hash generation for the specified version and hash type is not enabled on server.";
02685                 case Sylloge.WinAPI.ErrorCodes.ERROR_HASH_NOT_PRESENT: return "The hash requests is not present or not up to date with the current file contents.";
02686                 default: return "Unkown error";
02687             }
02688         }
02689 
02695         public static string ErrorCodeToString(int errorCode)
02696         {
02697             return Sylloge.WinAPI.ErrorCodeToString((Sylloge.WinAPI.ErrorCodes)errorCode);
02698         }
02699 
02706         public static Error GetLastError()
02707         {
02708             return new Error();
02709         }
02710 
02714         public static int LastErrorCode
02715         {
02716             get
02717             {
02718                 return Sylloge.WinAPI.GetLastError().Code;
02719             }
02720         }
02721 
02725         public static string LastErrorMessage
02726         {
02727             get { return Sylloge.WinAPI.GetLastError().Message; }
02728         }
02729 
02733         public static string LastErrorString
02734         {
02735             get { return Sylloge.WinAPI.GetLastError().ToString(); }
02736         }
02737     }
02738 }
 All Classes Namespaces Files Functions Variables Enumerations Properties Events