Commit 7cf0b02ab4

daurnimator <quae@daurnimator.com>
2020-01-31 09:47:00
NTSTATUS is a non-exhaustive enum
1 parent 176bc53
lib/std/fs/file.zig
@@ -225,10 +225,10 @@ pub const File = struct {
             var info: windows.FILE_ALL_INFORMATION = undefined;
             const rc = windows.ntdll.NtQueryInformationFile(self.handle, &io_status_block, &info, @sizeOf(windows.FILE_ALL_INFORMATION), .FileAllInformation);
             switch (rc) {
-                windows.STATUS.SUCCESS => {},
-                windows.STATUS.BUFFER_OVERFLOW => {},
-                windows.STATUS.INVALID_PARAMETER => unreachable,
-                windows.STATUS.ACCESS_DENIED => return error.AccessDenied,
+                .SUCCESS => {},
+                .BUFFER_OVERFLOW => {},
+                .INVALID_PARAMETER => unreachable,
+                .ACCESS_DENIED => return error.AccessDenied,
                 else => return windows.unexpectedStatus(rc),
             }
             return Stat{
lib/std/os/windows/bits.zig
@@ -6,7 +6,7 @@ const assert = std.debug.assert;
 const maxInt = std.math.maxInt;
 
 pub const ERROR = @import("error.zig");
-pub const STATUS = @import("status.zig");
+pub usingnamespace @import("ntstatus.zig");
 pub const LANG = @import("lang.zig");
 pub const SUBLANG = @import("sublang.zig");
 
@@ -62,7 +62,6 @@ pub const ULONGLONG = u64;
 pub const LONGLONG = i64;
 pub const HLOCAL = HANDLE;
 pub const LANGID = c_ushort;
-pub const NTSTATUS = ULONG;
 
 pub const va_list = *@OpaqueType();
 
@@ -929,9 +928,12 @@ pub usingnamespace switch (builtin.arch) {
             SegSs: DWORD,
             ExtendedRegisters: [512]BYTE,
 
-            pub fn getRegs(ctx: *const CONTEXT) struct {bp: usize, ip: usize} {
-                return .{.bp = ctx.Ebp, .ip = ctx.Eip};
-            }  
+            pub fn getRegs(ctx: *const CONTEXT) struct {
+                bp: usize,
+                ip: usize,
+            } {
+                return .{ .bp = ctx.Ebp, .ip = ctx.Eip };
+            }
         };
 
         pub const PCONTEXT = *CONTEXT;
@@ -1032,8 +1034,11 @@ pub usingnamespace switch (builtin.arch) {
             LastExceptionToRip: DWORD64,
             LastExceptionFromRip: DWORD64,
 
-            pub fn getRegs(ctx: *const CONTEXT) struct {bp: usize, ip: usize} {
-                return .{.bp = ctx.Rbp, .ip = ctx.Rip};
+            pub fn getRegs(ctx: *const CONTEXT) struct {
+                bp: usize,
+                ip: usize,
+            } {
+                return .{ .bp = ctx.Rbp, .ip = ctx.Rip };
             }
         };
 
@@ -1100,8 +1105,11 @@ pub usingnamespace switch (builtin.arch) {
             Wcr: [2]DWORD,
             Wvr: [2]DWORD64,
 
-            pub fn getRegs(ctx: *const CONTEXT) struct {bp: usize, ip: usize} {
-                return .{.bp = ctx.DUMMYUNIONNAME.DUMMYSTRUCTNAME.Fp, .ip = ctx.Pc};
+            pub fn getRegs(ctx: *const CONTEXT) struct {
+                bp: usize,
+                ip: usize,
+            } {
+                return .{ .bp = ctx.DUMMYUNIONNAME.DUMMYSTRUCTNAME.Fp, .ip = ctx.Pc };
             }
         };
 
lib/std/os/windows/ntstatus.zig
@@ -0,0 +1,5600 @@
+// NTSTATUS codes from https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-erref/596a1078-e883-4972-9bbc-49e60bebca55?
+pub const NTSTATUS = extern enum(u32) {
+    /// The operation completed successfully.
+    SUCCESS = 0x00000000,
+
+    /// The caller specified WaitAny for WaitType and one of the dispatcher objects in the Object array has been set to the signaled state.
+    WAIT_0 = 0x00000000,
+
+    /// The caller specified WaitAny for WaitType and one of the dispatcher objects in the Object array has been set to the signaled state.
+    WAIT_1 = 0x00000001,
+
+    /// The caller specified WaitAny for WaitType and one of the dispatcher objects in the Object array has been set to the signaled state.
+    WAIT_2 = 0x00000002,
+
+    /// The caller specified WaitAny for WaitType and one of the dispatcher objects in the Object array has been set to the signaled state.
+    WAIT_3 = 0x00000003,
+
+    /// The caller specified WaitAny for WaitType and one of the dispatcher objects in the Object array has been set to the signaled state.
+    WAIT_63 = 0x0000003F,
+
+    /// The caller attempted to wait for a mutex that has been abandoned.
+    ABANDONED = 0x00000080,
+
+    /// The caller attempted to wait for a mutex that has been abandoned.
+    ABANDONED_WAIT_0 = 0x00000080,
+
+    /// The caller attempted to wait for a mutex that has been abandoned.
+    ABANDONED_WAIT_63 = 0x000000BF,
+
+    /// A user-mode APC was delivered before the given Interval expired.
+    USER_APC = 0x000000C0,
+
+    /// The delay completed because the thread was alerted.
+    ALERTED = 0x00000101,
+
+    /// The given Timeout interval expired.
+    TIMEOUT = 0x00000102,
+
+    /// The operation that was requested is pending completion.
+    PENDING = 0x00000103,
+
+    /// A reparse should be performed by the Object Manager because the name of the file resulted in a symbolic link.
+    REPARSE = 0x00000104,
+
+    /// Returned by enumeration APIs to indicate more information is available to successive calls.
+    MORE_ENTRIES = 0x00000105,
+
+    /// Indicates not all privileges or groups that are referenced are assigned to the caller.
+    /// This allows, for example, all privileges to be disabled without having to know exactly which privileges are assigned.
+    NOT_ALL_ASSIGNED = 0x00000106,
+
+    /// Some of the information to be translated has not been translated.
+    SOME_NOT_MAPPED = 0x00000107,
+
+    /// An open/create operation completed while an opportunistic lock (oplock) break is underway.
+    OPLOCK_BREAK_IN_PROGRESS = 0x00000108,
+
+    /// A new volume has been mounted by a file system.
+    VOLUME_MOUNTED = 0x00000109,
+
+    /// This success level status indicates that the transaction state already exists for the registry subtree but that a transaction commit was previously aborted. The commit has now been completed.
+    RXACT_COMMITTED = 0x0000010A,
+
+    /// Indicates that a notify change request has been completed due to closing the handle that made the notify change request.
+    NOTIFY_CLEANUP = 0x0000010B,
+
+    /// Indicates that a notify change request is being completed and that the information is not being returned in the caller's buffer.
+    /// The caller now needs to enumerate the files to find the changes.
+    NOTIFY_ENUM_DIR = 0x0000010C,
+
+    /// {No Quotas} No system quota limits are specifically set for this account.
+    NO_QUOTAS_FOR_ACCOUNT = 0x0000010D,
+
+    /// {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.
+    PRIMARY_TRANSPORT_CONNECT_FAILED = 0x0000010E,
+
+    /// The page fault was a transition fault.
+    PAGE_FAULT_TRANSITION = 0x00000110,
+
+    /// The page fault was a demand zero fault.
+    PAGE_FAULT_DEMAND_ZERO = 0x00000111,
+
+    /// The page fault was a demand zero fault.
+    PAGE_FAULT_COPY_ON_WRITE = 0x00000112,
+
+    /// The page fault was a demand zero fault.
+    PAGE_FAULT_GUARD_PAGE = 0x00000113,
+
+    /// The page fault was satisfied by reading from a secondary storage device.
+    PAGE_FAULT_PAGING_FILE = 0x00000114,
+
+    /// The cached page was locked during operation.
+    CACHE_PAGE_LOCKED = 0x00000115,
+
+    /// The crash dump exists in a paging file.
+    CRASH_DUMP = 0x00000116,
+
+    /// The specified buffer contains all zeros.
+    BUFFER_ALL_ZEROS = 0x00000117,
+
+    /// A reparse should be performed by the Object Manager because the name of the file resulted in a symbolic link.
+    REPARSE_OBJECT = 0x00000118,
+
+    /// The device has succeeded a query-stop and its resource requirements have changed.
+    RESOURCE_REQUIREMENTS_CHANGED = 0x00000119,
+
+    /// The translator has translated these resources into the global space and no additional translations should be performed.
+    TRANSLATION_COMPLETE = 0x00000120,
+
+    /// The directory service evaluated group memberships locally, because it was unable to contact a global catalog server.
+    DS_MEMBERSHIP_EVALUATED_LOCALLY = 0x00000121,
+
+    /// A process being terminated has no threads to terminate.
+    NOTHING_TO_TERMINATE = 0x00000122,
+
+    /// The specified process is not part of a job.
+    PROCESS_NOT_IN_JOB = 0x00000123,
+
+    /// The specified process is part of a job.
+    PROCESS_IN_JOB = 0x00000124,
+
+    /// {Volume Shadow Copy Service} The system is now ready for hibernation.
+    VOLSNAP_HIBERNATE_READY = 0x00000125,
+
+    /// A file system or file system filter driver has successfully completed an FsFilter operation.
+    FSFILTER_OP_COMPLETED_SUCCESSFULLY = 0x00000126,
+
+    /// The specified interrupt vector was already connected.
+    INTERRUPT_VECTOR_ALREADY_CONNECTED = 0x00000127,
+
+    /// The specified interrupt vector is still connected.
+    INTERRUPT_STILL_CONNECTED = 0x00000128,
+
+    /// The current process is a cloned process.
+    PROCESS_CLONED = 0x00000129,
+
+    /// The file was locked and all users of the file can only read.
+    FILE_LOCKED_WITH_ONLY_READERS = 0x0000012A,
+
+    /// The file was locked and at least one user of the file can write.
+    FILE_LOCKED_WITH_WRITERS = 0x0000012B,
+
+    /// The specified ResourceManager made no changes or updates to the resource under this transaction.
+    RESOURCEMANAGER_READ_ONLY = 0x00000202,
+
+    /// An operation is blocked and waiting for an oplock.
+    WAIT_FOR_OPLOCK = 0x00000367,
+
+    /// Debugger handled the exception.
+    DBG_EXCEPTION_HANDLED = 0x00010001,
+
+    /// The debugger continued.
+    DBG_CONTINUE = 0x00010002,
+
+    /// The IO was completed by a filter.
+    FLT_IO_COMPLETE = 0x001C0001,
+
+    /// The file is temporarily unavailable.
+    FILE_NOT_AVAILABLE = 0xC0000467,
+
+    /// The share is temporarily unavailable.
+    SHARE_UNAVAILABLE = 0xC0000480,
+
+    /// A threadpool worker thread entered a callback at thread affinity %p and exited at affinity %p.
+    /// This is unexpected, indicating that the callback missed restoring the priority.
+    CALLBACK_RETURNED_THREAD_AFFINITY = 0xC0000721,
+
+    /// {Object Exists} An attempt was made to create an object but the object name already exists.
+    OBJECT_NAME_EXISTS = 0x40000000,
+
+    /// {Thread Suspended} A thread termination occurred while the thread was suspended. The thread resumed, and termination proceeded.
+    THREAD_WAS_SUSPENDED = 0x40000001,
+
+    /// {Working Set Range Error} An attempt was made to set the working set minimum or maximum to values that are outside the allowable range.
+    WORKING_SET_LIMIT_RANGE = 0x40000002,
+
+    /// {Image Relocated} An image file could not be mapped at the address that is specified in the image file. Local fixes must be performed on this image.
+    IMAGE_NOT_AT_BASE = 0x40000003,
+
+    /// This informational level status indicates that a specified registry subtree transaction state did not yet exist and had to be created.
+    RXACT_STATE_CREATED = 0x40000004,
+
+    /// {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 that a debugger can load, unload, or track symbols and breakpoints within these 16-bit segments.
+    SEGMENT_NOTIFICATION = 0x40000005,
+
+    /// {Local Session Key} A user session key was requested for a local remote procedure call (RPC) connection.
+    /// The session key that is returned is a constant value and not unique to this connection.
+    LOCAL_USER_SESSION_KEY = 0x40000006,
+
+    /// {Invalid Current Directory} The process cannot switch to the startup current directory %hs.
+    /// Select OK to set the current directory to %hs, or select CANCEL to exit.
+    BAD_CURRENT_DIRECTORY = 0x40000007,
+
+    /// {Serial IOCTL Complete} A serial I/O operation was completed by another write to a serial port. (The IOCTL_SERIAL_XOFF_COUNTER reached zero.)
+    SERIAL_MORE_WRITES = 0x40000008,
+
+    /// {Registry Recovery} One of the files that contains the system registry data had to be recovered by using a log or alternate copy. The recovery was successful.
+    REGISTRY_RECOVERED = 0x40000009,
+
+    /// {Redundant Read} To satisfy a read request, the Windows NT operating system 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.
+    FT_READ_RECOVERY_FROM_BACKUP = 0x4000000A,
+
+    /// {Redundant Write} To satisfy a write request, the Windows 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 unable to reassign the failing area of the device.
+    FT_WRITE_RECOVERY = 0x4000000B,
+
+    /// {Serial IOCTL Timeout} A serial I/O operation completed because the time-out period expired.
+    /// (The IOCTL_SERIAL_XOFF_COUNTER had not reached zero.)
+    SERIAL_COUNTER_TIMEOUT = 0x4000000C,
+
+    /// {Password Too Complex} The Windows password is too complex to be converted to a LAN Manager password.
+    /// The LAN Manager password that returned is a NULL string.
+    NULL_LM_PASSWORD = 0x4000000D,
+
+    /// {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.
+    IMAGE_MACHINE_TYPE_MISMATCH = 0x4000000E,
+
+    /// {Partial Data Received} The network transport returned partial data to its client. The remaining data will be sent later.
+    RECEIVE_PARTIAL = 0x4000000F,
+
+    /// {Expedited Data Received} The network transport returned data to its client that was marked as expedited by the remote system.
+    RECEIVE_EXPEDITED = 0x40000010,
+
+    /// {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.
+    RECEIVE_PARTIAL_EXPEDITED = 0x40000011,
+
+    /// {TDI Event Done} The TDI indication has completed successfully.
+    EVENT_DONE = 0x40000012,
+
+    /// {TDI Event Pending} The TDI indication has entered the pending state.
+    EVENT_PENDING = 0x40000013,
+
+    /// Checking file system on %wZ.
+    CHECKING_FILE_SYSTEM = 0x40000014,
+
+    /// {Fatal Application Exit} %hs
+    FATAL_APP_EXIT = 0x40000015,
+
+    /// The specified registry key is referenced by a predefined handle.
+    PREDEFINED_HANDLE = 0x40000016,
+
+    /// {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.
+    WAS_UNLOCKED = 0x40000017,
+
+    /// %hs
+    SERVICE_NOTIFICATION = 0x40000018,
+
+    /// {Page Locked} One of the pages to lock was already locked.
+    WAS_LOCKED = 0x40000019,
+
+    /// Application popup: %1 : %2
+    LOG_HARD_ERROR = 0x4000001A,
+
+    /// A Win32 process already exists.
+    ALREADY_WIN32 = 0x4000001B,
+
+    /// An exception status code that is used by the Win32 x86 emulation subsystem.
+    WX86_UNSIMULATE = 0x4000001C,
+
+    /// An exception status code that is used by the Win32 x86 emulation subsystem.
+    WX86_CONTINUE = 0x4000001D,
+
+    /// An exception status code that is used by the Win32 x86 emulation subsystem.
+    WX86_SINGLE_STEP = 0x4000001E,
+
+    /// An exception status code that is used by the Win32 x86 emulation subsystem.
+    WX86_BREAKPOINT = 0x4000001F,
+
+    /// An exception status code that is used by the Win32 x86 emulation subsystem.
+    WX86_EXCEPTION_CONTINUE = 0x40000020,
+
+    /// An exception status code that is used by the Win32 x86 emulation subsystem.
+    WX86_EXCEPTION_LASTCHANCE = 0x40000021,
+
+    /// An exception status code that is used by the Win32 x86 emulation subsystem.
+    WX86_EXCEPTION_CHAIN = 0x40000022,
+
+    /// {Machine Type Mismatch} The image file %hs is valid but is for a machine type other than the current machine.
+    IMAGE_MACHINE_TYPE_MISMATCH_EXE = 0x40000023,
+
+    /// A yield execution was performed and no thread was available to run.
+    NO_YIELD_PERFORMED = 0x40000024,
+
+    /// The resume flag to a timer API was ignored.
+    TIMER_RESUME_IGNORED = 0x40000025,
+
+    /// The arbiter has deferred arbitration of these resources to its parent.
+    ARBITRATION_UNHANDLED = 0x40000026,
+
+    /// The device has detected a CardBus card in its slot.
+    CARDBUS_NOT_SUPPORTED = 0x40000027,
+
+    /// An exception status code that is used by the Win32 x86 emulation subsystem.
+    WX86_CREATEWX86TIB = 0x40000028,
+
+    /// 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.
+    /// If problems occur with this system, contact the CPU manufacturer to see if this mix of processors is supported.
+    MP_PROCESSOR_MISMATCH = 0x40000029,
+
+    /// The system was put into hibernation.
+    HIBERNATED = 0x4000002A,
+
+    /// The system was resumed from hibernation.
+    RESUME_HIBERNATION = 0x4000002B,
+
+    /// Windows has detected that the system firmware (BIOS) was updated [previous firmware date = %2, current firmware date %3].
+    FIRMWARE_UPDATED = 0x4000002C,
+
+    /// A device driver is leaking locked I/O pages and is causing system degradation.
+    /// The system has automatically enabled the tracking code to try and catch the culprit.
+    DRIVERS_LEAKING_LOCKED_PAGES = 0x4000002D,
+
+    /// The ALPC message being canceled has already been retrieved from the queue on the other side.
+    MESSAGE_RETRIEVED = 0x4000002E,
+
+    /// The system power state is transitioning from %2 to %3.
+    SYSTEM_POWERSTATE_TRANSITION = 0x4000002F,
+
+    /// The receive operation was successful.
+    /// Check the ALPC completion list for the received message.
+    ALPC_CHECK_COMPLETION_LIST = 0x40000030,
+
+    /// The system power state is transitioning from %2 to %3 but could enter %4.
+    SYSTEM_POWERSTATE_COMPLEX_TRANSITION = 0x40000031,
+
+    /// Access to %1 is monitored by policy rule %2.
+    ACCESS_AUDIT_BY_POLICY = 0x40000032,
+
+    /// A valid hibernation file has been invalidated and should be abandoned.
+    ABANDON_HIBERFILE = 0x40000033,
+
+    /// Business rule scripts are disabled for the calling application.
+    BIZRULES_NOT_ENABLED = 0x40000034,
+
+    /// The system has awoken.
+    WAKE_SYSTEM = 0x40000294,
+
+    /// The directory service is shutting down.
+    DS_SHUTTING_DOWN = 0x40000370,
+
+    /// Debugger will reply later.
+    DBG_REPLY_LATER = 0x40010001,
+
+    /// Debugger cannot provide a handle.
+    DBG_UNABLE_TO_PROVIDE_HANDLE = 0x40010002,
+
+    /// Debugger terminated the thread.
+    DBG_TERMINATE_THREAD = 0x40010003,
+
+    /// Debugger terminated the process.
+    DBG_TERMINATE_PROCESS = 0x40010004,
+
+    /// Debugger obtained control of C.
+    DBG_CONTROL_C = 0x40010005,
+
+    /// Debugger printed an exception on control C.
+    DBG_PRINTEXCEPTION_C = 0x40010006,
+
+    /// Debugger received a RIP exception.
+    DBG_RIPEXCEPTION = 0x40010007,
+
+    /// Debugger received a control break.
+    DBG_CONTROL_BREAK = 0x40010008,
+
+    /// Debugger command communication exception.
+    DBG_COMMAND_EXCEPTION = 0x40010009,
+
+    /// A UUID that is valid only on this computer has been allocated.
+    RPC_NT_UUID_LOCAL_ONLY = 0x40020056,
+
+    /// Some data remains to be sent in the request buffer.
+    RPC_NT_SEND_INCOMPLETE = 0x400200AF,
+
+    /// The Client Drive Mapping Service has connected on Terminal Connection.
+    CTX_CDM_CONNECT = 0x400A0004,
+
+    /// The Client Drive Mapping Service has disconnected on Terminal Connection.
+    CTX_CDM_DISCONNECT = 0x400A0005,
+
+    /// A kernel mode component is releasing a reference on an activation context.
+    SXS_RELEASE_ACTIVATION_CONTEXT = 0x4015000D,
+
+    /// The transactional resource manager is already consistent. Recovery is not needed.
+    RECOVERY_NOT_NEEDED = 0x40190034,
+
+    /// The transactional resource manager has already been started.
+    RM_ALREADY_STARTED = 0x40190035,
+
+    /// The log service encountered a log stream with no restart area.
+    LOG_NO_RESTART = 0x401A000C,
+
+    /// {Display Driver Recovered From Failure} The %hs display driver has detected a failure and recovered from it. Some graphical operations might have failed.
+    /// The next time you restart the machine, a dialog box appears, giving you an opportunity to upload data about this failure to Microsoft.
+    VIDEO_DRIVER_DEBUG_REPORT_REQUEST = 0x401B00EC,
+
+    /// The specified buffer is not big enough to contain the entire requested dataset.
+    /// Partial data is populated up to the size of the buffer.
+    /// The caller needs to provide a buffer of the size as specified in the partially populated buffer's content (interface specific).
+    GRAPHICS_PARTIAL_DATA_POPULATED = 0x401E000A,
+
+    /// The kernel driver detected a version mismatch between it and the user mode driver.
+    GRAPHICS_DRIVER_MISMATCH = 0x401E0117,
+
+    /// No mode is pinned on the specified VidPN source/target.
+    GRAPHICS_MODE_NOT_PINNED = 0x401E0307,
+
+    /// The specified mode set does not specify a preference for one of its modes.
+    GRAPHICS_NO_PREFERRED_MODE = 0x401E031E,
+
+    /// The specified dataset (for example, mode set, frequency range set, descriptor set, or topology) is empty.
+    GRAPHICS_DATASET_IS_EMPTY = 0x401E034B,
+
+    /// The specified dataset (for example, mode set, frequency range set, descriptor set, or topology) does not contain any more elements.
+    GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET = 0x401E034C,
+
+    /// The specified content transformation is not pinned on the specified VidPN present path.
+    GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED = 0x401E0351,
+
+    /// The child device presence was not reliably detected.
+    GRAPHICS_UNKNOWN_CHILD_STATUS = 0x401E042F,
+
+    /// Starting the lead adapter in a linked configuration has been temporarily deferred.
+    GRAPHICS_LEADLINK_START_DEFERRED = 0x401E0437,
+
+    /// The display adapter is being polled for children too frequently at the same polling level.
+    GRAPHICS_POLLING_TOO_FREQUENTLY = 0x401E0439,
+
+    /// Starting the adapter has been temporarily deferred.
+    GRAPHICS_START_DEFERRED = 0x401E043A,
+
+    /// The request will be completed later by an NDIS status indication.
+    NDIS_INDICATION_REQUIRED = 0x40230001,
+
+    /// {EXCEPTION} Guard Page Exception A page of memory that marks the end of a data structure, such as a stack or an array, has been accessed.
+    GUARD_PAGE_VIOLATION = 0x80000001,
+
+    /// {EXCEPTION} Alignment Fault A data type misalignment was detected in a load or store instruction.
+    DATATYPE_MISALIGNMENT = 0x80000002,
+
+    /// {EXCEPTION} Breakpoint A breakpoint has been reached.
+    BREAKPOINT = 0x80000003,
+
+    /// {EXCEPTION} Single Step A single step or trace operation has just been completed.
+    SINGLE_STEP = 0x80000004,
+
+    /// {Buffer Overflow} The data was too large to fit into the specified buffer.
+    BUFFER_OVERFLOW = 0x80000005,
+
+    /// {No More Files} No more files were found which match the file specification.
+    NO_MORE_FILES = 0x80000006,
+
+    /// {Kernel Debugger Awakened} The system debugger was awakened by an interrupt.
+    WAKE_SYSTEM_DEBUGGER = 0x80000007,
+
+    /// {Handles Closed} Handles to objects have been automatically closed because of the requested operation.
+    HANDLES_CLOSED = 0x8000000A,
+
+    /// {Non-Inheritable ACL} An access control list (ACL) contains no components that can be inherited.
+    NO_INHERITANCE = 0x8000000B,
+
+    /// {GUID Substitution} During the translation of a globally unique 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 might provide a more restrictive access than intended.
+    GUID_SUBSTITUTION_MADE = 0x8000000C,
+
+    /// Because of protection conflicts, not all the requested bytes could be copied.
+    PARTIAL_COPY = 0x8000000D,
+
+    /// {Out of Paper} The printer is out of paper.
+    DEVICE_PAPER_EMPTY = 0x8000000E,
+
+    /// {Device Power Is Off} The printer power has been turned off.
+    DEVICE_POWERED_OFF = 0x8000000F,
+
+    /// {Device Offline} The printer has been taken offline.
+    DEVICE_OFF_LINE = 0x80000010,
+
+    /// {Device Busy} The device is currently busy.
+    DEVICE_BUSY = 0x80000011,
+
+    /// {No More EAs} No more extended attributes (EAs) were found for the file.
+    NO_MORE_EAS = 0x80000012,
+
+    /// {Illegal EA} The specified extended attribute (EA) name contains at least one illegal character.
+    INVALID_EA_NAME = 0x80000013,
+
+    /// {Inconsistent EA List} The extended attribute (EA) list is inconsistent.
+    EA_LIST_INCONSISTENT = 0x80000014,
+
+    /// {Invalid EA Flag} An invalid extended attribute (EA) flag was set.
+    INVALID_EA_FLAG = 0x80000015,
+
+    /// {Verifying Disk} The media has changed and a verify operation is in progress; therefore, no reads or writes can be performed to the device, except those that are used in the verify operation.
+    VERIFY_REQUIRED = 0x80000016,
+
+    /// {Too Much Information} The specified access control list (ACL) contained more information than was expected.
+    EXTRANEOUS_INFORMATION = 0x80000017,
+
+    /// This warning level status indicates that the transaction state already exists for the registry subtree, but that a transaction commit was previously aborted.
+    /// The commit has NOT been completed but has not been rolled back either; therefore, it can still be committed, if needed.
+    RXACT_COMMIT_NECESSARY = 0x80000018,
+
+    /// {No More Entries} No more entries are available from an enumeration operation.
+    NO_MORE_ENTRIES = 0x8000001A,
+
+    /// {Filemark Found} A filemark was detected.
+    FILEMARK_DETECTED = 0x8000001B,
+
+    /// {Media Changed} The media has changed.
+    MEDIA_CHANGED = 0x8000001C,
+
+    /// {I/O Bus Reset} An I/O bus reset was detected.
+    BUS_RESET = 0x8000001D,
+
+    /// {End of Media} The end of the media was encountered.
+    END_OF_MEDIA = 0x8000001E,
+
+    /// The beginning of a tape or partition has been detected.
+    BEGINNING_OF_MEDIA = 0x8000001F,
+
+    /// {Media Changed} The media might have changed.
+    MEDIA_CHECK = 0x80000020,
+
+    /// A tape access reached a set mark.
+    SETMARK_DETECTED = 0x80000021,
+
+    /// During a tape access, the end of the data written is reached.
+    NO_DATA_DETECTED = 0x80000022,
+
+    /// The redirector is in use and cannot be unloaded.
+    REDIRECTOR_HAS_OPEN_HANDLES = 0x80000023,
+
+    /// The server is in use and cannot be unloaded.
+    SERVER_HAS_OPEN_HANDLES = 0x80000024,
+
+    /// The specified connection has already been disconnected.
+    ALREADY_DISCONNECTED = 0x80000025,
+
+    /// A long jump has been executed.
+    LONGJUMP = 0x80000026,
+
+    /// A cleaner cartridge is present in the tape library.
+    CLEANER_CARTRIDGE_INSTALLED = 0x80000027,
+
+    /// The Plug and Play query operation was not successful.
+    PLUGPLAY_QUERY_VETOED = 0x80000028,
+
+    /// A frame consolidation has been executed.
+    UNWIND_CONSOLIDATE = 0x80000029,
+
+    /// {Registry Hive Recovered} The registry hive (file): %hs was corrupted and it has been recovered. Some data might have been lost.
+    REGISTRY_HIVE_RECOVERED = 0x8000002A,
+
+    /// The application is attempting to run executable code from the module %hs. This might be insecure.
+    /// An alternative, %hs, is available. Should the application use the secure module %hs?
+    DLL_MIGHT_BE_INSECURE = 0x8000002B,
+
+    /// The application is loading executable code from the module %hs.
+    /// This is secure but might be incompatible with previous releases of the operating system.
+    /// An alternative, %hs, is available. Should the application use the secure module %hs?
+    DLL_MIGHT_BE_INCOMPATIBLE = 0x8000002C,
+
+    /// The create operation stopped after reaching a symbolic link.
+    STOPPED_ON_SYMLINK = 0x8000002D,
+
+    /// The device has indicated that cleaning is necessary.
+    DEVICE_REQUIRES_CLEANING = 0x80000288,
+
+    /// The device has indicated that its door is open. Further operations require it closed and secured.
+    DEVICE_DOOR_OPEN = 0x80000289,
+
+    /// Windows discovered a corruption in the file %hs. This file has now been repaired.
+    /// Check if any data in the file was lost because of the corruption.
+    DATA_LOST_REPAIR = 0x80000803,
+
+    /// Debugger did not handle the exception.
+    DBG_EXCEPTION_NOT_HANDLED = 0x80010001,
+
+    /// The cluster node is already up.
+    CLUSTER_NODE_ALREADY_UP = 0x80130001,
+
+    /// The cluster node is already down.
+    CLUSTER_NODE_ALREADY_DOWN = 0x80130002,
+
+    /// The cluster network is already online.
+    CLUSTER_NETWORK_ALREADY_ONLINE = 0x80130003,
+
+    /// The cluster network is already offline.
+    CLUSTER_NETWORK_ALREADY_OFFLINE = 0x80130004,
+
+    /// The cluster node is already a member of the cluster.
+    CLUSTER_NODE_ALREADY_MEMBER = 0x80130005,
+
+    /// The log could not be set to the requested size.
+    COULD_NOT_RESIZE_LOG = 0x80190009,
+
+    /// There is no transaction metadata on the file.
+    NO_TXF_METADATA = 0x80190029,
+
+    /// The file cannot be recovered because there is a handle still open on it.
+    CANT_RECOVER_WITH_HANDLE_OPEN = 0x80190031,
+
+    /// Transaction metadata is already present on this file and cannot be superseded.
+    TXF_METADATA_ALREADY_PRESENT = 0x80190041,
+
+    /// A transaction scope could not be entered because the scope handler has not been initialized.
+    TRANSACTION_SCOPE_CALLBACKS_NOT_SET = 0x80190042,
+
+    /// {Display Driver Stopped Responding and recovered} The %hs display driver has stopped working normally. The recovery had been performed.
+    VIDEO_HUNG_DISPLAY_DRIVER_THREAD_RECOVERED = 0x801B00EB,
+
+    /// {Buffer too small} The buffer is too small to contain the entry. No information has been written to the buffer.
+    FLT_BUFFER_TOO_SMALL = 0x801C0001,
+
+    /// Volume metadata read or write is incomplete.
+    FVE_PARTIAL_METADATA = 0x80210001,
+
+    /// BitLocker encryption keys were ignored because the volume was in a transient state.
+    FVE_TRANSIENT_STATE = 0x80210002,
+
+    /// {Operation Failed} The requested operation was unsuccessful.
+    UNSUCCESSFUL = 0xC0000001,
+
+    /// {Not Implemented} The requested operation is not implemented.
+    NOT_IMPLEMENTED = 0xC0000002,
+
+    /// {Invalid Parameter} The specified information class is not a valid information class for the specified object.
+    INVALID_INFO_CLASS = 0xC0000003,
+
+    /// The specified information record length does not match the length that is required for the specified information class.
+    INFO_LENGTH_MISMATCH = 0xC0000004,
+
+    /// The instruction at 0x%08lx referenced memory at 0x%08lx. The memory could not be %s.
+    ACCESS_VIOLATION = 0xC0000005,
+
+    /// The instruction at 0x%08lx referenced memory at 0x%08lx.
+    /// The required data was not placed into memory because of an I/O error status of 0x%08lx.
+    IN_PAGE_ERROR = 0xC0000006,
+
+    /// The page file quota for the process has been exhausted.
+    PAGEFILE_QUOTA = 0xC0000007,
+
+    /// An invalid HANDLE was specified.
+    INVALID_HANDLE = 0xC0000008,
+
+    /// An invalid initial stack was specified in a call to NtCreateThread.
+    BAD_INITIAL_STACK = 0xC0000009,
+
+    /// An invalid initial start address was specified in a call to NtCreateThread.
+    BAD_INITIAL_PC = 0xC000000A,
+
+    /// An invalid client ID was specified.
+    INVALID_CID = 0xC000000B,
+
+    /// An attempt was made to cancel or set a timer that has an associated APC and the specified thread is not the thread that originally set the timer with an associated APC routine.
+    TIMER_NOT_CANCELED = 0xC000000C,
+
+    /// An invalid parameter was passed to a service or function.
+    INVALID_PARAMETER = 0xC000000D,
+
+    /// A device that does not exist was specified.
+    NO_SUCH_DEVICE = 0xC000000E,
+
+    /// {File Not Found} The file %hs does not exist.
+    NO_SUCH_FILE = 0xC000000F,
+
+    /// The specified request is not a valid operation for the target device.
+    INVALID_DEVICE_REQUEST = 0xC0000010,
+
+    /// The end-of-file marker has been reached.
+    /// There is no valid data in the file beyond this marker.
+    END_OF_FILE = 0xC0000011,
+
+    /// {Wrong Volume} The wrong volume is in the drive. Insert volume %hs into drive %hs.
+    WRONG_VOLUME = 0xC0000012,
+
+    /// {No Disk} There is no disk in the drive. Insert a disk into drive %hs.
+    NO_MEDIA_IN_DEVICE = 0xC0000013,
+
+    /// {Unknown Disk Format} The disk in drive %hs is not formatted properly.
+    /// Check the disk, and reformat it, if needed.
+    UNRECOGNIZED_MEDIA = 0xC0000014,
+
+    /// {Sector Not Found} The specified sector does not exist.
+    NONEXISTENT_SECTOR = 0xC0000015,
+
+    /// {Still Busy} The specified I/O request packet (IRP) cannot be disposed of because the I/O operation is not complete.
+    MORE_PROCESSING_REQUIRED = 0xC0000016,
+
+    /// {Not Enough Quota} Not enough virtual memory or paging file quota is available to complete the specified operation.
+    NO_MEMORY = 0xC0000017,
+
+    /// {Conflicting Address Range} The specified address range conflicts with the address space.
+    CONFLICTING_ADDRESSES = 0xC0000018,
+
+    /// The address range to unmap is not a mapped view.
+    NOT_MAPPED_VIEW = 0xC0000019,
+
+    /// The virtual memory cannot be freed.
+    UNABLE_TO_FREE_VM = 0xC000001A,
+
+    /// The specified section cannot be deleted.
+    UNABLE_TO_DELETE_SECTION = 0xC000001B,
+
+    /// An invalid system service was specified in a system service call.
+    INVALID_SYSTEM_SERVICE = 0xC000001C,
+
+    /// {EXCEPTION} Illegal Instruction An attempt was made to execute an illegal instruction.
+    ILLEGAL_INSTRUCTION = 0xC000001D,
+
+    /// {Invalid Lock Sequence} An attempt was made to execute an invalid lock sequence.
+    INVALID_LOCK_SEQUENCE = 0xC000001E,
+
+    /// {Invalid Mapping} An attempt was made to create a view for a section that is bigger than the section.
+    INVALID_VIEW_SIZE = 0xC000001F,
+
+    /// {Bad File} The attributes of the specified mapping file for a section of memory cannot be read.
+    INVALID_FILE_FOR_SECTION = 0xC0000020,
+
+    /// {Already Committed} The specified address range is already committed.
+    ALREADY_COMMITTED = 0xC0000021,
+
+    /// {Access Denied} A process has requested access to an object but has not been granted those access rights.
+    ACCESS_DENIED = 0xC0000022,
+
+    /// {Buffer Too Small} The buffer is too small to contain the entry. No information has been written to the buffer.
+    BUFFER_TOO_SMALL = 0xC0000023,
+
+    /// {Wrong Type} There is a mismatch between the type of object that is required by the requested operation and the type of object that is specified in the request.
+    OBJECT_TYPE_MISMATCH = 0xC0000024,
+
+    /// {EXCEPTION} Cannot Continue Windows cannot continue from this exception.
+    NONCONTINUABLE_EXCEPTION = 0xC0000025,
+
+    /// An invalid exception disposition was returned by an exception handler.
+    INVALID_DISPOSITION = 0xC0000026,
+
+    /// Unwind exception code.
+    UNWIND = 0xC0000027,
+
+    /// An invalid or unaligned stack was encountered during an unwind operation.
+    BAD_STACK = 0xC0000028,
+
+    /// An invalid unwind target was encountered during an unwind operation.
+    INVALID_UNWIND_TARGET = 0xC0000029,
+
+    /// An attempt was made to unlock a page of memory that was not locked.
+    NOT_LOCKED = 0xC000002A,
+
+    /// A device parity error on an I/O operation.
+    PARITY_ERROR = 0xC000002B,
+
+    /// An attempt was made to decommit uncommitted virtual memory.
+    UNABLE_TO_DECOMMIT_VM = 0xC000002C,
+
+    /// An attempt was made to change the attributes on memory that has not been committed.
+    NOT_COMMITTED = 0xC000002D,
+
+    /// Invalid object attributes specified to NtCreatePort or invalid port attributes specified to NtConnectPort.
+    INVALID_PORT_ATTRIBUTES = 0xC000002E,
+
+    /// The length of the message that was passed to NtRequestPort or NtRequestWaitReplyPort is longer than the maximum message that is allowed by the port.
+    PORT_MESSAGE_TOO_LONG = 0xC000002F,
+
+    /// An invalid combination of parameters was specified.
+    INVALID_PARAMETER_MIX = 0xC0000030,
+
+    /// An attempt was made to lower a quota limit below the current usage.
+    INVALID_QUOTA_LOWER = 0xC0000031,
+
+    /// {Corrupt Disk} The file system structure on the disk is corrupt and unusable. Run the Chkdsk utility on the volume %hs.
+    DISK_CORRUPT_ERROR = 0xC0000032,
+
+    /// The object name is invalid.
+    OBJECT_NAME_INVALID = 0xC0000033,
+
+    /// The object name is not found.
+    OBJECT_NAME_NOT_FOUND = 0xC0000034,
+
+    /// The object name already exists.
+    OBJECT_NAME_COLLISION = 0xC0000035,
+
+    /// An attempt was made to send a message to a disconnected communication port.
+    PORT_DISCONNECTED = 0xC0000037,
+
+    /// An attempt was made to attach to a device that was already attached to another device.
+    DEVICE_ALREADY_ATTACHED = 0xC0000038,
+
+    /// The object path component was not a directory object.
+    OBJECT_PATH_INVALID = 0xC0000039,
+
+    /// {Path Not Found} The path %hs does not exist.
+    OBJECT_PATH_NOT_FOUND = 0xC000003A,
+
+    /// The object path component was not a directory object.
+    OBJECT_PATH_SYNTAX_BAD = 0xC000003B,
+
+    /// {Data Overrun} A data overrun error occurred.
+    DATA_OVERRUN = 0xC000003C,
+
+    /// {Data Late} A data late error occurred.
+    DATA_LATE_ERROR = 0xC000003D,
+
+    /// {Data Error} An error occurred in reading or writing data.
+    DATA_ERROR = 0xC000003E,
+
+    /// {Bad CRC} A cyclic redundancy check (CRC) checksum error occurred.
+    CRC_ERROR = 0xC000003F,
+
+    /// {Section Too Large} The specified section is too big to map the file.
+    SECTION_TOO_BIG = 0xC0000040,
+
+    /// The NtConnectPort request is refused.
+    PORT_CONNECTION_REFUSED = 0xC0000041,
+
+    /// The type of port handle is invalid for the operation that is requested.
+    INVALID_PORT_HANDLE = 0xC0000042,
+
+    /// A file cannot be opened because the share access flags are incompatible.
+    SHARING_VIOLATION = 0xC0000043,
+
+    /// Insufficient quota exists to complete the operation.
+    QUOTA_EXCEEDED = 0xC0000044,
+
+    /// The specified page protection was not valid.
+    INVALID_PAGE_PROTECTION = 0xC0000045,
+
+    /// An attempt to release a mutant object was made by a thread that was not the owner of the mutant object.
+    MUTANT_NOT_OWNED = 0xC0000046,
+
+    /// An attempt was made to release a semaphore such that its maximum count would have been exceeded.
+    SEMAPHORE_LIMIT_EXCEEDED = 0xC0000047,
+
+    /// An attempt was made to set the DebugPort or ExceptionPort of a process, but a port already exists in the process, or an attempt was made to set the CompletionPort of a file but a port was already set in the file, or an attempt was made to set the associated completion port of an ALPC port but it is already set.
+    PORT_ALREADY_SET = 0xC0000048,
+
+    /// An attempt was made to query image information on a section that does not map an image.
+    SECTION_NOT_IMAGE = 0xC0000049,
+
+    /// An attempt was made to suspend a thread whose suspend count was at its maximum.
+    SUSPEND_COUNT_EXCEEDED = 0xC000004A,
+
+    /// An attempt was made to suspend a thread that has begun termination.
+    THREAD_IS_TERMINATING = 0xC000004B,
+
+    /// An attempt was made to set the working set limit to an invalid value (for example, the minimum greater than maximum).
+    BAD_WORKING_SET_LIMIT = 0xC000004C,
+
+    /// A section was created to map a file that is not compatible with an already existing section that maps the same file.
+    INCOMPATIBLE_FILE_MAP = 0xC000004D,
+
+    /// A view to a section specifies a protection that is incompatible with the protection of the initial view.
+    SECTION_PROTECTION = 0xC000004E,
+
+    /// An operation involving EAs failed because the file system does not support EAs.
+    EAS_NOT_SUPPORTED = 0xC000004F,
+
+    /// An EA operation failed because the EA set is too large.
+    EA_TOO_LARGE = 0xC0000050,
+
+    /// An EA operation failed because the name or EA index is invalid.
+    NONEXISTENT_EA_ENTRY = 0xC0000051,
+
+    /// The file for which EAs were requested has no EAs.
+    NO_EAS_ON_FILE = 0xC0000052,
+
+    /// The EA is corrupt and cannot be read.
+    EA_CORRUPT_ERROR = 0xC0000053,
+
+    /// A requested read/write cannot be granted due to a conflicting file lock.
+    FILE_LOCK_CONFLICT = 0xC0000054,
+
+    /// A requested file lock cannot be granted due to other existing locks.
+    LOCK_NOT_GRANTED = 0xC0000055,
+
+    /// A non-close operation has been requested of a file object that has a delete pending.
+    DELETE_PENDING = 0xC0000056,
+
+    /// An attempt was made to set the control attribute on a file.
+    /// This attribute is not supported in the destination file system.
+    CTL_FILE_NOT_SUPPORTED = 0xC0000057,
+
+    /// Indicates a revision number that was encountered or specified is not one that is known by the service.
+    /// It might be a more recent revision than the service is aware of.
+    UNKNOWN_REVISION = 0xC0000058,
+
+    /// Indicates that two revision levels are incompatible.
+    REVISION_MISMATCH = 0xC0000059,
+
+    /// Indicates a particular security ID cannot be assigned as the owner of an object.
+    INVALID_OWNER = 0xC000005A,
+
+    /// Indicates a particular security ID cannot be assigned as the primary group of an object.
+    INVALID_PRIMARY_GROUP = 0xC000005B,
+
+    /// An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client.
+    NO_IMPERSONATION_TOKEN = 0xC000005C,
+
+    /// A mandatory group cannot be disabled.
+    CANT_DISABLE_MANDATORY = 0xC000005D,
+
+    /// No logon servers are currently available to service the logon request.
+    NO_LOGON_SERVERS = 0xC000005E,
+
+    /// A specified logon session does not exist. It might already have been terminated.
+    NO_SUCH_LOGON_SESSION = 0xC000005F,
+
+    /// A specified privilege does not exist.
+    NO_SUCH_PRIVILEGE = 0xC0000060,
+
+    /// A required privilege is not held by the client.
+    PRIVILEGE_NOT_HELD = 0xC0000061,
+
+    /// The name provided is not a properly formed account name.
+    INVALID_ACCOUNT_NAME = 0xC0000062,
+
+    /// The specified account already exists.
+    USER_EXISTS = 0xC0000063,
+
+    /// The specified account does not exist.
+    NO_SUCH_USER = 0xC0000064,
+
+    /// The specified group already exists.
+    GROUP_EXISTS = 0xC0000065,
+
+    /// The specified group does not exist.
+    NO_SUCH_GROUP = 0xC0000066,
+
+    /// The specified user account is already in the specified group account.
+    /// Also used to indicate a group cannot be deleted because it contains a member.
+    MEMBER_IN_GROUP = 0xC0000067,
+
+    /// The specified user account is not a member of the specified group account.
+    MEMBER_NOT_IN_GROUP = 0xC0000068,
+
+    /// Indicates the requested operation would disable or delete the last remaining administration account.
+    /// This is not allowed to prevent creating a situation in which the system cannot be administrated.
+    LAST_ADMIN = 0xC0000069,
+
+    /// When trying to update a password, this return status indicates that the value provided as the current password is not correct.
+    WRONG_PASSWORD = 0xC000006A,
+
+    /// When trying to update a password, this return status indicates that the value provided for the new password contains values that are not allowed in passwords.
+    ILL_FORMED_PASSWORD = 0xC000006B,
+
+    /// When trying to update a password, this status indicates that some password update rule has been violated.
+    /// For example, the password might not meet length criteria.
+    PASSWORD_RESTRICTION = 0xC000006C,
+
+    /// The attempted logon is invalid.
+    /// This is either due to a bad username or authentication information.
+    LOGON_FAILURE = 0xC000006D,
+
+    /// Indicates a referenced user name and authentication information are valid, but some user account restriction has prevented successful authentication (such as time-of-day restrictions).
+    ACCOUNT_RESTRICTION = 0xC000006E,
+
+    /// The user account has time restrictions and cannot be logged onto at this time.
+    INVALID_LOGON_HOURS = 0xC000006F,
+
+    /// The user account is restricted so that it cannot be used to log on from the source workstation.
+    INVALID_WORKSTATION = 0xC0000070,
+
+    /// The user account password has expired.
+    PASSWORD_EXPIRED = 0xC0000071,
+
+    /// The referenced account is currently disabled and cannot be logged on to.
+    ACCOUNT_DISABLED = 0xC0000072,
+
+    /// None of the information to be translated has been translated.
+    NONE_MAPPED = 0xC0000073,
+
+    /// The number of LUIDs requested cannot be allocated with a single allocation.
+    TOO_MANY_LUIDS_REQUESTED = 0xC0000074,
+
+    /// Indicates there are no more LUIDs to allocate.
+    LUIDS_EXHAUSTED = 0xC0000075,
+
+    /// Indicates the sub-authority value is invalid for the particular use.
+    INVALID_SUB_AUTHORITY = 0xC0000076,
+
+    /// Indicates the ACL structure is not valid.
+    INVALID_ACL = 0xC0000077,
+
+    /// Indicates the SID structure is not valid.
+    INVALID_SID = 0xC0000078,
+
+    /// Indicates the SECURITY_DESCRIPTOR structure is not valid.
+    INVALID_SECURITY_DESCR = 0xC0000079,
+
+    /// Indicates the specified procedure address cannot be found in the DLL.
+    PROCEDURE_NOT_FOUND = 0xC000007A,
+
+    /// {Bad Image} %hs is either not designed to run on Windows or it contains an error.
+    /// Try installing the program again using the original installation media or contact your system administrator or the software vendor for support.
+    INVALID_IMAGE_FORMAT = 0xC000007B,
+
+    /// An attempt was made to reference a token that does not exist.
+    /// This is typically done by referencing the token that is associated with a thread when the thread is not impersonating a client.
+    NO_TOKEN = 0xC000007C,
+
+    /// Indicates that an attempt to build either an inherited ACL or ACE was not successful. This can be caused by a number of things.
+    /// One of the more probable causes is the replacement of a CreatorId with a SID that did not fit into the ACE or ACL.
+    BAD_INHERITANCE_ACL = 0xC000007D,
+
+    /// The range specified in NtUnlockFile was not locked.
+    RANGE_NOT_LOCKED = 0xC000007E,
+
+    /// An operation failed because the disk was full.
+    DISK_FULL = 0xC000007F,
+
+    /// The GUID allocation server is disabled at the moment.
+    SERVER_DISABLED = 0xC0000080,
+
+    /// The GUID allocation server is enabled at the moment.
+    SERVER_NOT_DISABLED = 0xC0000081,
+
+    /// Too many GUIDs were requested from the allocation server at once.
+    TOO_MANY_GUIDS_REQUESTED = 0xC0000082,
+
+    /// The GUIDs could not be allocated because the Authority Agent was exhausted.
+    GUIDS_EXHAUSTED = 0xC0000083,
+
+    /// The value provided was an invalid value for an identifier authority.
+    INVALID_ID_AUTHORITY = 0xC0000084,
+
+    /// No more authority agent values are available for the particular identifier authority value.
+    AGENTS_EXHAUSTED = 0xC0000085,
+
+    /// An invalid volume label has been specified.
+    INVALID_VOLUME_LABEL = 0xC0000086,
+
+    /// A mapped section could not be extended.
+    SECTION_NOT_EXTENDED = 0xC0000087,
+
+    /// Specified section to flush does not map a data file.
+    NOT_MAPPED_DATA = 0xC0000088,
+
+    /// Indicates the specified image file did not contain a resource section.
+    RESOURCE_DATA_NOT_FOUND = 0xC0000089,
+
+    /// Indicates the specified resource type cannot be found in the image file.
+    RESOURCE_TYPE_NOT_FOUND = 0xC000008A,
+
+    /// Indicates the specified resource name cannot be found in the image file.
+    RESOURCE_NAME_NOT_FOUND = 0xC000008B,
+
+    /// {EXCEPTION} Array bounds exceeded.
+    ARRAY_BOUNDS_EXCEEDED = 0xC000008C,
+
+    /// {EXCEPTION} Floating-point denormal operand.
+    FLOAT_DENORMAL_OPERAND = 0xC000008D,
+
+    /// {EXCEPTION} Floating-point division by zero.
+    FLOAT_DIVIDE_BY_ZERO = 0xC000008E,
+
+    /// {EXCEPTION} Floating-point inexact result.
+    FLOAT_INEXACT_RESULT = 0xC000008F,
+
+    /// {EXCEPTION} Floating-point invalid operation.
+    FLOAT_INVALID_OPERATION = 0xC0000090,
+
+    /// {EXCEPTION} Floating-point overflow.
+    FLOAT_OVERFLOW = 0xC0000091,
+
+    /// {EXCEPTION} Floating-point stack check.
+    FLOAT_STACK_CHECK = 0xC0000092,
+
+    /// {EXCEPTION} Floating-point underflow.
+    FLOAT_UNDERFLOW = 0xC0000093,
+
+    /// {EXCEPTION} Integer division by zero.
+    INTEGER_DIVIDE_BY_ZERO = 0xC0000094,
+
+    /// {EXCEPTION} Integer overflow.
+    INTEGER_OVERFLOW = 0xC0000095,
+
+    /// {EXCEPTION} Privileged instruction.
+    PRIVILEGED_INSTRUCTION = 0xC0000096,
+
+    /// An attempt was made to install more paging files than the system supports.
+    TOO_MANY_PAGING_FILES = 0xC0000097,
+
+    /// The volume for a file has been externally altered such that the opened file is no longer valid.
+    FILE_INVALID = 0xC0000098,
+
+    /// When a block of memory is allotted for future updates, such as the memory allocated to hold discretionary access control and primary group information, successive updates might exceed the amount of memory originally allotted.
+    /// Because a quota might already have been charged to several processes that have handles to the object, it is not reasonable to alter the size of the allocated memory.
+    /// Instead, a request that requires more memory than has been allotted must fail and the STATUS_ALLOTTED_SPACE_EXCEEDED error returned.
+    ALLOTTED_SPACE_EXCEEDED = 0xC0000099,
+
+    /// Insufficient system resources exist to complete the API.
+    INSUFFICIENT_RESOURCES = 0xC000009A,
+
+    /// An attempt has been made to open a DFS exit path control file.
+    DFS_EXIT_PATH_FOUND = 0xC000009B,
+
+    /// There are bad blocks (sectors) on the hard disk.
+    DEVICE_DATA_ERROR = 0xC000009C,
+
+    /// There is bad cabling, non-termination, or the controller is not able to obtain access to the hard disk.
+    DEVICE_NOT_CONNECTED = 0xC000009D,
+
+    /// Virtual memory cannot be freed because the base address is not the base of the region and a region size of zero was specified.
+    FREE_VM_NOT_AT_BASE = 0xC000009F,
+
+    /// An attempt was made to free virtual memory that is not allocated.
+    MEMORY_NOT_ALLOCATED = 0xC00000A0,
+
+    /// The working set is not big enough to allow the requested pages to be locked.
+    WORKING_SET_QUOTA = 0xC00000A1,
+
+    /// {Write Protect Error} The disk cannot be written to because it is write-protected.
+    /// Remove the write protection from the volume %hs in drive %hs.
+    MEDIA_WRITE_PROTECTED = 0xC00000A2,
+
+    /// {Drive Not Ready} The drive is not ready for use; its door might be open.
+    /// Check drive %hs and make sure that a disk is inserted and that the drive door is closed.
+    DEVICE_NOT_READY = 0xC00000A3,
+
+    /// The specified attributes are invalid or are incompatible with the attributes for the group as a whole.
+    INVALID_GROUP_ATTRIBUTES = 0xC00000A4,
+
+    /// A specified impersonation level is invalid.
+    /// Also used to indicate that a required impersonation level was not provided.
+    BAD_IMPERSONATION_LEVEL = 0xC00000A5,
+
+    /// An attempt was made to open an anonymous-level token. Anonymous tokens cannot be opened.
+    CANT_OPEN_ANONYMOUS = 0xC00000A6,
+
+    /// The validation information class requested was invalid.
+    BAD_VALIDATION_CLASS = 0xC00000A7,
+
+    /// The type of a token object is inappropriate for its attempted use.
+    BAD_TOKEN_TYPE = 0xC00000A8,
+
+    /// The type of a token object is inappropriate for its attempted use.
+    BAD_MASTER_BOOT_RECORD = 0xC00000A9,
+
+    /// An attempt was made to execute an instruction at an unaligned address and the host system does not support unaligned instruction references.
+    INSTRUCTION_MISALIGNMENT = 0xC00000AA,
+
+    /// The maximum named pipe instance count has been reached.
+    INSTANCE_NOT_AVAILABLE = 0xC00000AB,
+
+    /// An instance of a named pipe cannot be found in the listening state.
+    PIPE_NOT_AVAILABLE = 0xC00000AC,
+
+    /// The named pipe is not in the connected or closing state.
+    INVALID_PIPE_STATE = 0xC00000AD,
+
+    /// The specified pipe is set to complete operations and there are current I/O operations queued so that it cannot be changed to queue operations.
+    PIPE_BUSY = 0xC00000AE,
+
+    /// The specified handle is not open to the server end of the named pipe.
+    ILLEGAL_FUNCTION = 0xC00000AF,
+
+    /// The specified named pipe is in the disconnected state.
+    PIPE_DISCONNECTED = 0xC00000B0,
+
+    /// The specified named pipe is in the closing state.
+    PIPE_CLOSING = 0xC00000B1,
+
+    /// The specified named pipe is in the connected state.
+    PIPE_CONNECTED = 0xC00000B2,
+
+    /// The specified named pipe is in the listening state.
+    PIPE_LISTENING = 0xC00000B3,
+
+    /// The specified named pipe is not in message mode.
+    INVALID_READ_MODE = 0xC00000B4,
+
+    /// {Device Timeout} The specified I/O operation on %hs was not completed before the time-out period expired.
+    IO_TIMEOUT = 0xC00000B5,
+
+    /// The specified file has been closed by another process.
+    FILE_FORCED_CLOSED = 0xC00000B6,
+
+    /// Profiling is not started.
+    PROFILING_NOT_STARTED = 0xC00000B7,
+
+    /// Profiling is not stopped.
+    PROFILING_NOT_STOPPED = 0xC00000B8,
+
+    /// The passed ACL did not contain the minimum required information.
+    COULD_NOT_INTERPRET = 0xC00000B9,
+
+    /// The file that was specified as a target is a directory, and the caller specified that it could be anything but a directory.
+    FILE_IS_A_DIRECTORY = 0xC00000BA,
+
+    /// The request is not supported.
+    NOT_SUPPORTED = 0xC00000BB,
+
+    /// This remote computer is not listening.
+    REMOTE_NOT_LISTENING = 0xC00000BC,
+
+    /// A duplicate name exists on the network.
+    DUPLICATE_NAME = 0xC00000BD,
+
+    /// The network path cannot be located.
+    BAD_NETWORK_PATH = 0xC00000BE,
+
+    /// The network is busy.
+    NETWORK_BUSY = 0xC00000BF,
+
+    /// This device does not exist.
+    DEVICE_DOES_NOT_EXIST = 0xC00000C0,
+
+    /// The network BIOS command limit has been reached.
+    TOO_MANY_COMMANDS = 0xC00000C1,
+
+    /// An I/O adapter hardware error has occurred.
+    ADAPTER_HARDWARE_ERROR = 0xC00000C2,
+
+    /// The network responded incorrectly.
+    INVALID_NETWORK_RESPONSE = 0xC00000C3,
+
+    /// An unexpected network error occurred.
+    UNEXPECTED_NETWORK_ERROR = 0xC00000C4,
+
+    /// The remote adapter is not compatible.
+    BAD_REMOTE_ADAPTER = 0xC00000C5,
+
+    /// The print queue is full.
+    PRINT_QUEUE_FULL = 0xC00000C6,
+
+    /// Space to store the file that is waiting to be printed is not available on the server.
+    NO_SPOOL_SPACE = 0xC00000C7,
+
+    /// The requested print file has been canceled.
+    PRINT_CANCELLED = 0xC00000C8,
+
+    /// The network name was deleted.
+    NETWORK_NAME_DELETED = 0xC00000C9,
+
+    /// Network access is denied.
+    NETWORK_ACCESS_DENIED = 0xC00000CA,
+
+    /// {Incorrect Network Resource Type} The specified device type (LPT, for example) conflicts with the actual device type on the remote resource.
+    BAD_DEVICE_TYPE = 0xC00000CB,
+
+    /// {Network Name Not Found} The specified share name cannot be found on the remote server.
+    BAD_NETWORK_NAME = 0xC00000CC,
+
+    /// The name limit for the network adapter card of the local computer was exceeded.
+    TOO_MANY_NAMES = 0xC00000CD,
+
+    /// The network BIOS session limit was exceeded.
+    TOO_MANY_SESSIONS = 0xC00000CE,
+
+    /// File sharing has been temporarily paused.
+    SHARING_PAUSED = 0xC00000CF,
+
+    /// No more connections can be made to this remote computer at this time because the computer has already accepted the maximum number of connections.
+    REQUEST_NOT_ACCEPTED = 0xC00000D0,
+
+    /// Print or disk redirection is temporarily paused.
+    REDIRECTOR_PAUSED = 0xC00000D1,
+
+    /// A network data fault occurred.
+    NET_WRITE_FAULT = 0xC00000D2,
+
+    /// The number of active profiling objects is at the maximum and no more can be started.
+    PROFILING_AT_LIMIT = 0xC00000D3,
+
+    /// {Incorrect Volume} The destination file of a rename request is located on a different device than the source of the rename request.
+    NOT_SAME_DEVICE = 0xC00000D4,
+
+    /// The specified file has been renamed and thus cannot be modified.
+    FILE_RENAMED = 0xC00000D5,
+
+    /// {Network Request Timeout} The session with a remote server has been disconnected because the time-out interval for a request has expired.
+    VIRTUAL_CIRCUIT_CLOSED = 0xC00000D6,
+
+    /// Indicates an attempt was made to operate on the security of an object that does not have security associated with it.
+    NO_SECURITY_ON_OBJECT = 0xC00000D7,
+
+    /// Used to indicate that an operation cannot continue without blocking for I/O.
+    CANT_WAIT = 0xC00000D8,
+
+    /// Used to indicate that a read operation was done on an empty pipe.
+    PIPE_EMPTY = 0xC00000D9,
+
+    /// Configuration information could not be read from the domain controller, either because the machine is unavailable or access has been denied.
+    CANT_ACCESS_DOMAIN_INFO = 0xC00000DA,
+
+    /// Indicates that a thread attempted to terminate itself by default (called NtTerminateThread with NULL) and it was the last thread in the current process.
+    CANT_TERMINATE_SELF = 0xC00000DB,
+
+    /// Indicates the Sam Server was in the wrong state to perform the desired operation.
+    INVALID_SERVER_STATE = 0xC00000DC,
+
+    /// Indicates the domain was in the wrong state to perform the desired operation.
+    INVALID_DOMAIN_STATE = 0xC00000DD,
+
+    /// This operation is only allowed for the primary domain controller of the domain.
+    INVALID_DOMAIN_ROLE = 0xC00000DE,
+
+    /// The specified domain did not exist.
+    NO_SUCH_DOMAIN = 0xC00000DF,
+
+    /// The specified domain already exists.
+    DOMAIN_EXISTS = 0xC00000E0,
+
+    /// An attempt was made to exceed the limit on the number of domains per server for this release.
+    DOMAIN_LIMIT_EXCEEDED = 0xC00000E1,
+
+    /// An error status returned when the opportunistic lock (oplock) request is denied.
+    OPLOCK_NOT_GRANTED = 0xC00000E2,
+
+    /// An error status returned when an invalid opportunistic lock (oplock) acknowledgment is received by a file system.
+    INVALID_OPLOCK_PROTOCOL = 0xC00000E3,
+
+    /// This error indicates that the requested operation cannot be completed due to a catastrophic media failure or an on-disk data structure corruption.
+    INTERNAL_DB_CORRUPTION = 0xC00000E4,
+
+    /// An internal error occurred.
+    INTERNAL_ERROR = 0xC00000E5,
+
+    /// Indicates generic access types were contained in an access mask which should already be mapped to non-generic access types.
+    GENERIC_NOT_MAPPED = 0xC00000E6,
+
+    /// Indicates a security descriptor is not in the necessary format (absolute or self-relative).
+    BAD_DESCRIPTOR_FORMAT = 0xC00000E7,
+
+    /// An access to a user buffer failed at an expected point in time.
+    /// This code is defined because the caller does not want to accept STATUS_ACCESS_VIOLATION in its filter.
+    INVALID_USER_BUFFER = 0xC00000E8,
+
+    /// If an I/O error that is not defined in the standard FsRtl filter is returned, it is converted to the following error, which is guaranteed to be in the filter.
+    /// In this case, information is lost; however, the filter correctly handles the exception.
+    UNEXPECTED_IO_ERROR = 0xC00000E9,
+
+    /// If an MM error that is not defined in the standard FsRtl filter is returned, it is converted to one of the following errors, which are guaranteed to be in the filter.
+    /// In this case, information is lost; however, the filter correctly handles the exception.
+    UNEXPECTED_MM_CREATE_ERR = 0xC00000EA,
+
+    /// If an MM error that is not defined in the standard FsRtl filter is returned, it is converted to one of the following errors, which are guaranteed to be in the filter.
+    /// In this case, information is lost; however, the filter correctly handles the exception.
+    UNEXPECTED_MM_MAP_ERROR = 0xC00000EB,
+
+    /// If an MM error that is not defined in the standard FsRtl filter is returned, it is converted to one of the following errors, which are guaranteed to be in the filter.
+    /// In this case, information is lost; however, the filter correctly handles the exception.
+    UNEXPECTED_MM_EXTEND_ERR = 0xC00000EC,
+
+    /// The requested action is restricted for use by logon processes only.
+    /// The calling process has not registered as a logon process.
+    NOT_LOGON_PROCESS = 0xC00000ED,
+
+    /// An attempt has been made to start a new session manager or LSA logon session by using an ID that is already in use.
+    LOGON_SESSION_EXISTS = 0xC00000EE,
+
+    /// An invalid parameter was passed to a service or function as the first argument.
+    INVALID_PARAMETER_1 = 0xC00000EF,
+
+    /// An invalid parameter was passed to a service or function as the second argument.
+    INVALID_PARAMETER_2 = 0xC00000F0,
+
+    /// An invalid parameter was passed to a service or function as the third argument.
+    INVALID_PARAMETER_3 = 0xC00000F1,
+
+    /// An invalid parameter was passed to a service or function as the fourth argument.
+    INVALID_PARAMETER_4 = 0xC00000F2,
+
+    /// An invalid parameter was passed to a service or function as the fifth argument.
+    INVALID_PARAMETER_5 = 0xC00000F3,
+
+    /// An invalid parameter was passed to a service or function as the sixth argument.
+    INVALID_PARAMETER_6 = 0xC00000F4,
+
+    /// An invalid parameter was passed to a service or function as the seventh argument.
+    INVALID_PARAMETER_7 = 0xC00000F5,
+
+    /// An invalid parameter was passed to a service or function as the eighth argument.
+    INVALID_PARAMETER_8 = 0xC00000F6,
+
+    /// An invalid parameter was passed to a service or function as the ninth argument.
+    INVALID_PARAMETER_9 = 0xC00000F7,
+
+    /// An invalid parameter was passed to a service or function as the tenth argument.
+    INVALID_PARAMETER_10 = 0xC00000F8,
+
+    /// An invalid parameter was passed to a service or function as the eleventh argument.
+    INVALID_PARAMETER_11 = 0xC00000F9,
+
+    /// An invalid parameter was passed to a service or function as the twelfth argument.
+    INVALID_PARAMETER_12 = 0xC00000FA,
+
+    /// An attempt was made to access a network file, but the network software was not yet started.
+    REDIRECTOR_NOT_STARTED = 0xC00000FB,
+
+    /// An attempt was made to start the redirector, but the redirector has already been started.
+    REDIRECTOR_STARTED = 0xC00000FC,
+
+    /// A new guard page for the stack cannot be created.
+    STACK_OVERFLOW = 0xC00000FD,
+
+    /// A specified authentication package is unknown.
+    NO_SUCH_PACKAGE = 0xC00000FE,
+
+    /// A malformed function table was encountered during an unwind operation.
+    BAD_FUNCTION_TABLE = 0xC00000FF,
+
+    /// Indicates the specified environment variable name was not found in the specified environment block.
+    VARIABLE_NOT_FOUND = 0xC0000100,
+
+    /// Indicates that the directory trying to be deleted is not empty.
+    DIRECTORY_NOT_EMPTY = 0xC0000101,
+
+    /// {Corrupt File} The file or directory %hs is corrupt and unreadable. Run the Chkdsk utility.
+    FILE_CORRUPT_ERROR = 0xC0000102,
+
+    /// A requested opened file is not a directory.
+    NOT_A_DIRECTORY = 0xC0000103,
+
+    /// The logon session is not in a state that is consistent with the requested operation.
+    BAD_LOGON_SESSION_STATE = 0xC0000104,
+
+    /// An internal LSA error has occurred.
+    /// An authentication package has requested the creation of a logon session but the ID of an already existing logon session has been specified.
+    LOGON_SESSION_COLLISION = 0xC0000105,
+
+    /// A specified name string is too long for its intended use.
+    NAME_TOO_LONG = 0xC0000106,
+
+    /// The user attempted to force close the files on a redirected drive, but there were opened files on the drive, and the user did not specify a sufficient level of force.
+    FILES_OPEN = 0xC0000107,
+
+    /// The user attempted to force close the files on a redirected drive, but there were opened directories on the drive, and the user did not specify a sufficient level of force.
+    CONNECTION_IN_USE = 0xC0000108,
+
+    /// RtlFindMessage could not locate the requested message ID in the message table resource.
+    MESSAGE_NOT_FOUND = 0xC0000109,
+
+    /// An attempt was made to duplicate an object handle into or out of an exiting process.
+    PROCESS_IS_TERMINATING = 0xC000010A,
+
+    /// Indicates an invalid value has been provided for the LogonType requested.
+    INVALID_LOGON_TYPE = 0xC000010B,
+
+    /// 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 might cause a file creation attempt to fail.
+    NO_GUID_TRANSLATION = 0xC000010C,
+
+    /// Indicates that an attempt has been made to impersonate via a named pipe that has not yet been read from.
+    CANNOT_IMPERSONATE = 0xC000010D,
+
+    /// Indicates that the specified image is already loaded.
+    IMAGE_ALREADY_LOADED = 0xC000010E,
+
+    /// Indicates that an attempt was made to change the size of the LDT for a process that has no LDT.
+    NO_LDT = 0xC0000117,
+
+    /// 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.
+    INVALID_LDT_SIZE = 0xC0000118,
+
+    /// Indicates that the starting value for the LDT information was not an integral multiple of the selector size.
+    INVALID_LDT_OFFSET = 0xC0000119,
+
+    /// Indicates that the user supplied an invalid descriptor when trying to set up LDT descriptors.
+    INVALID_LDT_DESCRIPTOR = 0xC000011A,
+
+    /// The specified image file did not have the correct format. It appears to be NE format.
+    INVALID_IMAGE_NE_FORMAT = 0xC000011B,
+
+    /// Indicates that the transaction state of a registry subtree is incompatible with the requested operation.
+    /// For example, a request has been made to start a new transaction with one already in progress, or a request has been made to apply a transaction when one is not currently in progress.
+    RXACT_INVALID_STATE = 0xC000011C,
+
+    /// Indicates an error has occurred during a registry transaction commit.
+    /// The database has been left in an unknown, but probably inconsistent, state.
+    /// The state of the registry transaction is left as COMMITTING.
+    RXACT_COMMIT_FAILURE = 0xC000011D,
+
+    /// An attempt was made to map a file of size zero with the maximum size specified as zero.
+    MAPPED_FILE_SIZE_ZERO = 0xC000011E,
+
+    /// Too many files are opened on a remote server.
+    /// This error should only be returned by the Windows redirector on a remote drive.
+    TOO_MANY_OPENED_FILES = 0xC000011F,
+
+    /// The I/O request was canceled.
+    CANCELLED = 0xC0000120,
+
+    /// An attempt has been made to remove a file or directory that cannot be deleted.
+    CANNOT_DELETE = 0xC0000121,
+
+    /// Indicates a name that was specified as a remote computer name is syntactically invalid.
+    INVALID_COMPUTER_NAME = 0xC0000122,
+
+    /// An I/O request other than close was performed on a file after it was deleted, which can only happen to a request that did not complete before the last handle was closed via NtClose.
+    FILE_DELETED = 0xC0000123,
+
+    /// Indicates an operation that is incompatible with built-in accounts has been attempted on a built-in (special) SAM account. For example, built-in accounts cannot be deleted.
+    SPECIAL_ACCOUNT = 0xC0000124,
+
+    /// The operation requested cannot be performed on the specified group because it is a built-in special group.
+    SPECIAL_GROUP = 0xC0000125,
+
+    /// The operation requested cannot be performed on the specified user because it is a built-in special user.
+    SPECIAL_USER = 0xC0000126,
+
+    /// Indicates a member cannot be removed from a group because the group is currently the member's primary group.
+    MEMBERS_PRIMARY_GROUP = 0xC0000127,
+
+    /// An I/O request other than close and several other special case operations was attempted using a file object that had already been closed.
+    FILE_CLOSED = 0xC0000128,
+
+    /// Indicates a process has too many threads to perform the requested action.
+    /// For example, assignment of a primary token can be performed only when a process has zero or one threads.
+    TOO_MANY_THREADS = 0xC0000129,
+
+    /// An attempt was made to operate on a thread within a specific process, but the specified thread is not in the specified process.
+    THREAD_NOT_IN_PROCESS = 0xC000012A,
+
+    /// An attempt was made to establish a token for use as a primary token but the token is already in use.
+    /// A token can only be the primary token of one process at a time.
+    TOKEN_ALREADY_IN_USE = 0xC000012B,
+
+    /// The page file quota was exceeded.
+    PAGEFILE_QUOTA_EXCEEDED = 0xC000012C,
+
+    /// {Out of Virtual Memory} Your system is low on virtual memory.
+    /// To ensure that Windows runs correctly, increase the size of your virtual memory paging file. For more information, see Help.
+    COMMITMENT_LIMIT = 0xC000012D,
+
+    /// The specified image file did not have the correct format: it appears to be LE format.
+    INVALID_IMAGE_LE_FORMAT = 0xC000012E,
+
+    /// The specified image file did not have the correct format: it did not have an initial MZ.
+    INVALID_IMAGE_NOT_MZ = 0xC000012F,
+
+    /// The specified image file did not have the correct format: it did not have a proper e_lfarlc in the MZ header.
+    INVALID_IMAGE_PROTECT = 0xC0000130,
+
+    /// The specified image file did not have the correct format: it appears to be a 16-bit Windows image.
+    INVALID_IMAGE_WIN_16 = 0xC0000131,
+
+    /// The Netlogon service cannot start because another Netlogon service running in the domain conflicts with the specified role.
+    LOGON_SERVER_CONFLICT = 0xC0000132,
+
+    /// The time at the primary domain controller is different from the time at the backup domain controller or member server by too large an amount.
+    TIME_DIFFERENCE_AT_DC = 0xC0000133,
+
+    /// On applicable Windows Server releases, the SAM database is significantly out of synchronization with the copy on the domain controller. A complete synchronization is required.
+    SYNCHRONIZATION_REQUIRED = 0xC0000134,
+
+    /// {Unable To Locate Component} This application has failed to start because %hs was not found.
+    /// Reinstalling the application might fix this problem.
+    DLL_NOT_FOUND = 0xC0000135,
+
+    /// 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.
+    OPEN_FAILED = 0xC0000136,
+
+    /// {Privilege Failed} The I/O permissions for the process could not be changed.
+    IO_PRIVILEGE_FAILED = 0xC0000137,
+
+    /// {Ordinal Not Found} The ordinal %ld could not be located in the dynamic link library %hs.
+    ORDINAL_NOT_FOUND = 0xC0000138,
+
+    /// {Entry Point Not Found} The procedure entry point %hs could not be located in the dynamic link library %hs.
+    ENTRYPOINT_NOT_FOUND = 0xC0000139,
+
+    /// {Application Exit by CTRL+C} The application terminated as a result of a CTRL+C.
+    CONTROL_C_EXIT = 0xC000013A,
+
+    /// {Virtual Circuit Closed} The network transport on your computer has closed a network connection.
+    /// There might or might not be I/O requests outstanding.
+    LOCAL_DISCONNECT = 0xC000013B,
+
+    /// {Virtual Circuit Closed} The network transport on a remote computer has closed a network connection.
+    /// There might or might not be I/O requests outstanding.
+    REMOTE_DISCONNECT = 0xC000013C,
+
+    /// {Insufficient Resources on Remote Computer} The remote computer has insufficient resources to complete the network request.
+    /// For example, the remote computer might not have enough available memory to carry out the request at this time.
+    REMOTE_RESOURCES = 0xC000013D,
+
+    /// {Virtual Circuit Closed} An existing connection (virtual circuit) has been broken at the remote computer.
+    /// There is probably something wrong with the network software protocol or the network hardware on the remote computer.
+    LINK_FAILED = 0xC000013E,
+
+    /// {Virtual Circuit Closed} The network transport on your computer has closed a network connection because it had to wait too long for a response from the remote computer.
+    LINK_TIMEOUT = 0xC000013F,
+
+    /// The connection handle that was given to the transport was invalid.
+    INVALID_CONNECTION = 0xC0000140,
+
+    /// The address handle that was given to the transport was invalid.
+    INVALID_ADDRESS = 0xC0000141,
+
+    /// {DLL Initialization Failed} Initialization of the dynamic link library %hs failed. The process is terminating abnormally.
+    DLL_INIT_FAILED = 0xC0000142,
+
+    /// {Missing System File} The required system file %hs is bad or missing.
+    MISSING_SYSTEMFILE = 0xC0000143,
+
+    /// {Application Error} The exception %s (0x%08lx) occurred in the application at location 0x%08lx.
+    UNHANDLED_EXCEPTION = 0xC0000144,
+
+    /// {Application Error} The application failed to initialize properly (0x%lx). Click OK to terminate the application.
+    APP_INIT_FAILURE = 0xC0000145,
+
+    /// {Unable to Create Paging File} The creation of the paging file %hs failed (%lx). The requested size was %ld.
+    PAGEFILE_CREATE_FAILED = 0xC0000146,
+
+    /// {No Paging File Specified} No paging file was specified in the system configuration.
+    NO_PAGEFILE = 0xC0000147,
+
+    /// {Incorrect System Call Level} An invalid level was passed into the specified system call.
+    INVALID_LEVEL = 0xC0000148,
+
+    /// {Incorrect Password to LAN Manager Server} You specified an incorrect password to a LAN Manager 2.x or MS-NET server.
+    WRONG_PASSWORD_CORE = 0xC0000149,
+
+    /// {EXCEPTION} A real-mode application issued a floating-point instruction and floating-point hardware is not present.
+    ILLEGAL_FLOAT_CONTEXT = 0xC000014A,
+
+    /// The pipe operation has failed because the other end of the pipe has been closed.
+    PIPE_BROKEN = 0xC000014B,
+
+    /// {The Registry Is Corrupt} The structure of one of the files that contains registry data is corrupt; the image of the file in memory is corrupt; or the file could not be recovered because the alternate copy or log was absent or corrupt.
+    REGISTRY_CORRUPT = 0xC000014C,
+
+    /// An I/O operation initiated by the Registry failed and cannot be recovered.
+    /// The registry could not read in, write out, or flush one of the files that contain the system's image of the registry.
+    REGISTRY_IO_FAILED = 0xC000014D,
+
+    /// 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.
+    NO_EVENT_PAIR = 0xC000014E,
+
+    /// The volume does not contain a recognized file system.
+    /// Be sure that all required file system drivers are loaded and that the volume is not corrupt.
+    UNRECOGNIZED_VOLUME = 0xC000014F,
+
+    /// No serial device was successfully initialized. The serial driver will unload.
+    SERIAL_NO_DEVICE_INITED = 0xC0000150,
+
+    /// The specified local group does not exist.
+    NO_SUCH_ALIAS = 0xC0000151,
+
+    /// The specified account name is not a member of the group.
+    MEMBER_NOT_IN_ALIAS = 0xC0000152,
+
+    /// The specified account name is already a member of the group.
+    MEMBER_IN_ALIAS = 0xC0000153,
+
+    /// The specified local group already exists.
+    ALIAS_EXISTS = 0xC0000154,
+
+    /// A requested type of logon (for example, interactive, network, and service) is not granted by the local security policy of the target system.
+    /// Ask the system administrator to grant the necessary form of logon.
+    LOGON_NOT_GRANTED = 0xC0000155,
+
+    /// The maximum number of secrets that can be stored in a single system was exceeded.
+    /// The length and number of secrets is limited to satisfy U.S. State Department export restrictions.
+    TOO_MANY_SECRETS = 0xC0000156,
+
+    /// The length of a secret exceeds the maximum allowable length.
+    /// The length and number of secrets is limited to satisfy U.S. State Department export restrictions.
+    SECRET_TOO_LONG = 0xC0000157,
+
+    /// The local security authority (LSA) database contains an internal inconsistency.
+    INTERNAL_DB_ERROR = 0xC0000158,
+
+    /// The requested operation cannot be performed in full-screen mode.
+    FULLSCREEN_MODE = 0xC0000159,
+
+    /// During a logon attempt, the user's security context accumulated too many security IDs. This is a very unusual situation.
+    /// Remove the user from some global or local groups to reduce the number of security IDs to incorporate into the security context.
+    TOO_MANY_CONTEXT_IDS = 0xC000015A,
+
+    /// A user has requested a type of logon (for example, interactive or network) that has not been granted.
+    /// An administrator has control over who can logon interactively and through the network.
+    LOGON_TYPE_NOT_GRANTED = 0xC000015B,
+
+    /// The system has attempted to load or restore a file into the registry, and the specified file is not in the format of a registry file.
+    NOT_REGISTRY_FILE = 0xC000015C,
+
+    /// An attempt was made to change a user password in the security account manager without providing the necessary Windows cross-encrypted password.
+    NT_CROSS_ENCRYPTION_REQUIRED = 0xC000015D,
+
+    /// A domain server has an incorrect configuration.
+    DOMAIN_CTRLR_CONFIG_ERROR = 0xC000015E,
+
+    /// An attempt was made to explicitly access the secondary copy of information via a device control to the fault tolerance driver and the secondary copy is not present in the system.
+    FT_MISSING_MEMBER = 0xC000015F,
+
+    /// A configuration registry node that represents a driver service entry was ill-formed and did not contain the required value entries.
+    ILL_FORMED_SERVICE_ENTRY = 0xC0000160,
+
+    /// An illegal character was encountered.
+    /// For a multibyte character set, this includes a lead byte without a succeeding trail byte.
+    /// For the Unicode character set this includes the characters 0xFFFF and 0xFFFE.
+    ILLEGAL_CHARACTER = 0xC0000161,
+
+    /// No mapping for the Unicode character exists in the target multibyte code page.
+    UNMAPPABLE_CHARACTER = 0xC0000162,
+
+    /// The Unicode character is not defined in the Unicode character set that is installed on the system.
+    UNDEFINED_CHARACTER = 0xC0000163,
+
+    /// The paging file cannot be created on a floppy disk.
+    FLOPPY_VOLUME = 0xC0000164,
+
+    /// {Floppy Disk Error} While accessing a floppy disk, an ID address mark was not found.
+    FLOPPY_ID_MARK_NOT_FOUND = 0xC0000165,
+
+    /// {Floppy Disk Error} While accessing a floppy disk, the track address from the sector ID field was found to be different from the track address that is maintained by the controller.
+    FLOPPY_WRONG_CYLINDER = 0xC0000166,
+
+    /// {Floppy Disk Error} The floppy disk controller reported an error that is not recognized by the floppy disk driver.
+    FLOPPY_UNKNOWN_ERROR = 0xC0000167,
+
+    /// {Floppy Disk Error} While accessing a floppy-disk, the controller returned inconsistent results via its registers.
+    FLOPPY_BAD_REGISTERS = 0xC0000168,
+
+    /// {Hard Disk Error} While accessing the hard disk, a recalibrate operation failed, even after retries.
+    DISK_RECALIBRATE_FAILED = 0xC0000169,
+
+    /// {Hard Disk Error} While accessing the hard disk, a disk operation failed even after retries.
+    DISK_OPERATION_FAILED = 0xC000016A,
+
+    /// {Hard Disk Error} While accessing the hard disk, a disk controller reset was needed, but even that failed.
+    DISK_RESET_FAILED = 0xC000016B,
+
+    /// An attempt was made 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.
+    /// Two concurrent opens of devices that share an IRQ and only work via interrupts is not supported for the particular bus type that the devices use.
+    SHARED_IRQ_BUSY = 0xC000016C,
+
+    /// {FT Orphaning} A disk that is part of a fault-tolerant volume can no longer be accessed.
+    FT_ORPHANING = 0xC000016D,
+
+    /// The basic input/output system (BIOS) failed to connect a system interrupt to the device or bus for which the device is connected.
+    BIOS_FAILED_TO_CONNECT_INTERRUPT = 0xC000016E,
+
+    /// The tape could not be partitioned.
+    PARTITION_FAILURE = 0xC0000172,
+
+    /// When accessing a new tape of a multi-volume partition, the current blocksize is incorrect.
+    INVALID_BLOCK_LENGTH = 0xC0000173,
+
+    /// The tape partition information could not be found when loading a tape.
+    DEVICE_NOT_PARTITIONED = 0xC0000174,
+
+    /// An attempt to lock the eject media mechanism failed.
+    UNABLE_TO_LOCK_MEDIA = 0xC0000175,
+
+    /// An attempt to unload media failed.
+    UNABLE_TO_UNLOAD_MEDIA = 0xC0000176,
+
+    /// The physical end of tape was detected.
+    EOM_OVERFLOW = 0xC0000177,
+
+    /// {No Media} There is no media in the drive. Insert media into drive %hs.
+    NO_MEDIA = 0xC0000178,
+
+    /// A member could not be added to or removed from the local group because the member does not exist.
+    NO_SUCH_MEMBER = 0xC000017A,
+
+    /// A new member could not be added to a local group because the member has the wrong account type.
+    INVALID_MEMBER = 0xC000017B,
+
+    /// An illegal operation was attempted on a registry key that has been marked for deletion.
+    KEY_DELETED = 0xC000017C,
+
+    /// The system could not allocate the required space in a registry log.
+    NO_LOG_SPACE = 0xC000017D,
+
+    /// Too many SIDs have been specified.
+    TOO_MANY_SIDS = 0xC000017E,
+
+    /// An attempt was made to change a user password in the security account manager without providing the necessary LM cross-encrypted password.
+    LM_CROSS_ENCRYPTION_REQUIRED = 0xC000017F,
+
+    /// An attempt was made to create a symbolic link in a registry key that already has subkeys or values.
+    KEY_HAS_CHILDREN = 0xC0000180,
+
+    /// An attempt was made to create a stable subkey under a volatile parent key.
+    CHILD_MUST_BE_VOLATILE = 0xC0000181,
+
+    /// The I/O device is configured incorrectly or the configuration parameters to the driver are incorrect.
+    DEVICE_CONFIGURATION_ERROR = 0xC0000182,
+
+    /// An error was detected between two drivers or within an I/O driver.
+    DRIVER_INTERNAL_ERROR = 0xC0000183,
+
+    /// The device is not in a valid state to perform this request.
+    INVALID_DEVICE_STATE = 0xC0000184,
+
+    /// The I/O device reported an I/O error.
+    IO_DEVICE_ERROR = 0xC0000185,
+
+    /// A protocol error was detected between the driver and the device.
+    DEVICE_PROTOCOL_ERROR = 0xC0000186,
+
+    /// This operation is only allowed for the primary domain controller of the domain.
+    BACKUP_CONTROLLER = 0xC0000187,
+
+    /// The log file space is insufficient to support this operation.
+    LOG_FILE_FULL = 0xC0000188,
+
+    /// A write operation was attempted to a volume after it was dismounted.
+    TOO_LATE = 0xC0000189,
+
+    /// The workstation does not have a trust secret for the primary domain in the local LSA database.
+    NO_TRUST_LSA_SECRET = 0xC000018A,
+
+    /// On applicable Windows Server releases, the SAM database does not have a computer account for this workstation trust relationship.
+    NO_TRUST_SAM_ACCOUNT = 0xC000018B,
+
+    /// The logon request failed because the trust relationship between the primary domain and the trusted domain failed.
+    TRUSTED_DOMAIN_FAILURE = 0xC000018C,
+
+    /// The logon request failed because the trust relationship between this workstation and the primary domain failed.
+    TRUSTED_RELATIONSHIP_FAILURE = 0xC000018D,
+
+    /// The Eventlog log file is corrupt.
+    EVENTLOG_FILE_CORRUPT = 0xC000018E,
+
+    /// No Eventlog log file could be opened. The Eventlog service did not start.
+    EVENTLOG_CANT_START = 0xC000018F,
+
+    /// The network logon failed. This might be because the validation authority cannot be reached.
+    TRUST_FAILURE = 0xC0000190,
+
+    /// An attempt was made to acquire a mutant such that its maximum count would have been exceeded.
+    MUTANT_LIMIT_EXCEEDED = 0xC0000191,
+
+    /// An attempt was made to logon, but the NetLogon service was not started.
+    NETLOGON_NOT_STARTED = 0xC0000192,
+
+    /// The user account has expired.
+    ACCOUNT_EXPIRED = 0xC0000193,
+
+    /// {EXCEPTION} Possible deadlock condition.
+    POSSIBLE_DEADLOCK = 0xC0000194,
+
+    /// 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.
+    NETWORK_CREDENTIAL_CONFLICT = 0xC0000195,
+
+    /// An attempt was made to establish a session to a network server, but there are already too many sessions established to that server.
+    REMOTE_SESSION_LIMIT = 0xC0000196,
+
+    /// The log file has changed between reads.
+    EVENTLOG_FILE_CHANGED = 0xC0000197,
+
+    /// The account used is an interdomain trust account.
+    /// Use your global user account or local user account to access this server.
+    NOLOGON_INTERDOMAIN_TRUST_ACCOUNT = 0xC0000198,
+
+    /// The account used is a computer account.
+    /// Use your global user account or local user account to access this server.
+    NOLOGON_WORKSTATION_TRUST_ACCOUNT = 0xC0000199,
+
+    /// The account used is a server trust account.
+    /// Use your global user account or local user account to access this server.
+    NOLOGON_SERVER_TRUST_ACCOUNT = 0xC000019A,
+
+    /// The name or SID of the specified domain is inconsistent with the trust information for that domain.
+    DOMAIN_TRUST_INCONSISTENT = 0xC000019B,
+
+    /// A volume has been accessed for which a file system driver is required that has not yet been loaded.
+    FS_DRIVER_REQUIRED = 0xC000019C,
+
+    /// Indicates that the specified image is already loaded as a DLL.
+    IMAGE_ALREADY_LOADED_AS_DLL = 0xC000019D,
+
+    /// Short name settings cannot be changed on this volume due to the global registry setting.
+    INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING = 0xC000019E,
+
+    /// Short names are not enabled on this volume.
+    SHORT_NAMES_NOT_ENABLED_ON_VOLUME = 0xC000019F,
+
+    /// The security stream for the given volume is in an inconsistent state. Please run CHKDSK on the volume.
+    SECURITY_STREAM_IS_INCONSISTENT = 0xC00001A0,
+
+    /// A requested file lock operation cannot be processed due to an invalid byte range.
+    INVALID_LOCK_RANGE = 0xC00001A1,
+
+    /// The specified access control entry (ACE) contains an invalid condition.
+    INVALID_ACE_CONDITION = 0xC00001A2,
+
+    /// The subsystem needed to support the image type is not present.
+    IMAGE_SUBSYSTEM_NOT_PRESENT = 0xC00001A3,
+
+    /// The specified file already has a notification GUID associated with it.
+    NOTIFICATION_GUID_ALREADY_DEFINED = 0xC00001A4,
+
+    /// A remote open failed because the network open restrictions were not satisfied.
+    NETWORK_OPEN_RESTRICTION = 0xC0000201,
+
+    /// There is no user session key for the specified logon session.
+    NO_USER_SESSION_KEY = 0xC0000202,
+
+    /// The remote user session has been deleted.
+    USER_SESSION_DELETED = 0xC0000203,
+
+    /// Indicates the specified resource language ID cannot be found in the image file.
+    RESOURCE_LANG_NOT_FOUND = 0xC0000204,
+
+    /// Insufficient server resources exist to complete the request.
+    INSUFF_SERVER_RESOURCES = 0xC0000205,
+
+    /// The size of the buffer is invalid for the specified operation.
+    INVALID_BUFFER_SIZE = 0xC0000206,
+
+    /// The transport rejected the specified network address as invalid.
+    INVALID_ADDRESS_COMPONENT = 0xC0000207,
+
+    /// The transport rejected the specified network address due to invalid use of a wildcard.
+    INVALID_ADDRESS_WILDCARD = 0xC0000208,
+
+    /// The transport address could not be opened because all the available addresses are in use.
+    TOO_MANY_ADDRESSES = 0xC0000209,
+
+    /// The transport address could not be opened because it already exists.
+    ADDRESS_ALREADY_EXISTS = 0xC000020A,
+
+    /// The transport address is now closed.
+    ADDRESS_CLOSED = 0xC000020B,
+
+    /// The transport connection is now disconnected.
+    CONNECTION_DISCONNECTED = 0xC000020C,
+
+    /// The transport connection has been reset.
+    CONNECTION_RESET = 0xC000020D,
+
+    /// The transport cannot dynamically acquire any more nodes.
+    TOO_MANY_NODES = 0xC000020E,
+
+    /// The transport aborted a pending transaction.
+    TRANSACTION_ABORTED = 0xC000020F,
+
+    /// The transport timed out a request that is waiting for a response.
+    TRANSACTION_TIMED_OUT = 0xC0000210,
+
+    /// The transport did not receive a release for a pending response.
+    TRANSACTION_NO_RELEASE = 0xC0000211,
+
+    /// The transport did not find a transaction that matches the specific token.
+    TRANSACTION_NO_MATCH = 0xC0000212,
+
+    /// The transport had previously responded to a transaction request.
+    TRANSACTION_RESPONDED = 0xC0000213,
+
+    /// The transport does not recognize the specified transaction request ID.
+    TRANSACTION_INVALID_ID = 0xC0000214,
+
+    /// The transport does not recognize the specified transaction request type.
+    TRANSACTION_INVALID_TYPE = 0xC0000215,
+
+    /// The transport can only process the specified request on the server side of a session.
+    NOT_SERVER_SESSION = 0xC0000216,
+
+    /// The transport can only process the specified request on the client side of a session.
+    NOT_CLIENT_SESSION = 0xC0000217,
+
+    /// {Registry File Failure} The registry cannot load the hive (file): %hs or its log or alternate. It is corrupt, absent, or not writable.
+    CANNOT_LOAD_REGISTRY_FILE = 0xC0000218,
+
+    /// {Unexpected Failure in DebugActiveProcess} An unexpected failure occurred while processing a DebugActiveProcess API request.
+    /// Choosing OK will terminate the process, and choosing Cancel will ignore the error.
+    DEBUG_ATTACH_FAILED = 0xC0000219,
+
+    /// {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.
+    SYSTEM_PROCESS_TERMINATED = 0xC000021A,
+
+    /// {Data Not Accepted} The TDI client could not handle the data received during an indication.
+    DATA_NOT_ACCEPTED = 0xC000021B,
+
+    /// {Unable to Retrieve Browser Server List} The list of servers for this workgroup is not currently available.
+    NO_BROWSER_SERVERS_FOUND = 0xC000021C,
+
+    /// NTVDM encountered a hard error.
+    VDM_HARD_ERROR = 0xC000021D,
+
+    /// {Cancel Timeout} The driver %hs failed to complete a canceled I/O request in the allotted time.
+    DRIVER_CANCEL_TIMEOUT = 0xC000021E,
+
+    /// {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.
+    REPLY_MESSAGE_MISMATCH = 0xC000021F,
+
+    /// {Mapped View Alignment Incorrect} An attempt was made to map a view of a file, but either the specified base address or the offset into the file were not aligned on the proper allocation granularity.
+    MAPPED_ALIGNMENT = 0xC0000220,
+
+    /// {Bad Image Checksum} The image %hs is possibly corrupt.
+    /// The header checksum does not match the computed checksum.
+    IMAGE_CHECKSUM_MISMATCH = 0xC0000221,
+
+    /// {Delayed Write Failed} Windows was unable to save all the data for the file %hs. The data has been lost.
+    /// This error might be caused by a failure of your computer hardware or network connection. Try to save this file elsewhere.
+    LOST_WRITEBEHIND_DATA = 0xC0000222,
+
+    /// The parameters passed to the server in the client/server shared memory window were invalid.
+    /// Too much data might have been put in the shared memory window.
+    CLIENT_SERVER_PARAMETERS_INVALID = 0xC0000223,
+
+    /// The user password must be changed before logging on the first time.
+    PASSWORD_MUST_CHANGE = 0xC0000224,
+
+    /// The object was not found.
+    NOT_FOUND = 0xC0000225,
+
+    /// The stream is not a tiny stream.
+    NOT_TINY_STREAM = 0xC0000226,
+
+    /// A transaction recovery failed.
+    RECOVERY_FAILURE = 0xC0000227,
+
+    /// The request must be handled by the stack overflow code.
+    STACK_OVERFLOW_READ = 0xC0000228,
+
+    /// A consistency check failed.
+    FAIL_CHECK = 0xC0000229,
+
+    /// The attempt to insert the ID in the index failed because the ID is already in the index.
+    DUPLICATE_OBJECTID = 0xC000022A,
+
+    /// The attempt to set the object ID failed because the object already has an ID.
+    OBJECTID_EXISTS = 0xC000022B,
+
+    /// Internal OFS status codes indicating how an allocation operation is handled.
+    /// Either it is retried after the containing oNode is moved or the extent stream is converted to a large stream.
+    CONVERT_TO_LARGE = 0xC000022C,
+
+    /// The request needs to be retried.
+    RETRY = 0xC000022D,
+
+    /// The attempt to find the object found an object on the volume that matches by ID; however, it is out of the scope of the handle that is used for the operation.
+    FOUND_OUT_OF_SCOPE = 0xC000022E,
+
+    /// The bucket array must be grown. Retry the transaction after doing so.
+    ALLOCATE_BUCKET = 0xC000022F,
+
+    /// The specified property set does not exist on the object.
+    PROPSET_NOT_FOUND = 0xC0000230,
+
+    /// The user/kernel marshaling buffer has overflowed.
+    MARSHALL_OVERFLOW = 0xC0000231,
+
+    /// The supplied variant structure contains invalid data.
+    INVALID_VARIANT = 0xC0000232,
+
+    /// A domain controller for this domain was not found.
+    DOMAIN_CONTROLLER_NOT_FOUND = 0xC0000233,
+
+    /// The user account has been automatically locked because too many invalid logon attempts or password change attempts have been requested.
+    ACCOUNT_LOCKED_OUT = 0xC0000234,
+
+    /// NtClose was called on a handle that was protected from close via NtSetInformationObject.
+    HANDLE_NOT_CLOSABLE = 0xC0000235,
+
+    /// The transport-connection attempt was refused by the remote system.
+    CONNECTION_REFUSED = 0xC0000236,
+
+    /// The transport connection was gracefully closed.
+    GRACEFUL_DISCONNECT = 0xC0000237,
+
+    /// The transport endpoint already has an address associated with it.
+    ADDRESS_ALREADY_ASSOCIATED = 0xC0000238,
+
+    /// An address has not yet been associated with the transport endpoint.
+    ADDRESS_NOT_ASSOCIATED = 0xC0000239,
+
+    /// An operation was attempted on a nonexistent transport connection.
+    CONNECTION_INVALID = 0xC000023A,
+
+    /// An invalid operation was attempted on an active transport connection.
+    CONNECTION_ACTIVE = 0xC000023B,
+
+    /// The remote network is not reachable by the transport.
+    NETWORK_UNREACHABLE = 0xC000023C,
+
+    /// The remote system is not reachable by the transport.
+    HOST_UNREACHABLE = 0xC000023D,
+
+    /// The remote system does not support the transport protocol.
+    PROTOCOL_UNREACHABLE = 0xC000023E,
+
+    /// No service is operating at the destination port of the transport on the remote system.
+    PORT_UNREACHABLE = 0xC000023F,
+
+    /// The request was aborted.
+    REQUEST_ABORTED = 0xC0000240,
+
+    /// The transport connection was aborted by the local system.
+    CONNECTION_ABORTED = 0xC0000241,
+
+    /// The specified buffer contains ill-formed data.
+    BAD_COMPRESSION_BUFFER = 0xC0000242,
+
+    /// The requested operation cannot be performed on a file with a user mapped section open.
+    USER_MAPPED_FILE = 0xC0000243,
+
+    /// {Audit Failed} An attempt to generate a security audit failed.
+    AUDIT_FAILED = 0xC0000244,
+
+    /// The timer resolution was not previously set by the current process.
+    TIMER_RESOLUTION_NOT_SET = 0xC0000245,
+
+    /// A connection to the server could not be made because the limit on the number of concurrent connections for this account has been reached.
+    CONNECTION_COUNT_LIMIT = 0xC0000246,
+
+    /// Attempting to log on during an unauthorized time of day for this account.
+    LOGIN_TIME_RESTRICTION = 0xC0000247,
+
+    /// The account is not authorized to log on from this station.
+    LOGIN_WKSTA_RESTRICTION = 0xC0000248,
+
+    /// {UP/MP Image Mismatch} The image %hs has been modified for use on a uniprocessor system, but you are running it on a multiprocessor machine. Reinstall the image file.
+    IMAGE_MP_UP_MISMATCH = 0xC0000249,
+
+    /// There is insufficient account information to log you on.
+    INSUFFICIENT_LOGON_INFO = 0xC0000250,
+
+    /// {Invalid DLL Entrypoint} 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 might cause the application to operate incorrectly.
+    BAD_DLL_ENTRYPOINT = 0xC0000251,
+
+    /// {Invalid Service Callback Entrypoint} 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 might operate incorrectly.
+    BAD_SERVICE_ENTRYPOINT = 0xC0000252,
+
+    /// The server received the messages but did not send a reply.
+    LPC_REPLY_LOST = 0xC0000253,
+
+    /// There is an IP address conflict with another system on the network.
+    IP_ADDRESS_CONFLICT1 = 0xC0000254,
+
+    /// There is an IP address conflict with another system on the network.
+    IP_ADDRESS_CONFLICT2 = 0xC0000255,
+
+    /// {Low On Registry Space} The system has reached the maximum size that is allowed for the system part of the registry. Additional storage requests will be ignored.
+    REGISTRY_QUOTA_LIMIT = 0xC0000256,
+
+    /// The contacted server does not support the indicated part of the DFS namespace.
+    PATH_NOT_COVERED = 0xC0000257,
+
+    /// A callback return system service cannot be executed when no callback is active.
+    NO_CALLBACK_ACTIVE = 0xC0000258,
+
+    /// 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 the service has already accepted the maximum number of connections.
+    LICENSE_QUOTA_EXCEEDED = 0xC0000259,
+
+    /// The password provided is too short to meet the policy of your user account. Choose a longer password.
+    PWD_TOO_SHORT = 0xC000025A,
+
+    /// 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, contact your administrator immediately to have a new one assigned.
+    PWD_TOO_RECENT = 0xC000025B,
+
+    /// 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.
+    /// Select a password that you have not previously used.
+    PWD_HISTORY_CONFLICT = 0xC000025C,
+
+    /// You have attempted to load a legacy device driver while its device instance had been disabled.
+    PLUGPLAY_NO_DEVICE = 0xC000025E,
+
+    /// The specified compression format is unsupported.
+    UNSUPPORTED_COMPRESSION = 0xC000025F,
+
+    /// The specified hardware profile configuration is invalid.
+    INVALID_HW_PROFILE = 0xC0000260,
+
+    /// The specified Plug and Play registry device path is invalid.
+    INVALID_PLUGPLAY_DEVICE_PATH = 0xC0000261,
+
+    /// {Driver Entry Point Not Found} The %hs device driver could not locate the ordinal %ld in driver %hs.
+    DRIVER_ORDINAL_NOT_FOUND = 0xC0000262,
+
+    /// {Driver Entry Point Not Found} The %hs device driver could not locate the entry point %hs in driver %hs.
+    DRIVER_ENTRYPOINT_NOT_FOUND = 0xC0000263,
+
+    /// {Application Error} The application attempted to release a resource it did not own. Click OK to terminate the application.
+    RESOURCE_NOT_OWNED = 0xC0000264,
+
+    /// An attempt was made to create more links on a file than the file system supports.
+    TOO_MANY_LINKS = 0xC0000265,
+
+    /// The specified quota list is internally inconsistent with its descriptor.
+    QUOTA_LIST_INCONSISTENT = 0xC0000266,
+
+    /// The specified file has been relocated to offline storage.
+    FILE_IS_OFFLINE = 0xC0000267,
+
+    /// {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, upgrade this installation by using a licensed distribution of this product.
+    EVALUATION_EXPIRATION = 0xC0000268,
+
+    /// {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 that is reserved for Windows system DLLs.
+    /// The vendor supplying the DLL should be contacted for a new DLL.
+    ILLEGAL_DLL_RELOCATION = 0xC0000269,
+
+    /// {License Violation} The system has detected tampering with your registered product type.
+    /// This is a violation of your software license. Tampering with the product type is not permitted.
+    LICENSE_VIOLATION = 0xC000026A,
+
+    /// {DLL Initialization Failed} The application failed to initialize because the window station is shutting down.
+    DLL_INIT_FAILED_LOGOFF = 0xC000026B,
+
+    /// {Unable to Load Device Driver} %hs device driver could not be loaded. Error Status was 0x%x.
+    DRIVER_UNABLE_TO_LOAD = 0xC000026C,
+
+    /// DFS is unavailable on the contacted server.
+    DFS_UNAVAILABLE = 0xC000026D,
+
+    /// An operation was attempted to a volume after it was dismounted.
+    VOLUME_DISMOUNTED = 0xC000026E,
+
+    /// An internal error occurred in the Win32 x86 emulation subsystem.
+    WX86_INTERNAL_ERROR = 0xC000026F,
+
+    /// Win32 x86 emulation subsystem floating-point stack check.
+    WX86_FLOAT_STACK_CHECK = 0xC0000270,
+
+    /// The validation process needs to continue on to the next step.
+    VALIDATE_CONTINUE = 0xC0000271,
+
+    /// There was no match for the specified key in the index.
+    NO_MATCH = 0xC0000272,
+
+    /// There are no more matches for the current index enumeration.
+    NO_MORE_MATCHES = 0xC0000273,
+
+    /// The NTFS file or directory is not a reparse point.
+    NOT_A_REPARSE_POINT = 0xC0000275,
+
+    /// The Windows I/O reparse tag passed for the NTFS reparse point is invalid.
+    IO_REPARSE_TAG_INVALID = 0xC0000276,
+
+    /// The Windows I/O reparse tag does not match the one that is in the NTFS reparse point.
+    IO_REPARSE_TAG_MISMATCH = 0xC0000277,
+
+    /// The user data passed for the NTFS reparse point is invalid.
+    IO_REPARSE_DATA_INVALID = 0xC0000278,
+
+    /// The layered file system driver for this I/O tag did not handle it when needed.
+    IO_REPARSE_TAG_NOT_HANDLED = 0xC0000279,
+
+    /// The NTFS symbolic link could not be resolved even though the initial file name is valid.
+    REPARSE_POINT_NOT_RESOLVED = 0xC0000280,
+
+    /// The NTFS directory is a reparse point.
+    DIRECTORY_IS_A_REPARSE_POINT = 0xC0000281,
+
+    /// The range could not be added to the range list because of a conflict.
+    RANGE_LIST_CONFLICT = 0xC0000282,
+
+    /// The specified medium changer source element contains no media.
+    SOURCE_ELEMENT_EMPTY = 0xC0000283,
+
+    /// The specified medium changer destination element already contains media.
+    DESTINATION_ELEMENT_FULL = 0xC0000284,
+
+    /// The specified medium changer element does not exist.
+    ILLEGAL_ELEMENT_ADDRESS = 0xC0000285,
+
+    /// The specified element is contained in a magazine that is no longer present.
+    MAGAZINE_NOT_PRESENT = 0xC0000286,
+
+    /// The device requires re-initialization due to hardware errors.
+    REINITIALIZATION_NEEDED = 0xC0000287,
+
+    /// The file encryption attempt failed.
+    ENCRYPTION_FAILED = 0xC000028A,
+
+    /// The file decryption attempt failed.
+    DECRYPTION_FAILED = 0xC000028B,
+
+    /// The specified range could not be found in the range list.
+    RANGE_NOT_FOUND = 0xC000028C,
+
+    /// There is no encryption recovery policy configured for this system.
+    NO_RECOVERY_POLICY = 0xC000028D,
+
+    /// The required encryption driver is not loaded for this system.
+    NO_EFS = 0xC000028E,
+
+    /// The file was encrypted with a different encryption driver than is currently loaded.
+    WRONG_EFS = 0xC000028F,
+
+    /// There are no EFS keys defined for the user.
+    NO_USER_KEYS = 0xC0000290,
+
+    /// The specified file is not encrypted.
+    FILE_NOT_ENCRYPTED = 0xC0000291,
+
+    /// The specified file is not in the defined EFS export format.
+    NOT_EXPORT_FORMAT = 0xC0000292,
+
+    /// The specified file is encrypted and the user does not have the ability to decrypt it.
+    FILE_ENCRYPTED = 0xC0000293,
+
+    /// The GUID passed was not recognized as valid by a WMI data provider.
+    WMI_GUID_NOT_FOUND = 0xC0000295,
+
+    /// The instance name passed was not recognized as valid by a WMI data provider.
+    WMI_INSTANCE_NOT_FOUND = 0xC0000296,
+
+    /// The data item ID passed was not recognized as valid by a WMI data provider.
+    WMI_ITEMID_NOT_FOUND = 0xC0000297,
+
+    /// The WMI request could not be completed and should be retried.
+    WMI_TRY_AGAIN = 0xC0000298,
+
+    /// The policy object is shared and can only be modified at the root.
+    SHARED_POLICY = 0xC0000299,
+
+    /// The policy object does not exist when it should.
+    POLICY_OBJECT_NOT_FOUND = 0xC000029A,
+
+    /// The requested policy information only lives in the Ds.
+    POLICY_ONLY_IN_DS = 0xC000029B,
+
+    /// The volume must be upgraded to enable this feature.
+    VOLUME_NOT_UPGRADED = 0xC000029C,
+
+    /// The remote storage service is not operational at this time.
+    REMOTE_STORAGE_NOT_ACTIVE = 0xC000029D,
+
+    /// The remote storage service encountered a media error.
+    REMOTE_STORAGE_MEDIA_ERROR = 0xC000029E,
+
+    /// The tracking (workstation) service is not running.
+    NO_TRACKING_SERVICE = 0xC000029F,
+
+    /// The server process is running under a SID that is different from the SID that is required by client.
+    SERVER_SID_MISMATCH = 0xC00002A0,
+
+    /// The specified directory service attribute or value does not exist.
+    DS_NO_ATTRIBUTE_OR_VALUE = 0xC00002A1,
+
+    /// The attribute syntax specified to the directory service is invalid.
+    DS_INVALID_ATTRIBUTE_SYNTAX = 0xC00002A2,
+
+    /// The attribute type specified to the directory service is not defined.
+    DS_ATTRIBUTE_TYPE_UNDEFINED = 0xC00002A3,
+
+    /// The specified directory service attribute or value already exists.
+    DS_ATTRIBUTE_OR_VALUE_EXISTS = 0xC00002A4,
+
+    /// The directory service is busy.
+    DS_BUSY = 0xC00002A5,
+
+    /// The directory service is unavailable.
+    DS_UNAVAILABLE = 0xC00002A6,
+
+    /// The directory service was unable to allocate a relative identifier.
+    DS_NO_RIDS_ALLOCATED = 0xC00002A7,
+
+    /// The directory service has exhausted the pool of relative identifiers.
+    DS_NO_MORE_RIDS = 0xC00002A8,
+
+    /// The requested operation could not be performed because the directory service is not the master for that type of operation.
+    DS_INCORRECT_ROLE_OWNER = 0xC00002A9,
+
+    /// The directory service was unable to initialize the subsystem that allocates relative identifiers.
+    DS_RIDMGR_INIT_ERROR = 0xC00002AA,
+
+    /// The requested operation did not satisfy one or more constraints that are associated with the class of the object.
+    DS_OBJ_CLASS_VIOLATION = 0xC00002AB,
+
+    /// The directory service can perform the requested operation only on a leaf object.
+    DS_CANT_ON_NON_LEAF = 0xC00002AC,
+
+    /// The directory service cannot perform the requested operation on the Relatively Defined Name (RDN) attribute of an object.
+    DS_CANT_ON_RDN = 0xC00002AD,
+
+    /// The directory service detected an attempt to modify the object class of an object.
+    DS_CANT_MOD_OBJ_CLASS = 0xC00002AE,
+
+    /// An error occurred while performing a cross domain move operation.
+    DS_CROSS_DOM_MOVE_FAILED = 0xC00002AF,
+
+    /// Unable to contact the global catalog server.
+    DS_GC_NOT_AVAILABLE = 0xC00002B0,
+
+    /// The requested operation requires a directory service, and none was available.
+    DIRECTORY_SERVICE_REQUIRED = 0xC00002B1,
+
+    /// The reparse attribute cannot be set because it is incompatible with an existing attribute.
+    REPARSE_ATTRIBUTE_CONFLICT = 0xC00002B2,
+
+    /// A group marked "use for deny only" cannot be enabled.
+    CANT_ENABLE_DENY_ONLY = 0xC00002B3,
+
+    /// {EXCEPTION} Multiple floating-point faults.
+    FLOAT_MULTIPLE_FAULTS = 0xC00002B4,
+
+    /// {EXCEPTION} Multiple floating-point traps.
+    FLOAT_MULTIPLE_TRAPS = 0xC00002B5,
+
+    /// The device has been removed.
+    DEVICE_REMOVED = 0xC00002B6,
+
+    /// The volume change journal is being deleted.
+    JOURNAL_DELETE_IN_PROGRESS = 0xC00002B7,
+
+    /// The volume change journal is not active.
+    JOURNAL_NOT_ACTIVE = 0xC00002B8,
+
+    /// The requested interface is not supported.
+    NOINTERFACE = 0xC00002B9,
+
+    /// A directory service resource limit has been exceeded.
+    DS_ADMIN_LIMIT_EXCEEDED = 0xC00002C1,
+
+    /// {System Standby Failed} The driver %hs does not support standby mode.
+    /// Updating this driver allows the system to go to standby mode.
+    DRIVER_FAILED_SLEEP = 0xC00002C2,
+
+    /// Mutual Authentication failed. The server password is out of date at the domain controller.
+    MUTUAL_AUTHENTICATION_FAILED = 0xC00002C3,
+
+    /// The system file %1 has become corrupt and has been replaced.
+    CORRUPT_SYSTEM_FILE = 0xC00002C4,
+
+    /// {EXCEPTION} Alignment Error A data type misalignment error was detected in a load or store instruction.
+    DATATYPE_MISALIGNMENT_ERROR = 0xC00002C5,
+
+    /// The WMI data item or data block is read-only.
+    WMI_READ_ONLY = 0xC00002C6,
+
+    /// The WMI data item or data block could not be changed.
+    WMI_SET_FAILURE = 0xC00002C7,
+
+    /// {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 might be denied. For more information, see Help.
+    COMMITMENT_MINIMUM = 0xC00002C8,
+
+    /// {EXCEPTION} Register NaT consumption faults.
+    /// A NaT value is consumed on a non-speculative instruction.
+    REG_NAT_CONSUMPTION = 0xC00002C9,
+
+    /// The transport element of the medium changer contains media, which is causing the operation to fail.
+    TRANSPORT_FULL = 0xC00002CA,
+
+    /// Security Accounts Manager initialization failed because of the following error: %hs Error Status: 0x%x.
+    /// Click OK to shut down this system and restart in Directory Services Restore Mode.
+    /// Check the event log for more detailed information.
+    DS_SAM_INIT_FAILURE = 0xC00002CB,
+
+    /// This operation is supported only when you are connected to the server.
+    ONLY_IF_CONNECTED = 0xC00002CC,
+
+    /// Only an administrator can modify the membership list of an administrative group.
+    DS_SENSITIVE_GROUP_VIOLATION = 0xC00002CD,
+
+    /// A device was removed so enumeration must be restarted.
+    PNP_RESTART_ENUMERATION = 0xC00002CE,
+
+    /// The journal entry has been deleted from the journal.
+    JOURNAL_ENTRY_DELETED = 0xC00002CF,
+
+    /// Cannot change the primary group ID of a domain controller account.
+    DS_CANT_MOD_PRIMARYGROUPID = 0xC00002D0,
+
+    /// {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.
+    SYSTEM_IMAGE_BAD_SIGNATURE = 0xC00002D1,
+
+    /// The device will not start without a reboot.
+    PNP_REBOOT_REQUIRED = 0xC00002D2,
+
+    /// The power state of the current device cannot support this request.
+    POWER_STATE_INVALID = 0xC00002D3,
+
+    /// The specified group type is invalid.
+    DS_INVALID_GROUP_TYPE = 0xC00002D4,
+
+    /// In a mixed domain, no nesting of a global group if the group is security enabled.
+    DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN = 0xC00002D5,
+
+    /// In a mixed domain, cannot nest local groups with other local groups, if the group is security enabled.
+    DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN = 0xC00002D6,
+
+    /// A global group cannot have a local group as a member.
+    DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER = 0xC00002D7,
+
+    /// A global group cannot have a universal group as a member.
+    DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER = 0xC00002D8,
+
+    /// A universal group cannot have a local group as a member.
+    DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER = 0xC00002D9,
+
+    /// A global group cannot have a cross-domain member.
+    DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER = 0xC00002DA,
+
+    /// A local group cannot have another cross-domain local group as a member.
+    DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER = 0xC00002DB,
+
+    /// Cannot change to a security-disabled group because primary members are in this group.
+    DS_HAVE_PRIMARY_MEMBERS = 0xC00002DC,
+
+    /// The WMI operation is not supported by the data block or method.
+    WMI_NOT_SUPPORTED = 0xC00002DD,
+
+    /// There is not enough power to complete the requested operation.
+    INSUFFICIENT_POWER = 0xC00002DE,
+
+    /// The Security Accounts Manager needs to get the boot password.
+    SAM_NEED_BOOTKEY_PASSWORD = 0xC00002DF,
+
+    /// The Security Accounts Manager needs to get the boot key from the floppy disk.
+    SAM_NEED_BOOTKEY_FLOPPY = 0xC00002E0,
+
+    /// The directory service cannot start.
+    DS_CANT_START = 0xC00002E1,
+
+    /// The directory service could not start because of the following error: %hs Error Status: 0x%x.
+    /// Click OK to shut down this system and restart in Directory Services Restore Mode.
+    /// Check the event log for more detailed information.
+    DS_INIT_FAILURE = 0xC00002E2,
+
+    /// The Security Accounts Manager initialization failed because of the following error: %hs Error Status: 0x%x.
+    /// Click OK to shut down this system and restart in Safe Mode.
+    /// Check the event log for more detailed information.
+    SAM_INIT_FAILURE = 0xC00002E3,
+
+    /// The requested operation can be performed only on a global catalog server.
+    DS_GC_REQUIRED = 0xC00002E4,
+
+    /// A local group can only be a member of other local groups in the same domain.
+    DS_LOCAL_MEMBER_OF_LOCAL_ONLY = 0xC00002E5,
+
+    /// Foreign security principals cannot be members of universal groups.
+    DS_NO_FPO_IN_UNIVERSAL_GROUPS = 0xC00002E6,
+
+    /// 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.
+    DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED = 0xC00002E7,
+
+    /// This operation cannot be performed on the current domain.
+    CURRENT_DOMAIN_NOT_ALLOWED = 0xC00002E9,
+
+    /// The directory or file cannot be created.
+    CANNOT_MAKE = 0xC00002EA,
+
+    /// The system is in the process of shutting down.
+    SYSTEM_SHUTDOWN = 0xC00002EB,
+
+    /// Directory Services could not start because of the following error: %hs Error Status: 0x%x. Click OK to shut down the system.
+    /// You can use the recovery console to diagnose the system further.
+    DS_INIT_FAILURE_CONSOLE = 0xC00002EC,
+
+    /// Security Accounts Manager initialization failed because of the following error: %hs Error Status: 0x%x. Click OK to shut down the system.
+    /// You can use the recovery console to diagnose the system further.
+    DS_SAM_INIT_FAILURE_CONSOLE = 0xC00002ED,
+
+    /// A security context was deleted before the context was completed. This is considered a logon failure.
+    UNFINISHED_CONTEXT_DELETED = 0xC00002EE,
+
+    /// The client is trying to negotiate a context and the server requires user-to-user but did not send a TGT reply.
+    NO_TGT_REPLY = 0xC00002EF,
+
+    /// An object ID was not found in the file.
+    OBJECTID_NOT_FOUND = 0xC00002F0,
+
+    /// Unable to accomplish the requested task because the local machine does not have any IP addresses.
+    NO_IP_ADDRESSES = 0xC00002F1,
+
+    /// The supplied credential handle does not match the credential that is associated with the security context.
+    WRONG_CREDENTIAL_HANDLE = 0xC00002F2,
+
+    /// The crypto system or checksum function is invalid because a required function is unavailable.
+    CRYPTO_SYSTEM_INVALID = 0xC00002F3,
+
+    /// The number of maximum ticket referrals has been exceeded.
+    MAX_REFERRALS_EXCEEDED = 0xC00002F4,
+
+    /// The local machine must be a Kerberos KDC (domain controller) and it is not.
+    MUST_BE_KDC = 0xC00002F5,
+
+    /// The other end of the security negotiation requires strong crypto but it is not supported on the local machine.
+    STRONG_CRYPTO_NOT_SUPPORTED = 0xC00002F6,
+
+    /// The KDC reply contained more than one principal name.
+    TOO_MANY_PRINCIPALS = 0xC00002F7,
+
+    /// Expected to find PA data for a hint of what etype to use, but it was not found.
+    NO_PA_DATA = 0xC00002F8,
+
+    /// The client certificate does not contain a valid UPN, or does not match the client name in the logon request. Contact your administrator.
+    PKINIT_NAME_MISMATCH = 0xC00002F9,
+
+    /// Smart card logon is required and was not used.
+    SMARTCARD_LOGON_REQUIRED = 0xC00002FA,
+
+    /// An invalid request was sent to the KDC.
+    KDC_INVALID_REQUEST = 0xC00002FB,
+
+    /// The KDC was unable to generate a referral for the service requested.
+    KDC_UNABLE_TO_REFER = 0xC00002FC,
+
+    /// The encryption type requested is not supported by the KDC.
+    KDC_UNKNOWN_ETYPE = 0xC00002FD,
+
+    /// A system shutdown is in progress.
+    SHUTDOWN_IN_PROGRESS = 0xC00002FE,
+
+    /// The server machine is shutting down.
+    SERVER_SHUTDOWN_IN_PROGRESS = 0xC00002FF,
+
+    /// This operation is not supported on a computer running Windows Server 2003 operating system for Small Business Server.
+    NOT_SUPPORTED_ON_SBS = 0xC0000300,
+
+    /// The WMI GUID is no longer available.
+    WMI_GUID_DISCONNECTED = 0xC0000301,
+
+    /// Collection or events for the WMI GUID is already disabled.
+    WMI_ALREADY_DISABLED = 0xC0000302,
+
+    /// Collection or events for the WMI GUID is already enabled.
+    WMI_ALREADY_ENABLED = 0xC0000303,
+
+    /// The master file table on the volume is too fragmented to complete this operation.
+    MFT_TOO_FRAGMENTED = 0xC0000304,
+
+    /// Copy protection failure.
+    COPY_PROTECTION_FAILURE = 0xC0000305,
+
+    /// Copy protection errorโ€”DVD CSS Authentication failed.
+    CSS_AUTHENTICATION_FAILURE = 0xC0000306,
+
+    /// Copy protection errorโ€”The specified sector does not contain a valid key.
+    CSS_KEY_NOT_PRESENT = 0xC0000307,
+
+    /// Copy protection errorโ€”DVD session key not established.
+    CSS_KEY_NOT_ESTABLISHED = 0xC0000308,
+
+    /// Copy protection errorโ€”The read failed because the sector is encrypted.
+    CSS_SCRAMBLED_SECTOR = 0xC0000309,
+
+    /// Copy protection errorโ€”The region of the specified DVD does not correspond to the region setting of the drive.
+    CSS_REGION_MISMATCH = 0xC000030A,
+
+    /// Copy protection errorโ€”The region setting of the drive might be permanent.
+    CSS_RESETS_EXHAUSTED = 0xC000030B,
+
+    /// The Kerberos protocol encountered an error while validating the KDC certificate during smart card logon.
+    /// There is more information in the system event log.
+    PKINIT_FAILURE = 0xC0000320,
+
+    /// The Kerberos protocol encountered an error while attempting to use the smart card subsystem.
+    SMARTCARD_SUBSYSTEM_FAILURE = 0xC0000321,
+
+    /// The target server does not have acceptable Kerberos credentials.
+    NO_KERB_KEY = 0xC0000322,
+
+    /// The transport determined that the remote system is down.
+    HOST_DOWN = 0xC0000350,
+
+    /// An unsupported pre-authentication mechanism was presented to the Kerberos package.
+    UNSUPPORTED_PREAUTH = 0xC0000351,
+
+    /// The encryption algorithm that is used on the source file needs a bigger key buffer than the one that is used on the destination file.
+    EFS_ALG_BLOB_TOO_BIG = 0xC0000352,
+
+    /// An attempt to remove a processes DebugPort was made, but a port was not already associated with the process.
+    PORT_NOT_SET = 0xC0000353,
+
+    /// An attempt to do an operation on a debug port failed because the port is in the process of being deleted.
+    DEBUGGER_INACTIVE = 0xC0000354,
+
+    /// This version of Windows is not compatible with the behavior version of the directory forest, domain, or domain controller.
+    DS_VERSION_CHECK_FAILURE = 0xC0000355,
+
+    /// The specified event is currently not being audited.
+    AUDITING_DISABLED = 0xC0000356,
+
+    /// The machine account was created prior to Windows NT 4.0 operating system. The account needs to be recreated.
+    PRENT4_MACHINE_ACCOUNT = 0xC0000357,
+
+    /// An account group cannot have a universal group as a member.
+    DS_AG_CANT_HAVE_UNIVERSAL_MEMBER = 0xC0000358,
+
+    /// The specified image file did not have the correct format; it appears to be a 32-bit Windows image.
+    INVALID_IMAGE_WIN_32 = 0xC0000359,
+
+    /// The specified image file did not have the correct format; it appears to be a 64-bit Windows image.
+    INVALID_IMAGE_WIN_64 = 0xC000035A,
+
+    /// The client's supplied SSPI channel bindings were incorrect.
+    BAD_BINDINGS = 0xC000035B,
+
+    /// The client session has expired; so the client must re-authenticate to continue accessing the remote resources.
+    NETWORK_SESSION_EXPIRED = 0xC000035C,
+
+    /// The AppHelp dialog box canceled; thus preventing the application from starting.
+    APPHELP_BLOCK = 0xC000035D,
+
+    /// The SID filtering operation removed all SIDs.
+    ALL_SIDS_FILTERED = 0xC000035E,
+
+    /// The driver was not loaded because the system is starting in safe mode.
+    NOT_SAFE_MODE_DRIVER = 0xC000035F,
+
+    /// Access to %1 has been restricted by your Administrator by the default software restriction policy level.
+    ACCESS_DISABLED_BY_POLICY_DEFAULT = 0xC0000361,
+
+    /// Access to %1 has been restricted by your Administrator by location with policy rule %2 placed on path %3.
+    ACCESS_DISABLED_BY_POLICY_PATH = 0xC0000362,
+
+    /// Access to %1 has been restricted by your Administrator by software publisher policy.
+    ACCESS_DISABLED_BY_POLICY_PUBLISHER = 0xC0000363,
+
+    /// Access to %1 has been restricted by your Administrator by policy rule %2.
+    ACCESS_DISABLED_BY_POLICY_OTHER = 0xC0000364,
+
+    /// The driver was not loaded because it failed its initialization call.
+    FAILED_DRIVER_ENTRY = 0xC0000365,
+
+    /// The device encountered an error while applying power or reading the device configuration.
+    /// This might be caused by a failure of your hardware or by a poor connection.
+    DEVICE_ENUMERATION_ERROR = 0xC0000366,
+
+    /// The create operation failed because the name contained at least one mount point that resolves to a volume to which the specified device object is not attached.
+    MOUNT_POINT_NOT_RESOLVED = 0xC0000368,
+
+    /// The device object parameter is either not a valid device object or is not attached to the volume that is specified by the file name.
+    INVALID_DEVICE_OBJECT_PARAMETER = 0xC0000369,
+
+    /// A machine check error has occurred.
+    /// Check the system event log for additional information.
+    MCA_OCCURED = 0xC000036A,
+
+    /// Driver %2 has been blocked from loading.
+    DRIVER_BLOCKED_CRITICAL = 0xC000036B,
+
+    /// Driver %2 has been blocked from loading.
+    DRIVER_BLOCKED = 0xC000036C,
+
+    /// There was error [%2] processing the driver database.
+    DRIVER_DATABASE_ERROR = 0xC000036D,
+
+    /// System hive size has exceeded its limit.
+    SYSTEM_HIVE_TOO_LARGE = 0xC000036E,
+
+    /// A dynamic link library (DLL) referenced a module that was neither a DLL nor the process's executable image.
+    INVALID_IMPORT_OF_NON_DLL = 0xC000036F,
+
+    /// The local account store does not contain secret material for the specified account.
+    NO_SECRETS = 0xC0000371,
+
+    /// Access to %1 has been restricted by your Administrator by policy rule %2.
+    ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY = 0xC0000372,
+
+    /// The system was not able to allocate enough memory to perform a stack switch.
+    FAILED_STACK_SWITCH = 0xC0000373,
+
+    /// A heap has been corrupted.
+    HEAP_CORRUPTION = 0xC0000374,
+
+    /// An incorrect PIN was presented to the smart card.
+    SMARTCARD_WRONG_PIN = 0xC0000380,
+
+    /// The smart card is blocked.
+    SMARTCARD_CARD_BLOCKED = 0xC0000381,
+
+    /// No PIN was presented to the smart card.
+    SMARTCARD_CARD_NOT_AUTHENTICATED = 0xC0000382,
+
+    /// No smart card is available.
+    SMARTCARD_NO_CARD = 0xC0000383,
+
+    /// The requested key container does not exist on the smart card.
+    SMARTCARD_NO_KEY_CONTAINER = 0xC0000384,
+
+    /// The requested certificate does not exist on the smart card.
+    SMARTCARD_NO_CERTIFICATE = 0xC0000385,
+
+    /// The requested keyset does not exist.
+    SMARTCARD_NO_KEYSET = 0xC0000386,
+
+    /// A communication error with the smart card has been detected.
+    SMARTCARD_IO_ERROR = 0xC0000387,
+
+    /// The system detected a possible attempt to compromise security.
+    /// Ensure that you can contact the server that authenticated you.
+    DOWNGRADE_DETECTED = 0xC0000388,
+
+    /// The smart card certificate used for authentication has been revoked. Contact your system administrator.
+    /// There might be additional information in the event log.
+    SMARTCARD_CERT_REVOKED = 0xC0000389,
+
+    /// An untrusted certificate authority was detected while processing the smart card certificate that is used for authentication. Contact your system administrator.
+    ISSUING_CA_UNTRUSTED = 0xC000038A,
+
+    /// The revocation status of the smart card certificate that is used for authentication could not be determined. Contact your system administrator.
+    REVOCATION_OFFLINE_C = 0xC000038B,
+
+    /// The smart card certificate used for authentication was not trusted. Contact your system administrator.
+    PKINIT_CLIENT_FAILURE = 0xC000038C,
+
+    /// The smart card certificate used for authentication has expired. Contact your system administrator.
+    SMARTCARD_CERT_EXPIRED = 0xC000038D,
+
+    /// The driver could not be loaded because a previous version of the driver is still in memory.
+    DRIVER_FAILED_PRIOR_UNLOAD = 0xC000038E,
+
+    /// The smart card provider could not perform the action because the context was acquired as silent.
+    SMARTCARD_SILENT_CONTEXT = 0xC000038F,
+
+    /// The delegated trust creation quota of the current user has been exceeded.
+    PER_USER_TRUST_QUOTA_EXCEEDED = 0xC0000401,
+
+    /// The total delegated trust creation quota has been exceeded.
+    ALL_USER_TRUST_QUOTA_EXCEEDED = 0xC0000402,
+
+    /// The delegated trust deletion quota of the current user has been exceeded.
+    USER_DELETE_TRUST_QUOTA_EXCEEDED = 0xC0000403,
+
+    /// The requested name already exists as a unique identifier.
+    DS_NAME_NOT_UNIQUE = 0xC0000404,
+
+    /// The requested object has a non-unique identifier and cannot be retrieved.
+    DS_DUPLICATE_ID_FOUND = 0xC0000405,
+
+    /// The group cannot be converted due to attribute restrictions on the requested group type.
+    DS_GROUP_CONVERSION_ERROR = 0xC0000406,
+
+    /// {Volume Shadow Copy Service} Wait while the Volume Shadow Copy Service prepares volume %hs for hibernation.
+    VOLSNAP_PREPARE_HIBERNATE = 0xC0000407,
+
+    /// Kerberos sub-protocol User2User is required.
+    USER2USER_REQUIRED = 0xC0000408,
+
+    /// 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.
+    STACK_BUFFER_OVERRUN = 0xC0000409,
+
+    /// The Kerberos subsystem encountered an error.
+    /// A service for user protocol request was made against a domain controller which does not support service for user.
+    NO_S4U_PROT_SUPPORT = 0xC000040A,
+
+    /// An attempt was made by this server to make a Kerberos constrained delegation request for a target that is outside the server realm.
+    /// This action is not supported and the resulting error indicates a misconfiguration on the allowed-to-delegate-to list for this server. Contact your administrator.
+    CROSSREALM_DELEGATION_FAILURE = 0xC000040B,
+
+    /// The revocation status of the domain controller certificate used for smart card authentication could not be determined.
+    /// There is additional information in the system event log. Contact your system administrator.
+    REVOCATION_OFFLINE_KDC = 0xC000040C,
+
+    /// An untrusted certificate authority was detected while processing the domain controller certificate used for authentication.
+    /// There is additional information in the system event log. Contact your system administrator.
+    ISSUING_CA_UNTRUSTED_KDC = 0xC000040D,
+
+    /// The domain controller certificate used for smart card logon has expired.
+    /// Contact your system administrator with the contents of your system event log.
+    KDC_CERT_EXPIRED = 0xC000040E,
+
+    /// The domain controller certificate used for smart card logon has been revoked.
+    /// Contact your system administrator with the contents of your system event log.
+    KDC_CERT_REVOKED = 0xC000040F,
+
+    /// Data present in one of the parameters is more than the function can operate on.
+    PARAMETER_QUOTA_EXCEEDED = 0xC0000410,
+
+    /// The system has failed to hibernate (The error code is %hs).
+    /// Hibernation will be disabled until the system is restarted.
+    HIBERNATION_FAILURE = 0xC0000411,
+
+    /// An attempt to delay-load a .dll or get a function address in a delay-loaded .dll failed.
+    DELAY_LOAD_FAILED = 0xC0000412,
+
+    /// Logon Failure: The machine you are logging onto is protected by an authentication firewall.
+    /// The specified account is not allowed to authenticate to the machine.
+    AUTHENTICATION_FIREWALL_FAILED = 0xC0000413,
+
+    /// %hs is a 16-bit application. You do not have permissions to execute 16-bit applications.
+    /// Check your permissions with your system administrator.
+    VDM_DISALLOWED = 0xC0000414,
+
+    /// {Display Driver Stopped Responding} The %hs display driver has stopped working normally.
+    /// Save your work and reboot the system to restore full display functionality.
+    /// The next time you reboot the machine a dialog will be displayed giving you a chance to report this failure to Microsoft.
+    HUNG_DISPLAY_DRIVER_THREAD = 0xC0000415,
+
+    /// The Desktop heap encountered an error while allocating session memory.
+    /// There is more information in the system event log.
+    INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE = 0xC0000416,
+
+    /// An invalid parameter was passed to a C runtime function.
+    INVALID_CRUNTIME_PARAMETER = 0xC0000417,
+
+    /// The authentication failed because NTLM was blocked.
+    NTLM_BLOCKED = 0xC0000418,
+
+    /// The source object's SID already exists in destination forest.
+    DS_SRC_SID_EXISTS_IN_FOREST = 0xC0000419,
+
+    /// The domain name of the trusted domain already exists in the forest.
+    DS_DOMAIN_NAME_EXISTS_IN_FOREST = 0xC000041A,
+
+    /// The flat name of the trusted domain already exists in the forest.
+    DS_FLAT_NAME_EXISTS_IN_FOREST = 0xC000041B,
+
+    /// The User Principal Name (UPN) is invalid.
+    INVALID_USER_PRINCIPAL_NAME = 0xC000041C,
+
+    /// There has been an assertion failure.
+    ASSERTION_FAILURE = 0xC0000420,
+
+    /// Application verifier has found an error in the current process.
+    VERIFIER_STOP = 0xC0000421,
+
+    /// A user mode unwind is in progress.
+    CALLBACK_POP_STACK = 0xC0000423,
+
+    /// %2 has been blocked from loading due to incompatibility with this system.
+    /// Contact your software vendor for a compatible version of the driver.
+    INCOMPATIBLE_DRIVER_BLOCKED = 0xC0000424,
+
+    /// Illegal operation attempted on a registry key which has already been unloaded.
+    HIVE_UNLOADED = 0xC0000425,
+
+    /// Compression is disabled for this volume.
+    COMPRESSION_DISABLED = 0xC0000426,
+
+    /// The requested operation could not be completed due to a file system limitation.
+    FILE_SYSTEM_LIMITATION = 0xC0000427,
+
+    /// The hash for image %hs cannot be found in the system catalogs.
+    /// The image is likely corrupt or the victim of tampering.
+    INVALID_IMAGE_HASH = 0xC0000428,
+
+    /// The implementation is not capable of performing the request.
+    NOT_CAPABLE = 0xC0000429,
+
+    /// The requested operation is out of order with respect to other operations.
+    REQUEST_OUT_OF_SEQUENCE = 0xC000042A,
+
+    /// An operation attempted to exceed an implementation-defined limit.
+    IMPLEMENTATION_LIMIT = 0xC000042B,
+
+    /// The requested operation requires elevation.
+    ELEVATION_REQUIRED = 0xC000042C,
+
+    /// The required security context does not exist.
+    NO_SECURITY_CONTEXT = 0xC000042D,
+
+    /// The PKU2U protocol encountered an error while attempting to utilize the associated certificates.
+    PKU2U_CERT_FAILURE = 0xC000042E,
+
+    /// The operation was attempted beyond the valid data length of the file.
+    BEYOND_VDL = 0xC0000432,
+
+    /// The attempted write operation encountered a write already in progress for some portion of the range.
+    ENCOUNTERED_WRITE_IN_PROGRESS = 0xC0000433,
+
+    /// The page fault mappings changed in the middle of processing a fault so the operation must be retried.
+    PTE_CHANGED = 0xC0000434,
+
+    /// The attempt to purge this file from memory failed to purge some or all the data from memory.
+    PURGE_FAILED = 0xC0000435,
+
+    /// The requested credential requires confirmation.
+    CRED_REQUIRES_CONFIRMATION = 0xC0000440,
+
+    /// The remote server sent an invalid response for a file being opened with Client Side Encryption.
+    CS_ENCRYPTION_INVALID_SERVER_RESPONSE = 0xC0000441,
+
+    /// Client Side Encryption is not supported by the remote server even though it claims to support it.
+    CS_ENCRYPTION_UNSUPPORTED_SERVER = 0xC0000442,
+
+    /// File is encrypted and should be opened in Client Side Encryption mode.
+    CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE = 0xC0000443,
+
+    /// A new encrypted file is being created and a $EFS needs to be provided.
+    CS_ENCRYPTION_NEW_ENCRYPTED_FILE = 0xC0000444,
+
+    /// The SMB client requested a CSE FSCTL on a non-CSE file.
+    CS_ENCRYPTION_FILE_NOT_CSE = 0xC0000445,
+
+    /// Indicates a particular Security ID cannot be assigned as the label of an object.
+    INVALID_LABEL = 0xC0000446,
+
+    /// The process hosting the driver for this device has terminated.
+    DRIVER_PROCESS_TERMINATED = 0xC0000450,
+
+    /// The requested system device cannot be identified due to multiple indistinguishable devices potentially matching the identification criteria.
+    AMBIGUOUS_SYSTEM_DEVICE = 0xC0000451,
+
+    /// The requested system device cannot be found.
+    SYSTEM_DEVICE_NOT_FOUND = 0xC0000452,
+
+    /// This boot application must be restarted.
+    RESTART_BOOT_APPLICATION = 0xC0000453,
+
+    /// Insufficient NVRAM resources exist to complete the API.  A reboot might be required.
+    INSUFFICIENT_NVRAM_RESOURCES = 0xC0000454,
+
+    /// No ranges for the specified operation were able to be processed.
+    NO_RANGES_PROCESSED = 0xC0000460,
+
+    /// The storage device does not support Offload Write.
+    DEVICE_FEATURE_NOT_SUPPORTED = 0xC0000463,
+
+    /// Data cannot be moved because the source device cannot communicate with the destination device.
+    DEVICE_UNREACHABLE = 0xC0000464,
+
+    /// The token representing the data is invalid or expired.
+    INVALID_TOKEN = 0xC0000465,
+
+    /// The file server is temporarily unavailable.
+    SERVER_UNAVAILABLE = 0xC0000466,
+
+    /// The specified task name is invalid.
+    INVALID_TASK_NAME = 0xC0000500,
+
+    /// The specified task index is invalid.
+    INVALID_TASK_INDEX = 0xC0000501,
+
+    /// The specified thread is already joining a task.
+    THREAD_ALREADY_IN_TASK = 0xC0000502,
+
+    /// A callback has requested to bypass native code.
+    CALLBACK_BYPASS = 0xC0000503,
+
+    /// A fail fast exception occurred.
+    /// Exception handlers will not be invoked and the process will be terminated immediately.
+    FAIL_FAST_EXCEPTION = 0xC0000602,
+
+    /// Windows cannot verify the digital signature for this file.
+    /// The signing certificate for this file has been revoked.
+    IMAGE_CERT_REVOKED = 0xC0000603,
+
+    /// The ALPC port is closed.
+    PORT_CLOSED = 0xC0000700,
+
+    /// The ALPC message requested is no longer available.
+    MESSAGE_LOST = 0xC0000701,
+
+    /// The ALPC message supplied is invalid.
+    INVALID_MESSAGE = 0xC0000702,
+
+    /// The ALPC message has been canceled.
+    REQUEST_CANCELED = 0xC0000703,
+
+    /// Invalid recursive dispatch attempt.
+    RECURSIVE_DISPATCH = 0xC0000704,
+
+    /// No receive buffer has been supplied in a synchronous request.
+    LPC_RECEIVE_BUFFER_EXPECTED = 0xC0000705,
+
+    /// The connection port is used in an invalid context.
+    LPC_INVALID_CONNECTION_USAGE = 0xC0000706,
+
+    /// The ALPC port does not accept new request messages.
+    LPC_REQUESTS_NOT_ALLOWED = 0xC0000707,
+
+    /// The resource requested is already in use.
+    RESOURCE_IN_USE = 0xC0000708,
+
+    /// The hardware has reported an uncorrectable memory error.
+    HARDWARE_MEMORY_ERROR = 0xC0000709,
+
+    /// Status 0x%08x was returned, waiting on handle 0x%x for wait 0x%p, in waiter 0x%p.
+    THREADPOOL_HANDLE_EXCEPTION = 0xC000070A,
+
+    /// After a callback to 0x%p(0x%p), a completion call to Set event(0x%p) failed with status 0x%08x.
+    THREADPOOL_SET_EVENT_ON_COMPLETION_FAILED = 0xC000070B,
+
+    /// After a callback to 0x%p(0x%p), a completion call to ReleaseSemaphore(0x%p, %d) failed with status 0x%08x.
+    THREADPOOL_RELEASE_SEMAPHORE_ON_COMPLETION_FAILED = 0xC000070C,
+
+    /// After a callback to 0x%p(0x%p), a completion call to ReleaseMutex(%p) failed with status 0x%08x.
+    THREADPOOL_RELEASE_MUTEX_ON_COMPLETION_FAILED = 0xC000070D,
+
+    /// After a callback to 0x%p(0x%p), a completion call to FreeLibrary(%p) failed with status 0x%08x.
+    THREADPOOL_FREE_LIBRARY_ON_COMPLETION_FAILED = 0xC000070E,
+
+    /// The thread pool 0x%p was released while a thread was posting a callback to 0x%p(0x%p) to it.
+    THREADPOOL_RELEASED_DURING_OPERATION = 0xC000070F,
+
+    /// A thread pool worker thread is impersonating a client, after a callback to 0x%p(0x%p).
+    /// This is unexpected, indicating that the callback is missing a call to revert the impersonation.
+    CALLBACK_RETURNED_WHILE_IMPERSONATING = 0xC0000710,
+
+    /// A thread pool worker thread is impersonating a client, after executing an APC.
+    /// This is unexpected, indicating that the APC is missing a call to revert the impersonation.
+    APC_RETURNED_WHILE_IMPERSONATING = 0xC0000711,
+
+    /// Either the target process, or the target thread's containing process, is a protected process.
+    PROCESS_IS_PROTECTED = 0xC0000712,
+
+    /// A thread is getting dispatched with MCA EXCEPTION because of MCA.
+    MCA_EXCEPTION = 0xC0000713,
+
+    /// The client certificate account mapping is not unique.
+    CERTIFICATE_MAPPING_NOT_UNIQUE = 0xC0000714,
+
+    /// The symbolic link cannot be followed because its type is disabled.
+    SYMLINK_CLASS_DISABLED = 0xC0000715,
+
+    /// Indicates that the specified string is not valid for IDN normalization.
+    INVALID_IDN_NORMALIZATION = 0xC0000716,
+
+    /// No mapping for the Unicode character exists in the target multi-byte code page.
+    NO_UNICODE_TRANSLATION = 0xC0000717,
+
+    /// The provided callback is already registered.
+    ALREADY_REGISTERED = 0xC0000718,
+
+    /// The provided context did not match the target.
+    CONTEXT_MISMATCH = 0xC0000719,
+
+    /// The specified port already has a completion list.
+    PORT_ALREADY_HAS_COMPLETION_LIST = 0xC000071A,
+
+    /// A threadpool worker thread entered a callback at thread base priority 0x%x and exited at priority 0x%x.
+    /// This is unexpected, indicating that the callback missed restoring the priority.
+    CALLBACK_RETURNED_THREAD_PRIORITY = 0xC000071B,
+
+    /// An invalid thread, handle %p, is specified for this operation.
+    /// Possibly, a threadpool worker thread was specified.
+    INVALID_THREAD = 0xC000071C,
+
+    /// A threadpool worker thread entered a callback, which left transaction state.
+    /// This is unexpected, indicating that the callback missed clearing the transaction.
+    CALLBACK_RETURNED_TRANSACTION = 0xC000071D,
+
+    /// A threadpool worker thread entered a callback, which left the loader lock held.
+    /// This is unexpected, indicating that the callback missed releasing the lock.
+    CALLBACK_RETURNED_LDR_LOCK = 0xC000071E,
+
+    /// A threadpool worker thread entered a callback, which left with preferred languages set.
+    /// This is unexpected, indicating that the callback missed clearing them.
+    CALLBACK_RETURNED_LANG = 0xC000071F,
+
+    /// A threadpool worker thread entered a callback, which left with background priorities set.
+    /// This is unexpected, indicating that the callback missed restoring the original priorities.
+    CALLBACK_RETURNED_PRI_BACK = 0xC0000720,
+
+    /// The attempted operation required self healing to be enabled.
+    DISK_REPAIR_DISABLED = 0xC0000800,
+
+    /// The directory service cannot perform the requested operation because a domain rename operation is in progress.
+    DS_DOMAIN_RENAME_IN_PROGRESS = 0xC0000801,
+
+    /// An operation failed because the storage quota was exceeded.
+    DISK_QUOTA_EXCEEDED = 0xC0000802,
+
+    /// An operation failed because the content was blocked.
+    CONTENT_BLOCKED = 0xC0000804,
+
+    /// The operation could not be completed due to bad clusters on disk.
+    BAD_CLUSTERS = 0xC0000805,
+
+    /// The operation could not be completed because the volume is dirty. Please run the Chkdsk utility and try again.
+    VOLUME_DIRTY = 0xC0000806,
+
+    /// This file is checked out or locked for editing by another user.
+    FILE_CHECKED_OUT = 0xC0000901,
+
+    /// The file must be checked out before saving changes.
+    CHECKOUT_REQUIRED = 0xC0000902,
+
+    /// The file type being saved or retrieved has been blocked.
+    BAD_FILE_TYPE = 0xC0000903,
+
+    /// The file size exceeds the limit allowed and cannot be saved.
+    FILE_TOO_LARGE = 0xC0000904,
+
+    /// Access Denied. Before opening files in this location, you must first browse to the e.g.
+    /// site and select the option to log on automatically.
+    FORMS_AUTH_REQUIRED = 0xC0000905,
+
+    /// The operation did not complete successfully because the file contains a virus.
+    VIRUS_INFECTED = 0xC0000906,
+
+    /// This file contains a virus and cannot be opened.
+    /// Due to the nature of this virus, the file has been removed from this location.
+    VIRUS_DELETED = 0xC0000907,
+
+    /// The resources required for this device conflict with the MCFG table.
+    BAD_MCFG_TABLE = 0xC0000908,
+
+    /// 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.
+    CANNOT_BREAK_OPLOCK = 0xC0000909,
+
+    /// WOW Assertion Error.
+    WOW_ASSERTION = 0xC0009898,
+
+    /// The cryptographic signature is invalid.
+    INVALID_SIGNATURE = 0xC000A000,
+
+    /// The cryptographic provider does not support HMAC.
+    HMAC_NOT_SUPPORTED = 0xC000A001,
+
+    /// The IPsec queue overflowed.
+    IPSEC_QUEUE_OVERFLOW = 0xC000A010,
+
+    /// The neighbor discovery queue overflowed.
+    ND_QUEUE_OVERFLOW = 0xC000A011,
+
+    /// An Internet Control Message Protocol (ICMP) hop limit exceeded error was received.
+    HOPLIMIT_EXCEEDED = 0xC000A012,
+
+    /// The protocol is not installed on the local machine.
+    PROTOCOL_NOT_SUPPORTED = 0xC000A013,
+
+    /// {Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost.
+    /// This error might be caused by network connectivity issues. Try to save this file elsewhere.
+    LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED = 0xC000A080,
+
+    /// {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. Try to save this file elsewhere.
+    LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR = 0xC000A081,
+
+    /// {Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost.
+    /// This error might be caused if the device has been removed or the media is write-protected.
+    LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR = 0xC000A082,
+
+    /// Windows was unable to parse the requested XML data.
+    XML_PARSE_ERROR = 0xC000A083,
+
+    /// An error was encountered while processing an XML digital signature.
+    XMLDSIG_ERROR = 0xC000A084,
+
+    /// This indicates that the caller made the connection request in the wrong routing compartment.
+    WRONG_COMPARTMENT = 0xC000A085,
+
+    /// This indicates that there was an AuthIP failure when attempting to connect to the remote host.
+    AUTHIP_FAILURE = 0xC000A086,
+
+    /// OID mapped groups cannot have members.
+    DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS = 0xC000A087,
+
+    /// The specified OID cannot be found.
+    DS_OID_NOT_FOUND = 0xC000A088,
+
+    /// Hash generation for the specified version and hash type is not enabled on server.
+    HASH_NOT_SUPPORTED = 0xC000A100,
+
+    /// The hash requests is not present or not up to date with the current file contents.
+    HASH_NOT_PRESENT = 0xC000A101,
+
+    /// A file system filter on the server has not opted in for Offload Read support.
+    OFFLOAD_READ_FLT_NOT_SUPPORTED = 0xC000A2A1,
+
+    /// A file system filter on the server has not opted in for Offload Write support.
+    OFFLOAD_WRITE_FLT_NOT_SUPPORTED = 0xC000A2A2,
+
+    /// Offload read operations cannot be performed on:
+    ///   - Compressed files
+    ///   - Sparse files
+    ///   - Encrypted files
+    ///   - File system metadata files
+    OFFLOAD_READ_FILE_NOT_SUPPORTED = 0xC000A2A3,
+
+    /// Offload write operations cannot be performed on:
+    ///  - Compressed files
+    ///  - Sparse files
+    ///  - Encrypted files
+    ///  - File system metadata files
+    OFFLOAD_WRITE_FILE_NOT_SUPPORTED = 0xC000A2A4,
+
+    /// The debugger did not perform a state change.
+    DBG_NO_STATE_CHANGE = 0xC0010001,
+
+    /// The debugger found that the application is not idle.
+    DBG_APP_NOT_IDLE = 0xC0010002,
+
+    /// The string binding is invalid.
+    RPC_NT_INVALID_STRING_BINDING = 0xC0020001,
+
+    /// The binding handle is not the correct type.
+    RPC_NT_WRONG_KIND_OF_BINDING = 0xC0020002,
+
+    /// The binding handle is invalid.
+    RPC_NT_INVALID_BINDING = 0xC0020003,
+
+    /// The RPC protocol sequence is not supported.
+    RPC_NT_PROTSEQ_NOT_SUPPORTED = 0xC0020004,
+
+    /// The RPC protocol sequence is invalid.
+    RPC_NT_INVALID_RPC_PROTSEQ = 0xC0020005,
+
+    /// The string UUID is invalid.
+    RPC_NT_INVALID_STRING_UUID = 0xC0020006,
+
+    /// The endpoint format is invalid.
+    RPC_NT_INVALID_ENDPOINT_FORMAT = 0xC0020007,
+
+    /// The network address is invalid.
+    RPC_NT_INVALID_NET_ADDR = 0xC0020008,
+
+    /// No endpoint was found.
+    RPC_NT_NO_ENDPOINT_FOUND = 0xC0020009,
+
+    /// The time-out value is invalid.
+    RPC_NT_INVALID_TIMEOUT = 0xC002000A,
+
+    /// The object UUID was not found.
+    RPC_NT_OBJECT_NOT_FOUND = 0xC002000B,
+
+    /// The object UUID has already been registered.
+    RPC_NT_ALREADY_REGISTERED = 0xC002000C,
+
+    /// The type UUID has already been registered.
+    RPC_NT_TYPE_ALREADY_REGISTERED = 0xC002000D,
+
+    /// The RPC server is already listening.
+    RPC_NT_ALREADY_LISTENING = 0xC002000E,
+
+    /// No protocol sequences have been registered.
+    RPC_NT_NO_PROTSEQS_REGISTERED = 0xC002000F,
+
+    /// The RPC server is not listening.
+    RPC_NT_NOT_LISTENING = 0xC0020010,
+
+    /// The manager type is unknown.
+    RPC_NT_UNKNOWN_MGR_TYPE = 0xC0020011,
+
+    /// The interface is unknown.
+    RPC_NT_UNKNOWN_IF = 0xC0020012,
+
+    /// There are no bindings.
+    RPC_NT_NO_BINDINGS = 0xC0020013,
+
+    /// There are no protocol sequences.
+    RPC_NT_NO_PROTSEQS = 0xC0020014,
+
+    /// The endpoint cannot be created.
+    RPC_NT_CANT_CREATE_ENDPOINT = 0xC0020015,
+
+    /// Insufficient resources are available to complete this operation.
+    RPC_NT_OUT_OF_RESOURCES = 0xC0020016,
+
+    /// The RPC server is unavailable.
+    RPC_NT_SERVER_UNAVAILABLE = 0xC0020017,
+
+    /// The RPC server is too busy to complete this operation.
+    RPC_NT_SERVER_TOO_BUSY = 0xC0020018,
+
+    /// The network options are invalid.
+    RPC_NT_INVALID_NETWORK_OPTIONS = 0xC0020019,
+
+    /// No RPCs are active on this thread.
+    RPC_NT_NO_CALL_ACTIVE = 0xC002001A,
+
+    /// The RPC failed.
+    RPC_NT_CALL_FAILED = 0xC002001B,
+
+    /// The RPC failed and did not execute.
+    RPC_NT_CALL_FAILED_DNE = 0xC002001C,
+
+    /// An RPC protocol error occurred.
+    RPC_NT_PROTOCOL_ERROR = 0xC002001D,
+
+    /// The RPC server does not support the transfer syntax.
+    RPC_NT_UNSUPPORTED_TRANS_SYN = 0xC002001F,
+
+    /// The type UUID is not supported.
+    RPC_NT_UNSUPPORTED_TYPE = 0xC0020021,
+
+    /// The tag is invalid.
+    RPC_NT_INVALID_TAG = 0xC0020022,
+
+    /// The array bounds are invalid.
+    RPC_NT_INVALID_BOUND = 0xC0020023,
+
+    /// The binding does not contain an entry name.
+    RPC_NT_NO_ENTRY_NAME = 0xC0020024,
+
+    /// The name syntax is invalid.
+    RPC_NT_INVALID_NAME_SYNTAX = 0xC0020025,
+
+    /// The name syntax is not supported.
+    RPC_NT_UNSUPPORTED_NAME_SYNTAX = 0xC0020026,
+
+    /// No network address is available to construct a UUID.
+    RPC_NT_UUID_NO_ADDRESS = 0xC0020028,
+
+    /// The endpoint is a duplicate.
+    RPC_NT_DUPLICATE_ENDPOINT = 0xC0020029,
+
+    /// The authentication type is unknown.
+    RPC_NT_UNKNOWN_AUTHN_TYPE = 0xC002002A,
+
+    /// The maximum number of calls is too small.
+    RPC_NT_MAX_CALLS_TOO_SMALL = 0xC002002B,
+
+    /// The string is too long.
+    RPC_NT_STRING_TOO_LONG = 0xC002002C,
+
+    /// The RPC protocol sequence was not found.
+    RPC_NT_PROTSEQ_NOT_FOUND = 0xC002002D,
+
+    /// The procedure number is out of range.
+    RPC_NT_PROCNUM_OUT_OF_RANGE = 0xC002002E,
+
+    /// The binding does not contain any authentication information.
+    RPC_NT_BINDING_HAS_NO_AUTH = 0xC002002F,
+
+    /// The authentication service is unknown.
+    RPC_NT_UNKNOWN_AUTHN_SERVICE = 0xC0020030,
+
+    /// The authentication level is unknown.
+    RPC_NT_UNKNOWN_AUTHN_LEVEL = 0xC0020031,
+
+    /// The security context is invalid.
+    RPC_NT_INVALID_AUTH_IDENTITY = 0xC0020032,
+
+    /// The authorization service is unknown.
+    RPC_NT_UNKNOWN_AUTHZ_SERVICE = 0xC0020033,
+
+    /// The entry is invalid.
+    EPT_NT_INVALID_ENTRY = 0xC0020034,
+
+    /// The operation cannot be performed.
+    EPT_NT_CANT_PERFORM_OP = 0xC0020035,
+
+    /// No more endpoints are available from the endpoint mapper.
+    EPT_NT_NOT_REGISTERED = 0xC0020036,
+
+    /// No interfaces have been exported.
+    RPC_NT_NOTHING_TO_EXPORT = 0xC0020037,
+
+    /// The entry name is incomplete.
+    RPC_NT_INCOMPLETE_NAME = 0xC0020038,
+
+    /// The version option is invalid.
+    RPC_NT_INVALID_VERS_OPTION = 0xC0020039,
+
+    /// There are no more members.
+    RPC_NT_NO_MORE_MEMBERS = 0xC002003A,
+
+    /// There is nothing to unexport.
+    RPC_NT_NOT_ALL_OBJS_UNEXPORTED = 0xC002003B,
+
+    /// The interface was not found.
+    RPC_NT_INTERFACE_NOT_FOUND = 0xC002003C,
+
+    /// The entry already exists.
+    RPC_NT_ENTRY_ALREADY_EXISTS = 0xC002003D,
+
+    /// The entry was not found.
+    RPC_NT_ENTRY_NOT_FOUND = 0xC002003E,
+
+    /// The name service is unavailable.
+    RPC_NT_NAME_SERVICE_UNAVAILABLE = 0xC002003F,
+
+    /// The network address family is invalid.
+    RPC_NT_INVALID_NAF_ID = 0xC0020040,
+
+    /// The requested operation is not supported.
+    RPC_NT_CANNOT_SUPPORT = 0xC0020041,
+
+    /// No security context is available to allow impersonation.
+    RPC_NT_NO_CONTEXT_AVAILABLE = 0xC0020042,
+
+    /// An internal error occurred in the RPC.
+    RPC_NT_INTERNAL_ERROR = 0xC0020043,
+
+    /// The RPC server attempted to divide an integer by zero.
+    RPC_NT_ZERO_DIVIDE = 0xC0020044,
+
+    /// An addressing error occurred in the RPC server.
+    RPC_NT_ADDRESS_ERROR = 0xC0020045,
+
+    /// A floating point operation at the RPC server caused a divide by zero.
+    RPC_NT_FP_DIV_ZERO = 0xC0020046,
+
+    /// A floating point underflow occurred at the RPC server.
+    RPC_NT_FP_UNDERFLOW = 0xC0020047,
+
+    /// A floating point overflow occurred at the RPC server.
+    RPC_NT_FP_OVERFLOW = 0xC0020048,
+
+    /// An RPC is already in progress for this thread.
+    RPC_NT_CALL_IN_PROGRESS = 0xC0020049,
+
+    /// There are no more bindings.
+    RPC_NT_NO_MORE_BINDINGS = 0xC002004A,
+
+    /// The group member was not found.
+    RPC_NT_GROUP_MEMBER_NOT_FOUND = 0xC002004B,
+
+    /// The endpoint mapper database entry could not be created.
+    EPT_NT_CANT_CREATE = 0xC002004C,
+
+    /// The object UUID is the nil UUID.
+    RPC_NT_INVALID_OBJECT = 0xC002004D,
+
+    /// No interfaces have been registered.
+    RPC_NT_NO_INTERFACES = 0xC002004F,
+
+    /// The RPC was canceled.
+    RPC_NT_CALL_CANCELLED = 0xC0020050,
+
+    /// The binding handle does not contain all the required information.
+    RPC_NT_BINDING_INCOMPLETE = 0xC0020051,
+
+    /// A communications failure occurred during an RPC.
+    RPC_NT_COMM_FAILURE = 0xC0020052,
+
+    /// The requested authentication level is not supported.
+    RPC_NT_UNSUPPORTED_AUTHN_LEVEL = 0xC0020053,
+
+    /// No principal name was registered.
+    RPC_NT_NO_PRINC_NAME = 0xC0020054,
+
+    /// The error specified is not a valid Windows RPC error code.
+    RPC_NT_NOT_RPC_ERROR = 0xC0020055,
+
+    /// A security package-specific error occurred.
+    RPC_NT_SEC_PKG_ERROR = 0xC0020057,
+
+    /// The thread was not canceled.
+    RPC_NT_NOT_CANCELLED = 0xC0020058,
+
+    /// Invalid asynchronous RPC handle.
+    RPC_NT_INVALID_ASYNC_HANDLE = 0xC0020062,
+
+    /// Invalid asynchronous RPC call handle for this operation.
+    RPC_NT_INVALID_ASYNC_CALL = 0xC0020063,
+
+    /// Access to the HTTP proxy is denied.
+    RPC_NT_PROXY_ACCESS_DENIED = 0xC0020064,
+
+    /// The list of RPC servers available for auto-handle binding has been exhausted.
+    RPC_NT_NO_MORE_ENTRIES = 0xC0030001,
+
+    /// The file designated by DCERPCCHARTRANS cannot be opened.
+    RPC_NT_SS_CHAR_TRANS_OPEN_FAIL = 0xC0030002,
+
+    /// The file containing the character translation table has fewer than 512 bytes.
+    RPC_NT_SS_CHAR_TRANS_SHORT_FILE = 0xC0030003,
+
+    /// A null context handle is passed as an [in] parameter.
+    RPC_NT_SS_IN_NULL_CONTEXT = 0xC0030004,
+
+    /// The context handle does not match any known context handles.
+    RPC_NT_SS_CONTEXT_MISMATCH = 0xC0030005,
+
+    /// The context handle changed during a call.
+    RPC_NT_SS_CONTEXT_DAMAGED = 0xC0030006,
+
+    /// The binding handles passed to an RPC do not match.
+    RPC_NT_SS_HANDLES_MISMATCH = 0xC0030007,
+
+    /// The stub is unable to get the call handle.
+    RPC_NT_SS_CANNOT_GET_CALL_HANDLE = 0xC0030008,
+
+    /// A null reference pointer was passed to the stub.
+    RPC_NT_NULL_REF_POINTER = 0xC0030009,
+
+    /// The enumeration value is out of range.
+    RPC_NT_ENUM_VALUE_OUT_OF_RANGE = 0xC003000A,
+
+    /// The byte count is too small.
+    RPC_NT_BYTE_COUNT_TOO_SMALL = 0xC003000B,
+
+    /// The stub received bad data.
+    RPC_NT_BAD_STUB_DATA = 0xC003000C,
+
+    /// Invalid operation on the encoding/decoding handle.
+    RPC_NT_INVALID_ES_ACTION = 0xC0030059,
+
+    /// Incompatible version of the serializing package.
+    RPC_NT_WRONG_ES_VERSION = 0xC003005A,
+
+    /// Incompatible version of the RPC stub.
+    RPC_NT_WRONG_STUB_VERSION = 0xC003005B,
+
+    /// The RPC pipe object is invalid or corrupt.
+    RPC_NT_INVALID_PIPE_OBJECT = 0xC003005C,
+
+    /// An invalid operation was attempted on an RPC pipe object.
+    RPC_NT_INVALID_PIPE_OPERATION = 0xC003005D,
+
+    /// Unsupported RPC pipe version.
+    RPC_NT_WRONG_PIPE_VERSION = 0xC003005E,
+
+    /// The RPC pipe object has already been closed.
+    RPC_NT_PIPE_CLOSED = 0xC003005F,
+
+    /// The RPC call completed before all pipes were processed.
+    RPC_NT_PIPE_DISCIPLINE_ERROR = 0xC0030060,
+
+    /// No more data is available from the RPC pipe.
+    RPC_NT_PIPE_EMPTY = 0xC0030061,
+
+    /// A device is missing in the system BIOS MPS table. This device will not be used.
+    /// Contact your system vendor for a system BIOS update.
+    PNP_BAD_MPS_TABLE = 0xC0040035,
+
+    /// A translator failed to translate resources.
+    PNP_TRANSLATION_FAILED = 0xC0040036,
+
+    /// An IRQ translator failed to translate resources.
+    PNP_IRQ_TRANSLATION_FAILED = 0xC0040037,
+
+    /// Driver %2 returned an invalid ID for a child device (%3).
+    PNP_INVALID_ID = 0xC0040038,
+
+    /// Reissue the given operation as a cached I/O operation
+    IO_REISSUE_AS_CACHED = 0xC0040039,
+
+    /// Session name %1 is invalid.
+    CTX_WINSTATION_NAME_INVALID = 0xC00A0001,
+
+    /// The protocol driver %1 is invalid.
+    CTX_INVALID_PD = 0xC00A0002,
+
+    /// The protocol driver %1 was not found in the system path.
+    CTX_PD_NOT_FOUND = 0xC00A0003,
+
+    /// A close operation is pending on the terminal connection.
+    CTX_CLOSE_PENDING = 0xC00A0006,
+
+    /// No free output buffers are available.
+    CTX_NO_OUTBUF = 0xC00A0007,
+
+    /// The MODEM.INF file was not found.
+    CTX_MODEM_INF_NOT_FOUND = 0xC00A0008,
+
+    /// The modem (%1) was not found in the MODEM.INF file.
+    CTX_INVALID_MODEMNAME = 0xC00A0009,
+
+    /// The modem did not accept the command sent to it.
+    /// Verify that the configured modem name matches the attached modem.
+    CTX_RESPONSE_ERROR = 0xC00A000A,
+
+    /// The modem did not respond to the command sent to it.
+    /// Verify that the modem cable is properly attached and the modem is turned on.
+    CTX_MODEM_RESPONSE_TIMEOUT = 0xC00A000B,
+
+    /// Carrier detection has failed or the carrier has been dropped due to disconnection.
+    CTX_MODEM_RESPONSE_NO_CARRIER = 0xC00A000C,
+
+    /// A dial tone was not detected within the required time.
+    /// Verify that the phone cable is properly attached and functional.
+    CTX_MODEM_RESPONSE_NO_DIALTONE = 0xC00A000D,
+
+    /// A busy signal was detected at a remote site on callback.
+    CTX_MODEM_RESPONSE_BUSY = 0xC00A000E,
+
+    /// A voice was detected at a remote site on callback.
+    CTX_MODEM_RESPONSE_VOICE = 0xC00A000F,
+
+    /// Transport driver error.
+    CTX_TD_ERROR = 0xC00A0010,
+
+    /// The client you are using is not licensed to use this system. Your logon request is denied.
+    CTX_LICENSE_CLIENT_INVALID = 0xC00A0012,
+
+    /// The system has reached its licensed logon limit. Try again later.
+    CTX_LICENSE_NOT_AVAILABLE = 0xC00A0013,
+
+    /// The system license has expired. Your logon request is denied.
+    CTX_LICENSE_EXPIRED = 0xC00A0014,
+
+    /// The specified session cannot be found.
+    CTX_WINSTATION_NOT_FOUND = 0xC00A0015,
+
+    /// The specified session name is already in use.
+    CTX_WINSTATION_NAME_COLLISION = 0xC00A0016,
+
+    /// The requested operation cannot be completed because the terminal connection is currently processing a connect, disconnect, reset, or delete operation.
+    CTX_WINSTATION_BUSY = 0xC00A0017,
+
+    /// An attempt has been made to connect to a session whose video mode is not supported by the current client.
+    CTX_BAD_VIDEO_MODE = 0xC00A0018,
+
+    /// The application attempted to enable DOS graphics mode. DOS graphics mode is not supported.
+    CTX_GRAPHICS_INVALID = 0xC00A0022,
+
+    /// 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.
+    CTX_NOT_CONSOLE = 0xC00A0024,
+
+    /// The client failed to respond to the server connect message.
+    CTX_CLIENT_QUERY_TIMEOUT = 0xC00A0026,
+
+    /// Disconnecting the console session is not supported.
+    CTX_CONSOLE_DISCONNECT = 0xC00A0027,
+
+    /// Reconnecting a disconnected session to the console is not supported.
+    CTX_CONSOLE_CONNECT = 0xC00A0028,
+
+    /// The request to control another session remotely was denied.
+    CTX_SHADOW_DENIED = 0xC00A002A,
+
+    /// A process has requested access to a session, but has not been granted those access rights.
+    CTX_WINSTATION_ACCESS_DENIED = 0xC00A002B,
+
+    /// The terminal connection driver %1 is invalid.
+    CTX_INVALID_WD = 0xC00A002E,
+
+    /// The terminal connection driver %1 was not found in the system path.
+    CTX_WD_NOT_FOUND = 0xC00A002F,
+
+    /// The requested session cannot be controlled remotely.
+    /// You cannot control your own session, a session that is trying to control your session, a session that has no user logged on, or other sessions from the console.
+    CTX_SHADOW_INVALID = 0xC00A0030,
+
+    /// The requested session is not configured to allow remote control.
+    CTX_SHADOW_DISABLED = 0xC00A0031,
+
+    /// The RDP protocol component %2 detected an error in the protocol stream and has disconnected the client.
+    RDP_PROTOCOL_ERROR = 0xC00A0032,
+
+    /// 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 client.
+    /// Contact your system administrator for help in entering a valid, unique license number for this terminal server client. Click OK to continue.
+    CTX_CLIENT_LICENSE_NOT_SET = 0xC00A0033,
+
+    /// Your request to connect to this terminal server has been rejected.
+    /// Your terminal server client license number is currently being used by another user.
+    /// Contact your system administrator to obtain a new copy of the terminal server client with a valid, unique license number. Click OK to continue.
+    CTX_CLIENT_LICENSE_IN_USE = 0xC00A0034,
+
+    /// 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.
+    CTX_SHADOW_ENDED_BY_MODE_CHANGE = 0xC00A0035,
+
+    /// Remote control could not be terminated because the specified session is not currently being remotely controlled.
+    CTX_SHADOW_NOT_RUNNING = 0xC00A0036,
+
+    /// Your interactive logon privilege has been disabled. Contact your system administrator.
+    CTX_LOGON_DISABLED = 0xC00A0037,
+
+    /// The terminal server security layer detected an error in the protocol stream and has disconnected the client.
+    CTX_SECURITY_LAYER_ERROR = 0xC00A0038,
+
+    /// The target session is incompatible with the current session.
+    TS_INCOMPATIBLE_SESSIONS = 0xC00A0039,
+
+    /// The resource loader failed to find an MUI file.
+    MUI_FILE_NOT_FOUND = 0xC00B0001,
+
+    /// The resource loader failed to load an MUI file because the file failed to pass validation.
+    MUI_INVALID_FILE = 0xC00B0002,
+
+    /// The RC manifest is corrupted with garbage data, is an unsupported version, or is missing a required item.
+    MUI_INVALID_RC_CONFIG = 0xC00B0003,
+
+    /// The RC manifest has an invalid culture name.
+    MUI_INVALID_LOCALE_NAME = 0xC00B0004,
+
+    /// The RC manifest has and invalid ultimate fallback name.
+    MUI_INVALID_ULTIMATEFALLBACK_NAME = 0xC00B0005,
+
+    /// The resource loader cache does not have a loaded MUI entry.
+    MUI_FILE_NOT_LOADED = 0xC00B0006,
+
+    /// The user stopped resource enumeration.
+    RESOURCE_ENUM_USER_STOP = 0xC00B0007,
+
+    /// The cluster node is not valid.
+    CLUSTER_INVALID_NODE = 0xC0130001,
+
+    /// The cluster node already exists.
+    CLUSTER_NODE_EXISTS = 0xC0130002,
+
+    /// A node is in the process of joining the cluster.
+    CLUSTER_JOIN_IN_PROGRESS = 0xC0130003,
+
+    /// The cluster node was not found.
+    CLUSTER_NODE_NOT_FOUND = 0xC0130004,
+
+    /// The cluster local node information was not found.
+    CLUSTER_LOCAL_NODE_NOT_FOUND = 0xC0130005,
+
+    /// The cluster network already exists.
+    CLUSTER_NETWORK_EXISTS = 0xC0130006,
+
+    /// The cluster network was not found.
+    CLUSTER_NETWORK_NOT_FOUND = 0xC0130007,
+
+    /// The cluster network interface already exists.
+    CLUSTER_NETINTERFACE_EXISTS = 0xC0130008,
+
+    /// The cluster network interface was not found.
+    CLUSTER_NETINTERFACE_NOT_FOUND = 0xC0130009,
+
+    /// The cluster request is not valid for this object.
+    CLUSTER_INVALID_REQUEST = 0xC013000A,
+
+    /// The cluster network provider is not valid.
+    CLUSTER_INVALID_NETWORK_PROVIDER = 0xC013000B,
+
+    /// The cluster node is down.
+    CLUSTER_NODE_DOWN = 0xC013000C,
+
+    /// The cluster node is not reachable.
+    CLUSTER_NODE_UNREACHABLE = 0xC013000D,
+
+    /// The cluster node is not a member of the cluster.
+    CLUSTER_NODE_NOT_MEMBER = 0xC013000E,
+
+    /// A cluster join operation is not in progress.
+    CLUSTER_JOIN_NOT_IN_PROGRESS = 0xC013000F,
+
+    /// The cluster network is not valid.
+    CLUSTER_INVALID_NETWORK = 0xC0130010,
+
+    /// No network adapters are available.
+    CLUSTER_NO_NET_ADAPTERS = 0xC0130011,
+
+    /// The cluster node is up.
+    CLUSTER_NODE_UP = 0xC0130012,
+
+    /// The cluster node is paused.
+    CLUSTER_NODE_PAUSED = 0xC0130013,
+
+    /// The cluster node is not paused.
+    CLUSTER_NODE_NOT_PAUSED = 0xC0130014,
+
+    /// No cluster security context is available.
+    CLUSTER_NO_SECURITY_CONTEXT = 0xC0130015,
+
+    /// The cluster network is not configured for internal cluster communication.
+    CLUSTER_NETWORK_NOT_INTERNAL = 0xC0130016,
+
+    /// The cluster node has been poisoned.
+    CLUSTER_POISONED = 0xC0130017,
+
+    /// An attempt was made to run an invalid AML opcode.
+    ACPI_INVALID_OPCODE = 0xC0140001,
+
+    /// The AML interpreter stack has overflowed.
+    ACPI_STACK_OVERFLOW = 0xC0140002,
+
+    /// An inconsistent state has occurred.
+    ACPI_ASSERT_FAILED = 0xC0140003,
+
+    /// An attempt was made to access an array outside its bounds.
+    ACPI_INVALID_INDEX = 0xC0140004,
+
+    /// A required argument was not specified.
+    ACPI_INVALID_ARGUMENT = 0xC0140005,
+
+    /// A fatal error has occurred.
+    ACPI_FATAL = 0xC0140006,
+
+    /// An invalid SuperName was specified.
+    ACPI_INVALID_SUPERNAME = 0xC0140007,
+
+    /// An argument with an incorrect type was specified.
+    ACPI_INVALID_ARGTYPE = 0xC0140008,
+
+    /// An object with an incorrect type was specified.
+    ACPI_INVALID_OBJTYPE = 0xC0140009,
+
+    /// A target with an incorrect type was specified.
+    ACPI_INVALID_TARGETTYPE = 0xC014000A,
+
+    /// An incorrect number of arguments was specified.
+    ACPI_INCORRECT_ARGUMENT_COUNT = 0xC014000B,
+
+    /// An address failed to translate.
+    ACPI_ADDRESS_NOT_MAPPED = 0xC014000C,
+
+    /// An incorrect event type was specified.
+    ACPI_INVALID_EVENTTYPE = 0xC014000D,
+
+    /// A handler for the target already exists.
+    ACPI_HANDLER_COLLISION = 0xC014000E,
+
+    /// Invalid data for the target was specified.
+    ACPI_INVALID_DATA = 0xC014000F,
+
+    /// An invalid region for the target was specified.
+    ACPI_INVALID_REGION = 0xC0140010,
+
+    /// An attempt was made to access a field outside the defined range.
+    ACPI_INVALID_ACCESS_SIZE = 0xC0140011,
+
+    /// The global system lock could not be acquired.
+    ACPI_ACQUIRE_GLOBAL_LOCK = 0xC0140012,
+
+    /// An attempt was made to reinitialize the ACPI subsystem.
+    ACPI_ALREADY_INITIALIZED = 0xC0140013,
+
+    /// The ACPI subsystem has not been initialized.
+    ACPI_NOT_INITIALIZED = 0xC0140014,
+
+    /// An incorrect mutex was specified.
+    ACPI_INVALID_MUTEX_LEVEL = 0xC0140015,
+
+    /// The mutex is not currently owned.
+    ACPI_MUTEX_NOT_OWNED = 0xC0140016,
+
+    /// An attempt was made to access the mutex by a process that was not the owner.
+    ACPI_MUTEX_NOT_OWNER = 0xC0140017,
+
+    /// An error occurred during an access to region space.
+    ACPI_RS_ACCESS = 0xC0140018,
+
+    /// An attempt was made to use an incorrect table.
+    ACPI_INVALID_TABLE = 0xC0140019,
+
+    /// The registration of an ACPI event failed.
+    ACPI_REG_HANDLER_FAILED = 0xC0140020,
+
+    /// An ACPI power object failed to transition state.
+    ACPI_POWER_REQUEST_FAILED = 0xC0140021,
+
+    /// The requested section is not present in the activation context.
+    SXS_SECTION_NOT_FOUND = 0xC0150001,
+
+    /// Windows was unble to process the application binding information.
+    /// Refer to the system event log for further information.
+    SXS_CANT_GEN_ACTCTX = 0xC0150002,
+
+    /// The application binding data format is invalid.
+    SXS_INVALID_ACTCTXDATA_FORMAT = 0xC0150003,
+
+    /// The referenced assembly is not installed on the system.
+    SXS_ASSEMBLY_NOT_FOUND = 0xC0150004,
+
+    /// The manifest file does not begin with the required tag and format information.
+    SXS_MANIFEST_FORMAT_ERROR = 0xC0150005,
+
+    /// The manifest file contains one or more syntax errors.
+    SXS_MANIFEST_PARSE_ERROR = 0xC0150006,
+
+    /// The application attempted to activate a disabled activation context.
+    SXS_ACTIVATION_CONTEXT_DISABLED = 0xC0150007,
+
+    /// The requested lookup key was not found in any active activation context.
+    SXS_KEY_NOT_FOUND = 0xC0150008,
+
+    /// A component version required by the application conflicts with another component version that is already active.
+    SXS_VERSION_CONFLICT = 0xC0150009,
+
+    /// The type requested activation context section does not match the query API used.
+    SXS_WRONG_SECTION_TYPE = 0xC015000A,
+
+    /// Lack of system resources has required isolated activation to be disabled for the current thread of execution.
+    SXS_THREAD_QUERIES_DISABLED = 0xC015000B,
+
+    /// The referenced assembly could not be found.
+    SXS_ASSEMBLY_MISSING = 0xC015000C,
+
+    /// An attempt to set the process default activation context failed because the process default activation context was already set.
+    SXS_PROCESS_DEFAULT_ALREADY_SET = 0xC015000E,
+
+    /// The activation context being deactivated is not the most recently activated one.
+    SXS_EARLY_DEACTIVATION = 0xC015000F,
+
+    /// The activation context being deactivated is not active for the current thread of execution.
+    SXS_INVALID_DEACTIVATION = 0xC0150010,
+
+    /// The activation context being deactivated has already been deactivated.
+    SXS_MULTIPLE_DEACTIVATION = 0xC0150011,
+
+    /// The activation context of the system default assembly could not be generated.
+    SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY = 0xC0150012,
+
+    /// A component used by the isolation facility has requested that the process be terminated.
+    SXS_PROCESS_TERMINATION_REQUESTED = 0xC0150013,
+
+    /// The activation context activation stack for the running thread of execution is corrupt.
+    SXS_CORRUPT_ACTIVATION_STACK = 0xC0150014,
+
+    /// The application isolation metadata for this process or thread has become corrupt.
+    SXS_CORRUPTION = 0xC0150015,
+
+    /// The value of an attribute in an identity is not within the legal range.
+    SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE = 0xC0150016,
+
+    /// The name of an attribute in an identity is not within the legal range.
+    SXS_INVALID_IDENTITY_ATTRIBUTE_NAME = 0xC0150017,
+
+    /// An identity contains two definitions for the same attribute.
+    SXS_IDENTITY_DUPLICATE_ATTRIBUTE = 0xC0150018,
+
+    /// The identity string is malformed.
+    /// This might be due to a trailing comma, more than two unnamed attributes, a missing attribute name, or a missing attribute value.
+    SXS_IDENTITY_PARSE_ERROR = 0xC0150019,
+
+    /// The component store has become corrupted.
+    SXS_COMPONENT_STORE_CORRUPT = 0xC015001A,
+
+    /// A component's file does not match the verification information present in the component manifest.
+    SXS_FILE_HASH_MISMATCH = 0xC015001B,
+
+    /// The identities of the manifests are identical, but their contents are different.
+    SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT = 0xC015001C,
+
+    /// The component identities are different.
+    SXS_IDENTITIES_DIFFERENT = 0xC015001D,
+
+    /// The assembly is not a deployment.
+    SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT = 0xC015001E,
+
+    /// The file is not a part of the assembly.
+    SXS_FILE_NOT_PART_OF_ASSEMBLY = 0xC015001F,
+
+    /// An advanced installer failed during setup or servicing.
+    ADVANCED_INSTALLER_FAILED = 0xC0150020,
+
+    /// The character encoding in the XML declaration did not match the encoding used in the document.
+    XML_ENCODING_MISMATCH = 0xC0150021,
+
+    /// The size of the manifest exceeds the maximum allowed.
+    SXS_MANIFEST_TOO_BIG = 0xC0150022,
+
+    /// The setting is not registered.
+    SXS_SETTING_NOT_REGISTERED = 0xC0150023,
+
+    /// One or more required transaction members are not present.
+    SXS_TRANSACTION_CLOSURE_INCOMPLETE = 0xC0150024,
+
+    /// The SMI primitive installer failed during setup or servicing.
+    SMI_PRIMITIVE_INSTALLER_FAILED = 0xC0150025,
+
+    /// A generic command executable returned a result that indicates failure.
+    GENERIC_COMMAND_FAILED = 0xC0150026,
+
+    /// A component is missing file verification information in its manifest.
+    SXS_FILE_HASH_MISSING = 0xC0150027,
+
+    /// The function attempted to use a name that is reserved for use by another transaction.
+    TRANSACTIONAL_CONFLICT = 0xC0190001,
+
+    /// The transaction handle associated with this operation is invalid.
+    INVALID_TRANSACTION = 0xC0190002,
+
+    /// The requested operation was made in the context of a transaction that is no longer active.
+    TRANSACTION_NOT_ACTIVE = 0xC0190003,
+
+    /// The transaction manager was unable to be successfully initialized. Transacted operations are not supported.
+    TM_INITIALIZATION_FAILED = 0xC0190004,
+
+    /// Transaction support within the specified file system resource manager was not started or was shut down due to an error.
+    RM_NOT_ACTIVE = 0xC0190005,
+
+    /// The metadata of the resource manager has been corrupted. The resource manager will not function.
+    RM_METADATA_CORRUPT = 0xC0190006,
+
+    /// The resource manager attempted to prepare a transaction that it has not successfully joined.
+    TRANSACTION_NOT_JOINED = 0xC0190007,
+
+    /// The specified directory does not contain a file system resource manager.
+    DIRECTORY_NOT_RM = 0xC0190008,
+
+    /// The remote server or share does not support transacted file operations.
+    TRANSACTIONS_UNSUPPORTED_REMOTE = 0xC019000A,
+
+    /// The requested log size for the file system resource manager is invalid.
+    LOG_RESIZE_INVALID_SIZE = 0xC019000B,
+
+    /// The remote server sent mismatching version number or Fid for a file opened with transactions.
+    REMOTE_FILE_VERSION_MISMATCH = 0xC019000C,
+
+    /// The resource manager tried to register a protocol that already exists.
+    CRM_PROTOCOL_ALREADY_EXISTS = 0xC019000F,
+
+    /// The attempt to propagate the transaction failed.
+    TRANSACTION_PROPAGATION_FAILED = 0xC0190010,
+
+    /// The requested propagation protocol was not registered as a CRM.
+    CRM_PROTOCOL_NOT_FOUND = 0xC0190011,
+
+    /// 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 allowed.
+    TRANSACTION_SUPERIOR_EXISTS = 0xC0190012,
+
+    /// The requested operation is not valid on the transaction object in its current state.
+    TRANSACTION_REQUEST_NOT_VALID = 0xC0190013,
+
+    /// The caller has called a response API, but the response is not expected because the transaction manager did not issue the corresponding request to the caller.
+    TRANSACTION_NOT_REQUESTED = 0xC0190014,
+
+    /// It is too late to perform the requested operation, because the transaction has already been aborted.
+    TRANSACTION_ALREADY_ABORTED = 0xC0190015,
+
+    /// It is too late to perform the requested operation, because the transaction has already been committed.
+    TRANSACTION_ALREADY_COMMITTED = 0xC0190016,
+
+    /// The buffer passed in to NtPushTransaction or NtPullTransaction is not in a valid format.
+    TRANSACTION_INVALID_MARSHALL_BUFFER = 0xC0190017,
+
+    /// The current transaction context associated with the thread is not a valid handle to a transaction object.
+    CURRENT_TRANSACTION_NOT_VALID = 0xC0190018,
+
+    /// An attempt to create space in the transactional resource manager's log failed.
+    /// The failure status has been recorded in the event log.
+    LOG_GROWTH_FAILED = 0xC0190019,
+
+    /// The object (file, stream, or link) that corresponds to the handle has been deleted by a transaction savepoint rollback.
+    OBJECT_NO_LONGER_EXISTS = 0xC0190021,
+
+    /// The specified file miniversion was not found for this transacted file open.
+    STREAM_MINIVERSION_NOT_FOUND = 0xC0190022,
+
+    /// The specified file miniversion was found but has been invalidated.
+    /// The most likely cause is a transaction savepoint rollback.
+    STREAM_MINIVERSION_NOT_VALID = 0xC0190023,
+
+    /// A miniversion can be opened only in the context of the transaction that created it.
+    MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION = 0xC0190024,
+
+    /// It is not possible to open a miniversion with modify access.
+    CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT = 0xC0190025,
+
+    /// It is not possible to create any more miniversions for this stream.
+    CANT_CREATE_MORE_STREAM_MINIVERSIONS = 0xC0190026,
+
+    /// 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.
+    HANDLE_NO_LONGER_VALID = 0xC0190028,
+
+    /// The log data is corrupt.
+    LOG_CORRUPTION_DETECTED = 0xC0190030,
+
+    /// The transaction outcome is unavailable because the resource manager responsible for it is disconnected.
+    RM_DISCONNECTED = 0xC0190032,
+
+    /// The request was rejected because the enlistment in question is not a superior enlistment.
+    ENLISTMENT_NOT_SUPERIOR = 0xC0190033,
+
+    /// The file cannot be opened in a transaction because its identity depends on the outcome of an unresolved transaction.
+    FILE_IDENTITY_NOT_PERSISTENT = 0xC0190036,
+
+    /// The operation cannot be performed because another transaction is depending on this property not changing.
+    CANT_BREAK_TRANSACTIONAL_DEPENDENCY = 0xC0190037,
+
+    /// The operation would involve a single file with two transactional resource managers and is, therefore, not allowed.
+    CANT_CROSS_RM_BOUNDARY = 0xC0190038,
+
+    /// The $Txf directory must be empty for this operation to succeed.
+    TXF_DIR_NOT_EMPTY = 0xC0190039,
+
+    /// The operation would leave a transactional resource manager in an inconsistent state and is therefore not allowed.
+    INDOUBT_TRANSACTIONS_EXIST = 0xC019003A,
+
+    /// The operation could not be completed because the transaction manager does not have a log.
+    TM_VOLATILE = 0xC019003B,
+
+    /// A rollback could not be scheduled because a previously scheduled rollback has already executed or been queued for execution.
+    ROLLBACK_TIMER_EXPIRED = 0xC019003C,
+
+    /// The transactional metadata attribute on the file or directory %hs is corrupt and unreadable.
+    TXF_ATTRIBUTE_CORRUPT = 0xC019003D,
+
+    /// The encryption operation could not be completed because a transaction is active.
+    EFS_NOT_ALLOWED_IN_TRANSACTION = 0xC019003E,
+
+    /// This object is not allowed to be opened in a transaction.
+    TRANSACTIONAL_OPEN_NOT_ALLOWED = 0xC019003F,
+
+    /// Memory mapping (creating a mapped section) a remote file under a transaction is not supported.
+    TRANSACTED_MAPPING_UNSUPPORTED_REMOTE = 0xC0190040,
+
+    /// Promotion was required to allow the resource manager to enlist, but the transaction was set to disallow it.
+    TRANSACTION_REQUIRED_PROMOTION = 0xC0190043,
+
+    /// This file is open for modification in an unresolved transaction and can be opened for execute only by a transacted reader.
+    CANNOT_EXECUTE_FILE_IN_TRANSACTION = 0xC0190044,
+
+    /// The request to thaw frozen transactions was ignored because transactions were not previously frozen.
+    TRANSACTIONS_NOT_FROZEN = 0xC0190045,
+
+    /// Transactions cannot be frozen because a freeze is already in progress.
+    TRANSACTION_FREEZE_IN_PROGRESS = 0xC0190046,
+
+    /// The target volume is not a snapshot volume.
+    /// This operation is valid only on a volume mounted as a snapshot.
+    NOT_SNAPSHOT_VOLUME = 0xC0190047,
+
+    /// The savepoint operation failed because files are open on the transaction, which is not permitted.
+    NO_SAVEPOINT_WITH_OPEN_FILES = 0xC0190048,
+
+    /// The sparse operation could not be completed because a transaction is active on the file.
+    SPARSE_NOT_ALLOWED_IN_TRANSACTION = 0xC0190049,
+
+    /// The call to create a transaction manager object failed because the Tm Identity that is stored in the log file does not match the Tm Identity that was passed in as an argument.
+    TM_IDENTITY_MISMATCH = 0xC019004A,
+
+    /// I/O was attempted on a section object that has been floated as a result of a transaction ending. There is no valid data.
+    FLOATED_SECTION = 0xC019004B,
+
+    /// The transactional resource manager cannot currently accept transacted work due to a transient condition, such as low resources.
+    CANNOT_ACCEPT_TRANSACTED_WORK = 0xC019004C,
+
+    /// The transactional resource manager had too many transactions outstanding that could not be aborted.
+    /// The transactional resource manager has been shut down.
+    CANNOT_ABORT_TRANSACTIONS = 0xC019004D,
+
+    /// The specified transaction was unable to be opened because it was not found.
+    TRANSACTION_NOT_FOUND = 0xC019004E,
+
+    /// The specified resource manager was unable to be opened because it was not found.
+    RESOURCEMANAGER_NOT_FOUND = 0xC019004F,
+
+    /// The specified enlistment was unable to be opened because it was not found.
+    ENLISTMENT_NOT_FOUND = 0xC0190050,
+
+    /// The specified transaction manager was unable to be opened because it was not found.
+    TRANSACTIONMANAGER_NOT_FOUND = 0xC0190051,
+
+    /// The specified resource manager was unable to create an enlistment because its associated transaction manager is not online.
+    TRANSACTIONMANAGER_NOT_ONLINE = 0xC0190052,
+
+    /// The specified transaction manager was unable to create the objects contained in its log file in the Ob namespace.
+    /// Therefore, the transaction manager was unable to recover.
+    TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION = 0xC0190053,
+
+    /// 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 as a superior.
+    TRANSACTION_NOT_ROOT = 0xC0190054,
+
+    /// Because the associated transaction manager or resource manager has been closed, the handle is no longer valid.
+    TRANSACTION_OBJECT_EXPIRED = 0xC0190055,
+
+    /// The compression operation could not be completed because a transaction is active on the file.
+    COMPRESSION_NOT_ALLOWED_IN_TRANSACTION = 0xC0190056,
+
+    /// 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.
+    TRANSACTION_RESPONSE_NOT_ENLISTED = 0xC0190057,
+
+    /// The specified operation could not be performed because the record to be logged was too long.
+    /// This can occur because either there are too many enlistments on this transaction or the combined RecoveryInformation being logged on behalf of those enlistments is too long.
+    TRANSACTION_RECORD_TOO_LONG = 0xC0190058,
+
+    /// The link-tracking operation could not be completed because a transaction is active.
+    NO_LINK_TRACKING_IN_TRANSACTION = 0xC0190059,
+
+    /// This operation cannot be performed in a transaction.
+    OPERATION_NOT_SUPPORTED_IN_TRANSACTION = 0xC019005A,
+
+    /// The kernel transaction manager had to abort or forget the transaction because it blocked forward progress.
+    TRANSACTION_INTEGRITY_VIOLATED = 0xC019005B,
+
+    /// The handle is no longer properly associated with its transaction.
+    ///  It might have been opened in a transactional resource manager that was subsequently forced to restart.  Please close the handle and open a new one.
+    EXPIRED_HANDLE = 0xC0190060,
+
+    /// The specified operation could not be performed because the resource manager is not enlisted in the transaction.
+    TRANSACTION_NOT_ENLISTED = 0xC0190061,
+
+    /// The log service found an invalid log sector.
+    LOG_SECTOR_INVALID = 0xC01A0001,
+
+    /// The log service encountered a log sector with invalid block parity.
+    LOG_SECTOR_PARITY_INVALID = 0xC01A0002,
+
+    /// The log service encountered a remapped log sector.
+    LOG_SECTOR_REMAPPED = 0xC01A0003,
+
+    /// The log service encountered a partial or incomplete log block.
+    LOG_BLOCK_INCOMPLETE = 0xC01A0004,
+
+    /// The log service encountered an attempt to access data outside the active log range.
+    LOG_INVALID_RANGE = 0xC01A0005,
+
+    /// The log service user-log marshaling buffers are exhausted.
+    LOG_BLOCKS_EXHAUSTED = 0xC01A0006,
+
+    /// The log service encountered an attempt to read from a marshaling area with an invalid read context.
+    LOG_READ_CONTEXT_INVALID = 0xC01A0007,
+
+    /// The log service encountered an invalid log restart area.
+    LOG_RESTART_INVALID = 0xC01A0008,
+
+    /// The log service encountered an invalid log block version.
+    LOG_BLOCK_VERSION = 0xC01A0009,
+
+    /// The log service encountered an invalid log block.
+    LOG_BLOCK_INVALID = 0xC01A000A,
+
+    /// The log service encountered an attempt to read the log with an invalid read mode.
+    LOG_READ_MODE_INVALID = 0xC01A000B,
+
+    /// The log service encountered a corrupted metadata file.
+    LOG_METADATA_CORRUPT = 0xC01A000D,
+
+    /// The log service encountered a metadata file that could not be created by the log file system.
+    LOG_METADATA_INVALID = 0xC01A000E,
+
+    /// The log service encountered a metadata file with inconsistent data.
+    LOG_METADATA_INCONSISTENT = 0xC01A000F,
+
+    /// The log service encountered an attempt to erroneously allocate or dispose reservation space.
+    LOG_RESERVATION_INVALID = 0xC01A0010,
+
+    /// The log service cannot delete the log file or the file system container.
+    LOG_CANT_DELETE = 0xC01A0011,
+
+    /// The log service has reached the maximum allowable containers allocated to a log file.
+    LOG_CONTAINER_LIMIT_EXCEEDED = 0xC01A0012,
+
+    /// The log service has attempted to read or write backward past the start of the log.
+    LOG_START_OF_LOG = 0xC01A0013,
+
+    /// The log policy could not be installed because a policy of the same type is already present.
+    LOG_POLICY_ALREADY_INSTALLED = 0xC01A0014,
+
+    /// The log policy in question was not installed at the time of the request.
+    LOG_POLICY_NOT_INSTALLED = 0xC01A0015,
+
+    /// The installed set of policies on the log is invalid.
+    LOG_POLICY_INVALID = 0xC01A0016,
+
+    /// A policy on the log in question prevented the operation from completing.
+    LOG_POLICY_CONFLICT = 0xC01A0017,
+
+    /// The log space cannot be reclaimed because the log is pinned by the archive tail.
+    LOG_PINNED_ARCHIVE_TAIL = 0xC01A0018,
+
+    /// The log record is not a record in the log file.
+    LOG_RECORD_NONEXISTENT = 0xC01A0019,
+
+    /// The number of reserved log records or the adjustment of the number of reserved log records is invalid.
+    LOG_RECORDS_RESERVED_INVALID = 0xC01A001A,
+
+    /// The reserved log space or the adjustment of the log space is invalid.
+    LOG_SPACE_RESERVED_INVALID = 0xC01A001B,
+
+    /// A new or existing archive tail or the base of the active log is invalid.
+    LOG_TAIL_INVALID = 0xC01A001C,
+
+    /// The log space is exhausted.
+    LOG_FULL = 0xC01A001D,
+
+    /// The log is multiplexed; no direct writes to the physical log are allowed.
+    LOG_MULTIPLEXED = 0xC01A001E,
+
+    /// The operation failed because the log is dedicated.
+    LOG_DEDICATED = 0xC01A001F,
+
+    /// The operation requires an archive context.
+    LOG_ARCHIVE_NOT_IN_PROGRESS = 0xC01A0020,
+
+    /// Log archival is in progress.
+    LOG_ARCHIVE_IN_PROGRESS = 0xC01A0021,
+
+    /// The operation requires a nonephemeral log, but the log is ephemeral.
+    LOG_EPHEMERAL = 0xC01A0022,
+
+    /// The log must have at least two containers before it can be read from or written to.
+    LOG_NOT_ENOUGH_CONTAINERS = 0xC01A0023,
+
+    /// A log client has already registered on the stream.
+    LOG_CLIENT_ALREADY_REGISTERED = 0xC01A0024,
+
+    /// A log client has not been registered on the stream.
+    LOG_CLIENT_NOT_REGISTERED = 0xC01A0025,
+
+    /// A request has already been made to handle the log full condition.
+    LOG_FULL_HANDLER_IN_PROGRESS = 0xC01A0026,
+
+    /// The log service encountered an error when attempting to read from a log container.
+    LOG_CONTAINER_READ_FAILED = 0xC01A0027,
+
+    /// The log service encountered an error when attempting to write to a log container.
+    LOG_CONTAINER_WRITE_FAILED = 0xC01A0028,
+
+    /// The log service encountered an error when attempting to open a log container.
+    LOG_CONTAINER_OPEN_FAILED = 0xC01A0029,
+
+    /// The log service encountered an invalid container state when attempting a requested action.
+    LOG_CONTAINER_STATE_INVALID = 0xC01A002A,
+
+    /// The log service is not in the correct state to perform a requested action.
+    LOG_STATE_INVALID = 0xC01A002B,
+
+    /// The log space cannot be reclaimed because the log is pinned.
+    LOG_PINNED = 0xC01A002C,
+
+    /// The log metadata flush failed.
+    LOG_METADATA_FLUSH_FAILED = 0xC01A002D,
+
+    /// Security on the log and its containers is inconsistent.
+    LOG_INCONSISTENT_SECURITY = 0xC01A002E,
+
+    /// Records were appended to the log or reservation changes were made, but the log could not be flushed.
+    LOG_APPENDED_FLUSH_FAILED = 0xC01A002F,
+
+    /// The log is pinned due to reservation consuming most of the log space.
+    /// Free some reserved records to make space available.
+    LOG_PINNED_RESERVATION = 0xC01A0030,
+
+    /// {Display Driver Stopped Responding} The %hs display driver has stopped working normally.
+    /// Save your work and reboot the system to restore full display functionality.
+    /// The next time you reboot the computer, a dialog box will allow you to upload data about this failure to Microsoft.
+    VIDEO_HUNG_DISPLAY_DRIVER_THREAD = 0xC01B00EA,
+
+    /// A handler was not defined by the filter for this operation.
+    FLT_NO_HANDLER_DEFINED = 0xC01C0001,
+
+    /// A context is already defined for this object.
+    FLT_CONTEXT_ALREADY_DEFINED = 0xC01C0002,
+
+    /// Asynchronous requests are not valid for this operation.
+    FLT_INVALID_ASYNCHRONOUS_REQUEST = 0xC01C0003,
+
+    /// This is an internal error code used by the filter manager to determine if a fast I/O operation should be forced down the input/output request packet (IRP) path. Minifilters should never return this value.
+    FLT_DISALLOW_FAST_IO = 0xC01C0004,
+
+    /// An invalid name request was made.
+    /// The name requested cannot be retrieved at this time.
+    FLT_INVALID_NAME_REQUEST = 0xC01C0005,
+
+    /// Posting this operation to a worker thread for further processing is not safe at this time because it could lead to a system deadlock.
+    FLT_NOT_SAFE_TO_POST_OPERATION = 0xC01C0006,
+
+    /// The Filter Manager was not initialized when a filter tried to register.
+    /// Make sure that the Filter Manager is loaded as a driver.
+    FLT_NOT_INITIALIZED = 0xC01C0007,
+
+    /// The filter is not ready for attachment to volumes because it has not finished initializing (FltStartFiltering has not been called).
+    FLT_FILTER_NOT_READY = 0xC01C0008,
+
+    /// The filter must clean up any operation-specific context at this time because it is being removed from the system before the operation is completed by the lower drivers.
+    FLT_POST_OPERATION_CLEANUP = 0xC01C0009,
+
+    /// The Filter Manager had an internal error from which it cannot recover; therefore, the operation has failed.
+    /// This is usually the result of a filter returning an invalid value from a pre-operation callback.
+    FLT_INTERNAL_ERROR = 0xC01C000A,
+
+    /// The object specified for this action is in the process of being deleted; therefore, the action requested cannot be completed at this time.
+    FLT_DELETING_OBJECT = 0xC01C000B,
+
+    /// A nonpaged pool must be used for this type of context.
+    FLT_MUST_BE_NONPAGED_POOL = 0xC01C000C,
+
+    /// A duplicate handler definition has been provided for an operation.
+    FLT_DUPLICATE_ENTRY = 0xC01C000D,
+
+    /// The callback data queue has been disabled.
+    FLT_CBDQ_DISABLED = 0xC01C000E,
+
+    /// Do not attach the filter to the volume at this time.
+    FLT_DO_NOT_ATTACH = 0xC01C000F,
+
+    /// Do not detach the filter from the volume at this time.
+    FLT_DO_NOT_DETACH = 0xC01C0010,
+
+    /// An instance already exists at this altitude on the volume specified.
+    FLT_INSTANCE_ALTITUDE_COLLISION = 0xC01C0011,
+
+    /// An instance already exists with this name on the volume specified.
+    FLT_INSTANCE_NAME_COLLISION = 0xC01C0012,
+
+    /// The system could not find the filter specified.
+    FLT_FILTER_NOT_FOUND = 0xC01C0013,
+
+    /// The system could not find the volume specified.
+    FLT_VOLUME_NOT_FOUND = 0xC01C0014,
+
+    /// The system could not find the instance specified.
+    FLT_INSTANCE_NOT_FOUND = 0xC01C0015,
+
+    /// No registered context allocation definition was found for the given request.
+    FLT_CONTEXT_ALLOCATION_NOT_FOUND = 0xC01C0016,
+
+    /// An invalid parameter was specified during context registration.
+    FLT_INVALID_CONTEXT_REGISTRATION = 0xC01C0017,
+
+    /// The name requested was not found in the Filter Manager name cache and could not be retrieved from the file system.
+    FLT_NAME_CACHE_MISS = 0xC01C0018,
+
+    /// The requested device object does not exist for the given volume.
+    FLT_NO_DEVICE_OBJECT = 0xC01C0019,
+
+    /// The specified volume is already mounted.
+    FLT_VOLUME_ALREADY_MOUNTED = 0xC01C001A,
+
+    /// The specified transaction context is already enlisted in a transaction.
+    FLT_ALREADY_ENLISTED = 0xC01C001B,
+
+    /// The specified context is already attached to another object.
+    FLT_CONTEXT_ALREADY_LINKED = 0xC01C001C,
+
+    /// No waiter is present for the filter's reply to this message.
+    FLT_NO_WAITER_FOR_REPLY = 0xC01C0020,
+
+    /// A monitor descriptor could not be obtained.
+    MONITOR_NO_DESCRIPTOR = 0xC01D0001,
+
+    /// This release does not support the format of the obtained monitor descriptor.
+    MONITOR_UNKNOWN_DESCRIPTOR_FORMAT = 0xC01D0002,
+
+    /// The checksum of the obtained monitor descriptor is invalid.
+    MONITOR_INVALID_DESCRIPTOR_CHECKSUM = 0xC01D0003,
+
+    /// The monitor descriptor contains an invalid standard timing block.
+    MONITOR_INVALID_STANDARD_TIMING_BLOCK = 0xC01D0004,
+
+    /// WMI data-block registration failed for one of the MSMonitorClass WMI subclasses.
+    MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED = 0xC01D0005,
+
+    /// The provided monitor descriptor block is either corrupted or does not contain the monitor's detailed serial number.
+    MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK = 0xC01D0006,
+
+    /// The provided monitor descriptor block is either corrupted or does not contain the monitor's user-friendly name.
+    MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK = 0xC01D0007,
+
+    /// There is no monitor descriptor data at the specified (offset or size) region.
+    MONITOR_NO_MORE_DESCRIPTOR_DATA = 0xC01D0008,
+
+    /// The monitor descriptor contains an invalid detailed timing block.
+    MONITOR_INVALID_DETAILED_TIMING_BLOCK = 0xC01D0009,
+
+    /// Monitor descriptor contains invalid manufacture date.
+    MONITOR_INVALID_MANUFACTURE_DATE = 0xC01D000A,
+
+    /// Exclusive mode ownership is needed to create an unmanaged primary allocation.
+    GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER = 0xC01E0000,
+
+    /// The driver needs more DMA buffer space to complete the requested operation.
+    GRAPHICS_INSUFFICIENT_DMA_BUFFER = 0xC01E0001,
+
+    /// The specified display adapter handle is invalid.
+    GRAPHICS_INVALID_DISPLAY_ADAPTER = 0xC01E0002,
+
+    /// The specified display adapter and all of its state have been reset.
+    GRAPHICS_ADAPTER_WAS_RESET = 0xC01E0003,
+
+    /// The driver stack does not match the expected driver model.
+    GRAPHICS_INVALID_DRIVER_MODEL = 0xC01E0004,
+
+    /// Present happened but ended up into the changed desktop mode.
+    GRAPHICS_PRESENT_MODE_CHANGED = 0xC01E0005,
+
+    /// Nothing to present due to desktop occlusion.
+    GRAPHICS_PRESENT_OCCLUDED = 0xC01E0006,
+
+    /// Not able to present due to denial of desktop access.
+    GRAPHICS_PRESENT_DENIED = 0xC01E0007,
+
+    /// Not able to present with color conversion.
+    GRAPHICS_CANNOTCOLORCONVERT = 0xC01E0008,
+
+    /// Present redirection is disabled (desktop windowing management subsystem is off).
+    GRAPHICS_PRESENT_REDIRECTION_DISABLED = 0xC01E000B,
+
+    /// Previous exclusive VidPn source owner has released its ownership
+    GRAPHICS_PRESENT_UNOCCLUDED = 0xC01E000C,
+
+    /// Not enough video memory is available to complete the operation.
+    GRAPHICS_NO_VIDEO_MEMORY = 0xC01E0100,
+
+    /// Could not probe and lock the underlying memory of an allocation.
+    GRAPHICS_CANT_LOCK_MEMORY = 0xC01E0101,
+
+    /// The allocation is currently busy.
+    GRAPHICS_ALLOCATION_BUSY = 0xC01E0102,
+
+    /// An object being referenced has already reached the maximum reference count and cannot be referenced further.
+    GRAPHICS_TOO_MANY_REFERENCES = 0xC01E0103,
+
+    /// A problem could not be solved due to an existing condition. Try again later.
+    GRAPHICS_TRY_AGAIN_LATER = 0xC01E0104,
+
+    /// A problem could not be solved due to an existing condition. Try again now.
+    GRAPHICS_TRY_AGAIN_NOW = 0xC01E0105,
+
+    /// The allocation is invalid.
+    GRAPHICS_ALLOCATION_INVALID = 0xC01E0106,
+
+    /// No more unswizzling apertures are currently available.
+    GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE = 0xC01E0107,
+
+    /// The current allocation cannot be unswizzled by an aperture.
+    GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED = 0xC01E0108,
+
+    /// The request failed because a pinned allocation cannot be evicted.
+    GRAPHICS_CANT_EVICT_PINNED_ALLOCATION = 0xC01E0109,
+
+    /// The allocation cannot be used from its current segment location for the specified operation.
+    GRAPHICS_INVALID_ALLOCATION_USAGE = 0xC01E0110,
+
+    /// A locked allocation cannot be used in the current command buffer.
+    GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION = 0xC01E0111,
+
+    /// The allocation being referenced has been closed permanently.
+    GRAPHICS_ALLOCATION_CLOSED = 0xC01E0112,
+
+    /// An invalid allocation instance is being referenced.
+    GRAPHICS_INVALID_ALLOCATION_INSTANCE = 0xC01E0113,
+
+    /// An invalid allocation handle is being referenced.
+    GRAPHICS_INVALID_ALLOCATION_HANDLE = 0xC01E0114,
+
+    /// The allocation being referenced does not belong to the current device.
+    GRAPHICS_WRONG_ALLOCATION_DEVICE = 0xC01E0115,
+
+    /// The specified allocation lost its content.
+    GRAPHICS_ALLOCATION_CONTENT_LOST = 0xC01E0116,
+
+    /// A GPU exception was detected on the given device. The device cannot be scheduled.
+    GRAPHICS_GPU_EXCEPTION_ON_DEVICE = 0xC01E0200,
+
+    /// The specified VidPN topology is invalid.
+    GRAPHICS_INVALID_VIDPN_TOPOLOGY = 0xC01E0300,
+
+    /// The specified VidPN topology is valid but is not supported by this model of the display adapter.
+    GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED = 0xC01E0301,
+
+    /// The specified VidPN topology is valid but is not currently supported by the display adapter due to allocation of its resources.
+    GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED = 0xC01E0302,
+
+    /// The specified VidPN handle is invalid.
+    GRAPHICS_INVALID_VIDPN = 0xC01E0303,
+
+    /// The specified video present source is invalid.
+    GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE = 0xC01E0304,
+
+    /// The specified video present target is invalid.
+    GRAPHICS_INVALID_VIDEO_PRESENT_TARGET = 0xC01E0305,
+
+    /// The specified VidPN modality is not supported (for example, at least two of the pinned modes are not co-functional).
+    GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED = 0xC01E0306,
+
+    /// The specified VidPN source mode set is invalid.
+    GRAPHICS_INVALID_VIDPN_SOURCEMODESET = 0xC01E0308,
+
+    /// The specified VidPN target mode set is invalid.
+    GRAPHICS_INVALID_VIDPN_TARGETMODESET = 0xC01E0309,
+
+    /// The specified video signal frequency is invalid.
+    GRAPHICS_INVALID_FREQUENCY = 0xC01E030A,
+
+    /// The specified video signal active region is invalid.
+    GRAPHICS_INVALID_ACTIVE_REGION = 0xC01E030B,
+
+    /// The specified video signal total region is invalid.
+    GRAPHICS_INVALID_TOTAL_REGION = 0xC01E030C,
+
+    /// The specified video present source mode is invalid.
+    GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE = 0xC01E0310,
+
+    /// The specified video present target mode is invalid.
+    GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE = 0xC01E0311,
+
+    /// The pinned mode must remain in the set on the VidPN's co-functional modality enumeration.
+    GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET = 0xC01E0312,
+
+    /// The specified video present path is already in the VidPN's topology.
+    GRAPHICS_PATH_ALREADY_IN_TOPOLOGY = 0xC01E0313,
+
+    /// The specified mode is already in the mode set.
+    GRAPHICS_MODE_ALREADY_IN_MODESET = 0xC01E0314,
+
+    /// The specified video present source set is invalid.
+    GRAPHICS_INVALID_VIDEOPRESENTSOURCESET = 0xC01E0315,
+
+    /// The specified video present target set is invalid.
+    GRAPHICS_INVALID_VIDEOPRESENTTARGETSET = 0xC01E0316,
+
+    /// The specified video present source is already in the video present source set.
+    GRAPHICS_SOURCE_ALREADY_IN_SET = 0xC01E0317,
+
+    /// The specified video present target is already in the video present target set.
+    GRAPHICS_TARGET_ALREADY_IN_SET = 0xC01E0318,
+
+    /// The specified VidPN present path is invalid.
+    GRAPHICS_INVALID_VIDPN_PRESENT_PATH = 0xC01E0319,
+
+    /// The miniport has no recommendation for augmenting the specified VidPN's topology.
+    GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY = 0xC01E031A,
+
+    /// The specified monitor frequency range set is invalid.
+    GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET = 0xC01E031B,
+
+    /// The specified monitor frequency range is invalid.
+    GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE = 0xC01E031C,
+
+    /// The specified frequency range is not in the specified monitor frequency range set.
+    GRAPHICS_FREQUENCYRANGE_NOT_IN_SET = 0xC01E031D,
+
+    /// The specified frequency range is already in the specified monitor frequency range set.
+    GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET = 0xC01E031F,
+
+    /// The specified mode set is stale. Reacquire the new mode set.
+    GRAPHICS_STALE_MODESET = 0xC01E0320,
+
+    /// The specified monitor source mode set is invalid.
+    GRAPHICS_INVALID_MONITOR_SOURCEMODESET = 0xC01E0321,
+
+    /// The specified monitor source mode is invalid.
+    GRAPHICS_INVALID_MONITOR_SOURCE_MODE = 0xC01E0322,
+
+    /// The miniport does not have a recommendation regarding the request to provide a functional VidPN given the current display adapter configuration.
+    GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN = 0xC01E0323,
+
+    /// The ID of the specified mode is being used by another mode in the set.
+    GRAPHICS_MODE_ID_MUST_BE_UNIQUE = 0xC01E0324,
+
+    /// The system failed to determine a mode that is supported by both the display adapter and the monitor connected to it.
+    GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION = 0xC01E0325,
+
+    /// The number of video present targets must be greater than or equal to the number of video present sources.
+    GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES = 0xC01E0326,
+
+    /// The specified present path is not in the VidPN's topology.
+    GRAPHICS_PATH_NOT_IN_TOPOLOGY = 0xC01E0327,
+
+    /// The display adapter must have at least one video present source.
+    GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE = 0xC01E0328,
+
+    /// The display adapter must have at least one video present target.
+    GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET = 0xC01E0329,
+
+    /// The specified monitor descriptor set is invalid.
+    GRAPHICS_INVALID_MONITORDESCRIPTORSET = 0xC01E032A,
+
+    /// The specified monitor descriptor is invalid.
+    GRAPHICS_INVALID_MONITORDESCRIPTOR = 0xC01E032B,
+
+    /// The specified descriptor is not in the specified monitor descriptor set.
+    GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET = 0xC01E032C,
+
+    /// The specified descriptor is already in the specified monitor descriptor set.
+    GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET = 0xC01E032D,
+
+    /// The ID of the specified monitor descriptor is being used by another descriptor in the set.
+    GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE = 0xC01E032E,
+
+    /// The specified video present target subset type is invalid.
+    GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE = 0xC01E032F,
+
+    /// Two or more of the specified resources are not related to each other, as defined by the interface semantics.
+    GRAPHICS_RESOURCES_NOT_RELATED = 0xC01E0330,
+
+    /// The ID of the specified video present source is being used by another source in the set.
+    GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE = 0xC01E0331,
+
+    /// The ID of the specified video present target is being used by another target in the set.
+    GRAPHICS_TARGET_ID_MUST_BE_UNIQUE = 0xC01E0332,
+
+    /// The specified VidPN source cannot be used because there is no available VidPN target to connect it to.
+    GRAPHICS_NO_AVAILABLE_VIDPN_TARGET = 0xC01E0333,
+
+    /// The newly arrived monitor could not be associated with a display adapter.
+    GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER = 0xC01E0334,
+
+    /// The particular display adapter does not have an associated VidPN manager.
+    GRAPHICS_NO_VIDPNMGR = 0xC01E0335,
+
+    /// The VidPN manager of the particular display adapter does not have an active VidPN.
+    GRAPHICS_NO_ACTIVE_VIDPN = 0xC01E0336,
+
+    /// The specified VidPN topology is stale; obtain the new topology.
+    GRAPHICS_STALE_VIDPN_TOPOLOGY = 0xC01E0337,
+
+    /// No monitor is connected on the specified video present target.
+    GRAPHICS_MONITOR_NOT_CONNECTED = 0xC01E0338,
+
+    /// The specified source is not part of the specified VidPN's topology.
+    GRAPHICS_SOURCE_NOT_IN_TOPOLOGY = 0xC01E0339,
+
+    /// The specified primary surface size is invalid.
+    GRAPHICS_INVALID_PRIMARYSURFACE_SIZE = 0xC01E033A,
+
+    /// The specified visible region size is invalid.
+    GRAPHICS_INVALID_VISIBLEREGION_SIZE = 0xC01E033B,
+
+    /// The specified stride is invalid.
+    GRAPHICS_INVALID_STRIDE = 0xC01E033C,
+
+    /// The specified pixel format is invalid.
+    GRAPHICS_INVALID_PIXELFORMAT = 0xC01E033D,
+
+    /// The specified color basis is invalid.
+    GRAPHICS_INVALID_COLORBASIS = 0xC01E033E,
+
+    /// The specified pixel value access mode is invalid.
+    GRAPHICS_INVALID_PIXELVALUEACCESSMODE = 0xC01E033F,
+
+    /// The specified target is not part of the specified VidPN's topology.
+    GRAPHICS_TARGET_NOT_IN_TOPOLOGY = 0xC01E0340,
+
+    /// Failed to acquire the display mode management interface.
+    GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT = 0xC01E0341,
+
+    /// The specified VidPN source is already owned by a DMM client and cannot be used until that client releases it.
+    GRAPHICS_VIDPN_SOURCE_IN_USE = 0xC01E0342,
+
+    /// The specified VidPN is active and cannot be accessed.
+    GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN = 0xC01E0343,
+
+    /// The specified VidPN's present path importance ordinal is invalid.
+    GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL = 0xC01E0344,
+
+    /// The specified VidPN's present path content geometry transformation is invalid.
+    GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION = 0xC01E0345,
+
+    /// The specified content geometry transformation is not supported on the respective VidPN present path.
+    GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED = 0xC01E0346,
+
+    /// The specified gamma ramp is invalid.
+    GRAPHICS_INVALID_GAMMA_RAMP = 0xC01E0347,
+
+    /// The specified gamma ramp is not supported on the respective VidPN present path.
+    GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED = 0xC01E0348,
+
+    /// Multisampling is not supported on the respective VidPN present path.
+    GRAPHICS_MULTISAMPLING_NOT_SUPPORTED = 0xC01E0349,
+
+    /// The specified mode is not in the specified mode set.
+    GRAPHICS_MODE_NOT_IN_MODESET = 0xC01E034A,
+
+    /// The specified VidPN topology recommendation reason is invalid.
+    GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON = 0xC01E034D,
+
+    /// The specified VidPN present path content type is invalid.
+    GRAPHICS_INVALID_PATH_CONTENT_TYPE = 0xC01E034E,
+
+    /// The specified VidPN present path copy protection type is invalid.
+    GRAPHICS_INVALID_COPYPROTECTION_TYPE = 0xC01E034F,
+
+    /// Only one unassigned mode set can exist at any one time for a particular VidPN source or target.
+    GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS = 0xC01E0350,
+
+    /// The specified scan line ordering type is invalid.
+    GRAPHICS_INVALID_SCANLINE_ORDERING = 0xC01E0352,
+
+    /// The topology changes are not allowed for the specified VidPN.
+    GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED = 0xC01E0353,
+
+    /// All available importance ordinals are being used in the specified topology.
+    GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS = 0xC01E0354,
+
+    /// The specified primary surface has a different private-format attribute than the current primary surface.
+    GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT = 0xC01E0355,
+
+    /// The specified mode-pruning algorithm is invalid.
+    GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM = 0xC01E0356,
+
+    /// The specified monitor-capability origin is invalid.
+    GRAPHICS_INVALID_MONITOR_CAPABILITY_ORIGIN = 0xC01E0357,
+
+    /// The specified monitor-frequency range constraint is invalid.
+    GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE_CONSTRAINT = 0xC01E0358,
+
+    /// The maximum supported number of present paths has been reached.
+    GRAPHICS_MAX_NUM_PATHS_REACHED = 0xC01E0359,
+
+    /// The miniport requested that augmentation be canceled for the specified source of the specified VidPN's topology.
+    GRAPHICS_CANCEL_VIDPN_TOPOLOGY_AUGMENTATION = 0xC01E035A,
+
+    /// The specified client type was not recognized.
+    GRAPHICS_INVALID_CLIENT_TYPE = 0xC01E035B,
+
+    /// The client VidPN is not set on this adapter (for example, no user mode-initiated mode changes have taken place on this adapter).
+    GRAPHICS_CLIENTVIDPN_NOT_SET = 0xC01E035C,
+
+    /// The specified display adapter child device already has an external device connected to it.
+    GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED = 0xC01E0400,
+
+    /// The display adapter child device does not support reporting a descriptor.
+    GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED = 0xC01E0401,
+
+    /// The display adapter is not linked to any other adapters.
+    GRAPHICS_NOT_A_LINKED_ADAPTER = 0xC01E0430,
+
+    /// The lead adapter in a linked configuration was not enumerated yet.
+    GRAPHICS_LEADLINK_NOT_ENUMERATED = 0xC01E0431,
+
+    /// Some chain adapters in a linked configuration have not yet been enumerated.
+    GRAPHICS_CHAINLINKS_NOT_ENUMERATED = 0xC01E0432,
+
+    /// The chain of linked adapters is not ready to start because of an unknown failure.
+    GRAPHICS_ADAPTER_CHAIN_NOT_READY = 0xC01E0433,
+
+    /// An attempt was made to start a lead link display adapter when the chain links had not yet started.
+    GRAPHICS_CHAINLINKS_NOT_STARTED = 0xC01E0434,
+
+    /// An attempt was made to turn on a lead link display adapter when the chain links were turned off.
+    GRAPHICS_CHAINLINKS_NOT_POWERED_ON = 0xC01E0435,
+
+    /// The adapter link was found in an inconsistent state.
+    /// Not all adapters are in an expected PNP/power state.
+    GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE = 0xC01E0436,
+
+    /// The driver trying to start is not the same as the driver for the posted display adapter.
+    GRAPHICS_NOT_POST_DEVICE_DRIVER = 0xC01E0438,
+
+    /// An operation is being attempted that requires the display adapter to be in a quiescent state.
+    GRAPHICS_ADAPTER_ACCESS_NOT_EXCLUDED = 0xC01E043B,
+
+    /// The driver does not support OPM.
+    GRAPHICS_OPM_NOT_SUPPORTED = 0xC01E0500,
+
+    /// The driver does not support COPP.
+    GRAPHICS_COPP_NOT_SUPPORTED = 0xC01E0501,
+
+    /// The driver does not support UAB.
+    GRAPHICS_UAB_NOT_SUPPORTED = 0xC01E0502,
+
+    /// The specified encrypted parameters are invalid.
+    GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS = 0xC01E0503,
+
+    /// An array passed to a function cannot hold all of the data that the function wants to put in it.
+    GRAPHICS_OPM_PARAMETER_ARRAY_TOO_SMALL = 0xC01E0504,
+
+    /// The GDI display device passed to this function does not have any active protected outputs.
+    GRAPHICS_OPM_NO_PROTECTED_OUTPUTS_EXIST = 0xC01E0505,
+
+    /// The PVP cannot find an actual GDI display device that corresponds to the passed-in GDI display device name.
+    GRAPHICS_PVP_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME = 0xC01E0506,
+
+    /// This function failed because the GDI display device passed to it was not attached to the Windows desktop.
+    GRAPHICS_PVP_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP = 0xC01E0507,
+
+    /// The PVP does not support mirroring display devices because they do not have any protected outputs.
+    GRAPHICS_PVP_MIRRORING_DEVICES_NOT_SUPPORTED = 0xC01E0508,
+
+    /// The function failed because an invalid pointer parameter was passed to it.
+    /// A pointer parameter is invalid if it is null, is not correctly aligned, or it points to an invalid address or a kernel mode address.
+    GRAPHICS_OPM_INVALID_POINTER = 0xC01E050A,
+
+    /// An internal error caused an operation to fail.
+    GRAPHICS_OPM_INTERNAL_ERROR = 0xC01E050B,
+
+    /// The function failed because the caller passed in an invalid OPM user-mode handle.
+    GRAPHICS_OPM_INVALID_HANDLE = 0xC01E050C,
+
+    /// This function failed because the GDI device passed to it did not have any monitors associated with it.
+    GRAPHICS_PVP_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE = 0xC01E050D,
+
+    /// A certificate could not be returned because the certificate buffer passed to the function was too small.
+    GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH = 0xC01E050E,
+
+    /// DxgkDdiOpmCreateProtectedOutput() could not create a protected output because the video present yarget is in spanning mode.
+    GRAPHICS_OPM_SPANNING_MODE_ENABLED = 0xC01E050F,
+
+    /// DxgkDdiOpmCreateProtectedOutput() could not create a protected output because the video present target is in theater mode.
+    GRAPHICS_OPM_THEATER_MODE_ENABLED = 0xC01E0510,
+
+    /// The function call failed because the display adapter's hardware functionality scan (HFS) failed to validate the graphics hardware.
+    GRAPHICS_PVP_HFS_FAILED = 0xC01E0511,
+
+    /// The HDCP SRM passed to this function did not comply with section 5 of the HDCP 1.1 specification.
+    GRAPHICS_OPM_INVALID_SRM = 0xC01E0512,
+
+    /// The protected output cannot enable the HDCP system because it does not support it.
+    GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP = 0xC01E0513,
+
+    /// The protected output cannot enable analog copy protection because it does not support it.
+    GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP = 0xC01E0514,
+
+    /// The protected output cannot enable the CGMS-A protection technology because it does not support it.
+    GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA = 0xC01E0515,
+
+    /// DxgkDdiOPMGetInformation() cannot return the version of the SRM being used because the application never successfully passed an SRM to the protected output.
+    GRAPHICS_OPM_HDCP_SRM_NEVER_SET = 0xC01E0516,
+
+    /// DxgkDdiOPMConfigureProtectedOutput() cannot enable the specified output protection technology because the output's screen resolution is too high.
+    GRAPHICS_OPM_RESOLUTION_TOO_HIGH = 0xC01E0517,
+
+    /// DxgkDdiOPMConfigureProtectedOutput() cannot enable HDCP because other physical outputs are using the display adapter's HDCP hardware.
+    GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE = 0xC01E0518,
+
+    /// The operating system asynchronously destroyed this OPM-protected output because the operating system state changed.
+    /// This error typically occurs because the monitor PDO associated with this protected output was removed or stopped, the protected output's session became a nonconsole session, or the protected output's desktop became inactive.
+    GRAPHICS_OPM_PROTECTED_OUTPUT_NO_LONGER_EXISTS = 0xC01E051A,
+
+    /// OPM functions cannot be called when a session is changing its type.
+    /// Three types of sessions currently exist: console, disconnected, and remote (RDP or ICA).
+    GRAPHICS_OPM_SESSION_TYPE_CHANGE_IN_PROGRESS = 0xC01E051B,
+
+    /// The DxgkDdiOPMGetCOPPCompatibleInformation, DxgkDdiOPMGetInformation, or DxgkDdiOPMConfigureProtectedOutput function failed.
+    /// This error is returned only if a protected output has OPM semantics.
+    /// DxgkDdiOPMGetCOPPCompatibleInformation always returns this error if a protected output has OPM semantics.
+    /// DxgkDdiOPMGetInformation returns this error code if the caller requested COPP-specific information.
+    /// DxgkDdiOPMConfigureProtectedOutput returns this error when the caller tries to use a COPP-specific command.
+    GRAPHICS_OPM_PROTECTED_OUTPUT_DOES_NOT_HAVE_COPP_SEMANTICS = 0xC01E051C,
+
+    /// The DxgkDdiOPMGetInformation and DxgkDdiOPMGetCOPPCompatibleInformation functions return this error code if the passed-in sequence number is not the expected sequence number or the passed-in OMAC value is invalid.
+    GRAPHICS_OPM_INVALID_INFORMATION_REQUEST = 0xC01E051D,
+
+    /// The function failed because an unexpected error occurred inside a display driver.
+    GRAPHICS_OPM_DRIVER_INTERNAL_ERROR = 0xC01E051E,
+
+    /// The DxgkDdiOPMGetCOPPCompatibleInformation, DxgkDdiOPMGetInformation, or DxgkDdiOPMConfigureProtectedOutput function failed.
+    /// This error is returned only if a protected output has COPP semantics.
+    /// DxgkDdiOPMGetCOPPCompatibleInformation returns this error code if the caller requested OPM-specific information.
+    /// DxgkDdiOPMGetInformation always returns this error if a protected output has COPP semantics.
+    /// DxgkDdiOPMConfigureProtectedOutput returns this error when the caller tries to use an OPM-specific command.
+    GRAPHICS_OPM_PROTECTED_OUTPUT_DOES_NOT_HAVE_OPM_SEMANTICS = 0xC01E051F,
+
+    /// The DxgkDdiOPMGetCOPPCompatibleInformation and DxgkDdiOPMConfigureProtectedOutput functions return this error if the display driver does not support the DXGKMDT_OPM_GET_ACP_AND_CGMSA_SIGNALING and DXGKMDT_OPM_SET_ACP_AND_CGMSA_SIGNALING GUIDs.
+    GRAPHICS_OPM_SIGNALING_NOT_SUPPORTED = 0xC01E0520,
+
+    /// The DxgkDdiOPMConfigureProtectedOutput function returns this error code if the passed-in sequence number is not the expected sequence number or the passed-in OMAC value is invalid.
+    GRAPHICS_OPM_INVALID_CONFIGURATION_REQUEST = 0xC01E0521,
+
+    /// The monitor connected to the specified video output does not have an I2C bus.
+    GRAPHICS_I2C_NOT_SUPPORTED = 0xC01E0580,
+
+    /// No device on the I2C bus has the specified address.
+    GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST = 0xC01E0581,
+
+    /// An error occurred while transmitting data to the device on the I2C bus.
+    GRAPHICS_I2C_ERROR_TRANSMITTING_DATA = 0xC01E0582,
+
+    /// An error occurred while receiving data from the device on the I2C bus.
+    GRAPHICS_I2C_ERROR_RECEIVING_DATA = 0xC01E0583,
+
+    /// The monitor does not support the specified VCP code.
+    GRAPHICS_DDCCI_VCP_NOT_SUPPORTED = 0xC01E0584,
+
+    /// The data received from the monitor is invalid.
+    GRAPHICS_DDCCI_INVALID_DATA = 0xC01E0585,
+
+    /// A function call failed because a monitor returned an invalid timing status byte when the operating system used the DDC/CI get timing report and timing message command to get a timing report from a monitor.
+    GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE = 0xC01E0586,
+
+    /// A 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.
+    GRAPHICS_DDCCI_INVALID_CAPABILITIES_STRING = 0xC01E0587,
+
+    /// An internal error caused an operation to fail.
+    GRAPHICS_MCA_INTERNAL_ERROR = 0xC01E0588,
+
+    /// An operation failed because a DDC/CI message had an invalid value in its command field.
+    GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND = 0xC01E0589,
+
+    /// This error occurred because a DDC/CI message had an invalid value in its length field.
+    GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH = 0xC01E058A,
+
+    /// This error occurred because the value in a DDC/CI message's checksum field did not match the message's computed checksum value.
+    /// This error implies that the data was corrupted while it was being transmitted from a monitor to a computer.
+    GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM = 0xC01E058B,
+
+    /// This function failed because an invalid monitor handle was passed to it.
+    GRAPHICS_INVALID_PHYSICAL_MONITOR_HANDLE = 0xC01E058C,
+
+    /// The operating system asynchronously destroyed the monitor that corresponds to this handle because the operating system's state changed.
+    /// This error typically occurs because the monitor PDO associated with this handle was removed or stopped, or a display mode change occurred.
+    /// A display mode change occurs when Windows sends a WM_DISPLAYCHANGE message to applications.
+    GRAPHICS_MONITOR_NO_LONGER_EXISTS = 0xC01E058D,
+
+    /// This function can be used only if a program is running in the local console session.
+    /// It cannot be used if a program is running on a remote desktop session or on a terminal server session.
+    GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED = 0xC01E05E0,
+
+    /// This function cannot find an actual GDI display device that corresponds to the specified GDI display device name.
+    GRAPHICS_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME = 0xC01E05E1,
+
+    /// The function failed because the specified GDI display device was not attached to the Windows desktop.
+    GRAPHICS_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP = 0xC01E05E2,
+
+    /// This function does not support GDI mirroring display devices because GDI mirroring display devices do not have any physical monitors associated with them.
+    GRAPHICS_MIRRORING_DEVICES_NOT_SUPPORTED = 0xC01E05E3,
+
+    /// The function failed because an invalid pointer parameter was passed to it.
+    /// A pointer parameter is invalid if it is null, is not correctly aligned, or points to an invalid address or to a kernel mode address.
+    GRAPHICS_INVALID_POINTER = 0xC01E05E4,
+
+    /// This function failed because the GDI device passed to it did not have a monitor associated with it.
+    GRAPHICS_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE = 0xC01E05E5,
+
+    /// An array passed to the function cannot hold all of the data that the function must copy into the array.
+    GRAPHICS_PARAMETER_ARRAY_TOO_SMALL = 0xC01E05E6,
+
+    /// An internal error caused an operation to fail.
+    GRAPHICS_INTERNAL_ERROR = 0xC01E05E7,
+
+    /// The function failed because the current session is changing its type.
+    /// This function cannot be called when the current session is changing its type.
+    /// Three types of sessions currently exist: console, disconnected, and remote (RDP or ICA).
+    GRAPHICS_SESSION_TYPE_CHANGE_IN_PROGRESS = 0xC01E05E8,
+
+    /// The volume must be unlocked before it can be used.
+    FVE_LOCKED_VOLUME = 0xC0210000,
+
+    /// The volume is fully decrypted and no key is available.
+    FVE_NOT_ENCRYPTED = 0xC0210001,
+
+    /// The control block for the encrypted volume is not valid.
+    FVE_BAD_INFORMATION = 0xC0210002,
+
+    /// Not enough free space remains on the volume to allow encryption.
+    FVE_TOO_SMALL = 0xC0210003,
+
+    /// The partition cannot be encrypted because the file system is not supported.
+    FVE_FAILED_WRONG_FS = 0xC0210004,
+
+    /// The file system is inconsistent. Run the Check Disk utility.
+    FVE_FAILED_BAD_FS = 0xC0210005,
+
+    /// The file system does not extend to the end of the volume.
+    FVE_FS_NOT_EXTENDED = 0xC0210006,
+
+    /// This operation cannot be performed while a file system is mounted on the volume.
+    FVE_FS_MOUNTED = 0xC0210007,
+
+    /// BitLocker Drive Encryption is not included with this version of Windows.
+    FVE_NO_LICENSE = 0xC0210008,
+
+    /// The requested action was denied by the FVE control engine.
+    FVE_ACTION_NOT_ALLOWED = 0xC0210009,
+
+    /// The data supplied is malformed.
+    FVE_BAD_DATA = 0xC021000A,
+
+    /// The volume is not bound to the system.
+    FVE_VOLUME_NOT_BOUND = 0xC021000B,
+
+    /// The volume specified is not a data volume.
+    FVE_NOT_DATA_VOLUME = 0xC021000C,
+
+    /// A read operation failed while converting the volume.
+    FVE_CONV_READ_ERROR = 0xC021000D,
+
+    /// A write operation failed while converting the volume.
+    FVE_CONV_WRITE_ERROR = 0xC021000E,
+
+    /// The control block for the encrypted volume was updated by another thread. Try again.
+    FVE_OVERLAPPED_UPDATE = 0xC021000F,
+
+    /// The volume encryption algorithm cannot be used on this sector size.
+    FVE_FAILED_SECTOR_SIZE = 0xC0210010,
+
+    /// BitLocker recovery authentication failed.
+    FVE_FAILED_AUTHENTICATION = 0xC0210011,
+
+    /// The volume specified is not the boot operating system volume.
+    FVE_NOT_OS_VOLUME = 0xC0210012,
+
+    /// The BitLocker startup key or recovery password could not be read from external media.
+    FVE_KEYFILE_NOT_FOUND = 0xC0210013,
+
+    /// The BitLocker startup key or recovery password file is corrupt or invalid.
+    FVE_KEYFILE_INVALID = 0xC0210014,
+
+    /// The BitLocker encryption key could not be obtained from the startup key or the recovery password.
+    FVE_KEYFILE_NO_VMK = 0xC0210015,
+
+    /// The TPM is disabled.
+    FVE_TPM_DISABLED = 0xC0210016,
+
+    /// The authorization data for the SRK of the TPM is not zero.
+    FVE_TPM_SRK_AUTH_NOT_ZERO = 0xC0210017,
+
+    /// The system boot information changed or the TPM locked out access to BitLocker encryption keys until the computer is restarted.
+    FVE_TPM_INVALID_PCR = 0xC0210018,
+
+    /// The BitLocker encryption key could not be obtained from the TPM.
+    FVE_TPM_NO_VMK = 0xC0210019,
+
+    /// The BitLocker encryption key could not be obtained from the TPM and PIN.
+    FVE_PIN_INVALID = 0xC021001A,
+
+    /// A boot application hash does not match the hash computed when BitLocker was turned on.
+    FVE_AUTH_INVALID_APPLICATION = 0xC021001B,
+
+    /// The Boot Configuration Data (BCD) settings are not supported or have changed because BitLocker was enabled.
+    FVE_AUTH_INVALID_CONFIG = 0xC021001C,
+
+    /// Boot debugging is enabled. Run Windows Boot Configuration Data Store Editor (bcdedit.exe) to turn it off.
+    FVE_DEBUGGER_ENABLED = 0xC021001D,
+
+    /// The BitLocker encryption key could not be obtained.
+    FVE_DRY_RUN_FAILED = 0xC021001E,
+
+    /// The metadata disk region pointer is incorrect.
+    FVE_BAD_METADATA_POINTER = 0xC021001F,
+
+    /// The backup copy of the metadata is out of date.
+    FVE_OLD_METADATA_COPY = 0xC0210020,
+
+    /// No action was taken because a system restart is required.
+    FVE_REBOOT_REQUIRED = 0xC0210021,
+
+    /// No action was taken because BitLocker Drive Encryption is in RAW access mode.
+    FVE_RAW_ACCESS = 0xC0210022,
+
+    /// BitLocker Drive Encryption cannot enter RAW access mode for this volume.
+    FVE_RAW_BLOCKED = 0xC0210023,
+
+    /// This feature of BitLocker Drive Encryption is not included with this version of Windows.
+    FVE_NO_FEATURE_LICENSE = 0xC0210026,
+
+    /// Group policy does not permit turning off BitLocker Drive Encryption on roaming data volumes.
+    FVE_POLICY_USER_DISABLE_RDV_NOT_ALLOWED = 0xC0210027,
+
+    /// Bitlocker Drive Encryption failed to recover from aborted conversion.
+    /// This could be due to either all conversion logs being corrupted or the media being write-protected.
+    FVE_CONV_RECOVERY_FAILED = 0xC0210028,
+
+    /// The requested virtualization size is too big.
+    FVE_VIRTUALIZED_SPACE_TOO_BIG = 0xC0210029,
+
+    /// The drive is too small to be protected using BitLocker Drive Encryption.
+    FVE_VOLUME_TOO_SMALL = 0xC0210030,
+
+    /// The callout does not exist.
+    FWP_CALLOUT_NOT_FOUND = 0xC0220001,
+
+    /// The filter condition does not exist.
+    FWP_CONDITION_NOT_FOUND = 0xC0220002,
+
+    /// The filter does not exist.
+    FWP_FILTER_NOT_FOUND = 0xC0220003,
+
+    /// The layer does not exist.
+    FWP_LAYER_NOT_FOUND = 0xC0220004,
+
+    /// The provider does not exist.
+    FWP_PROVIDER_NOT_FOUND = 0xC0220005,
+
+    /// The provider context does not exist.
+    FWP_PROVIDER_CONTEXT_NOT_FOUND = 0xC0220006,
+
+    /// The sublayer does not exist.
+    FWP_SUBLAYER_NOT_FOUND = 0xC0220007,
+
+    /// The object does not exist.
+    FWP_NOT_FOUND = 0xC0220008,
+
+    /// An object with that GUID or LUID already exists.
+    FWP_ALREADY_EXISTS = 0xC0220009,
+
+    /// The object is referenced by other objects and cannot be deleted.
+    FWP_IN_USE = 0xC022000A,
+
+    /// The call is not allowed from within a dynamic session.
+    FWP_DYNAMIC_SESSION_IN_PROGRESS = 0xC022000B,
+
+    /// The call was made from the wrong session and cannot be completed.
+    FWP_WRONG_SESSION = 0xC022000C,
+
+    /// The call must be made from within an explicit transaction.
+    FWP_NO_TXN_IN_PROGRESS = 0xC022000D,
+
+    /// The call is not allowed from within an explicit transaction.
+    FWP_TXN_IN_PROGRESS = 0xC022000E,
+
+    /// The explicit transaction has been forcibly canceled.
+    FWP_TXN_ABORTED = 0xC022000F,
+
+    /// The session has been canceled.
+    FWP_SESSION_ABORTED = 0xC0220010,
+
+    /// The call is not allowed from within a read-only transaction.
+    FWP_INCOMPATIBLE_TXN = 0xC0220011,
+
+    /// The call timed out while waiting to acquire the transaction lock.
+    FWP_TIMEOUT = 0xC0220012,
+
+    /// The collection of network diagnostic events is disabled.
+    FWP_NET_EVENTS_DISABLED = 0xC0220013,
+
+    /// The operation is not supported by the specified layer.
+    FWP_INCOMPATIBLE_LAYER = 0xC0220014,
+
+    /// The call is allowed for kernel-mode callers only.
+    FWP_KM_CLIENTS_ONLY = 0xC0220015,
+
+    /// The call tried to associate two objects with incompatible lifetimes.
+    FWP_LIFETIME_MISMATCH = 0xC0220016,
+
+    /// The object is built-in and cannot be deleted.
+    FWP_BUILTIN_OBJECT = 0xC0220017,
+
+    /// The maximum number of boot-time filters has been reached.
+    FWP_TOO_MANY_BOOTTIME_FILTERS = 0xC0220018,
+
+    /// The maximum number of callouts has been reached.
+    FWP_TOO_MANY_CALLOUTS = 0xC0220018,
+
+    /// A notification could not be delivered because a message queue has reached maximum capacity.
+    FWP_NOTIFICATION_DROPPED = 0xC0220019,
+
+    /// The traffic parameters do not match those for the security association context.
+    FWP_TRAFFIC_MISMATCH = 0xC022001A,
+
+    /// The call is not allowed for the current security association state.
+    FWP_INCOMPATIBLE_SA_STATE = 0xC022001B,
+
+    /// A required pointer is null.
+    FWP_NULL_POINTER = 0xC022001C,
+
+    /// An enumerator is not valid.
+    FWP_INVALID_ENUMERATOR = 0xC022001D,
+
+    /// The flags field contains an invalid value.
+    FWP_INVALID_FLAGS = 0xC022001E,
+
+    /// A network mask is not valid.
+    FWP_INVALID_NET_MASK = 0xC022001F,
+
+    /// An FWP_RANGE is not valid.
+    FWP_INVALID_RANGE = 0xC0220020,
+
+    /// The time interval is not valid.
+    FWP_INVALID_INTERVAL = 0xC0220021,
+
+    /// An array that must contain at least one element has a zero length.
+    FWP_ZERO_LENGTH_ARRAY = 0xC0220022,
+
+    /// The displayData.name field cannot be null.
+    FWP_NULL_DISPLAY_NAME = 0xC0220023,
+
+    /// The action type is not one of the allowed action types for a filter.
+    FWP_INVALID_ACTION_TYPE = 0xC0220024,
+
+    /// The filter weight is not valid.
+    FWP_INVALID_WEIGHT = 0xC0220025,
+
+    /// A filter condition contains a match type that is not compatible with the operands.
+    FWP_MATCH_TYPE_MISMATCH = 0xC0220026,
+
+    /// An FWP_VALUE or FWPM_CONDITION_VALUE is of the wrong type.
+    FWP_TYPE_MISMATCH = 0xC0220027,
+
+    /// An integer value is outside the allowed range.
+    FWP_OUT_OF_BOUNDS = 0xC0220028,
+
+    /// A reserved field is nonzero.
+    FWP_RESERVED = 0xC0220029,
+
+    /// A filter cannot contain multiple conditions operating on a single field.
+    FWP_DUPLICATE_CONDITION = 0xC022002A,
+
+    /// A policy cannot contain the same keying module more than once.
+    FWP_DUPLICATE_KEYMOD = 0xC022002B,
+
+    /// The action type is not compatible with the layer.
+    FWP_ACTION_INCOMPATIBLE_WITH_LAYER = 0xC022002C,
+
+    /// The action type is not compatible with the sublayer.
+    FWP_ACTION_INCOMPATIBLE_WITH_SUBLAYER = 0xC022002D,
+
+    /// The raw context or the provider context is not compatible with the layer.
+    FWP_CONTEXT_INCOMPATIBLE_WITH_LAYER = 0xC022002E,
+
+    /// The raw context or the provider context is not compatible with the callout.
+    FWP_CONTEXT_INCOMPATIBLE_WITH_CALLOUT = 0xC022002F,
+
+    /// The authentication method is not compatible with the policy type.
+    FWP_INCOMPATIBLE_AUTH_METHOD = 0xC0220030,
+
+    /// The Diffie-Hellman group is not compatible with the policy type.
+    FWP_INCOMPATIBLE_DH_GROUP = 0xC0220031,
+
+    /// An IKE policy cannot contain an Extended Mode policy.
+    FWP_EM_NOT_SUPPORTED = 0xC0220032,
+
+    /// The enumeration template or subscription will never match any objects.
+    FWP_NEVER_MATCH = 0xC0220033,
+
+    /// The provider context is of the wrong type.
+    FWP_PROVIDER_CONTEXT_MISMATCH = 0xC0220034,
+
+    /// The parameter is incorrect.
+    FWP_INVALID_PARAMETER = 0xC0220035,
+
+    /// The maximum number of sublayers has been reached.
+    FWP_TOO_MANY_SUBLAYERS = 0xC0220036,
+
+    /// The notification function for a callout returned an error.
+    FWP_CALLOUT_NOTIFICATION_FAILED = 0xC0220037,
+
+    /// The IPsec authentication configuration is not compatible with the authentication type.
+    FWP_INCOMPATIBLE_AUTH_CONFIG = 0xC0220038,
+
+    /// The IPsec cipher configuration is not compatible with the cipher type.
+    FWP_INCOMPATIBLE_CIPHER_CONFIG = 0xC0220039,
+
+    /// A policy cannot contain the same auth method more than once.
+    FWP_DUPLICATE_AUTH_METHOD = 0xC022003C,
+
+    /// The TCP/IP stack is not ready.
+    FWP_TCPIP_NOT_READY = 0xC0220100,
+
+    /// The injection handle is being closed by another thread.
+    FWP_INJECT_HANDLE_CLOSING = 0xC0220101,
+
+    /// The injection handle is stale.
+    FWP_INJECT_HANDLE_STALE = 0xC0220102,
+
+    /// The classify cannot be pended.
+    FWP_CANNOT_PEND = 0xC0220103,
+
+    /// The binding to the network interface is being closed.
+    NDIS_CLOSING = 0xC0230002,
+
+    /// An invalid version was specified.
+    NDIS_BAD_VERSION = 0xC0230004,
+
+    /// An invalid characteristics table was used.
+    NDIS_BAD_CHARACTERISTICS = 0xC0230005,
+
+    /// Failed to find the network interface or the network interface is not ready.
+    NDIS_ADAPTER_NOT_FOUND = 0xC0230006,
+
+    /// Failed to open the network interface.
+    NDIS_OPEN_FAILED = 0xC0230007,
+
+    /// The network interface has encountered an internal unrecoverable failure.
+    NDIS_DEVICE_FAILED = 0xC0230008,
+
+    /// The multicast list on the network interface is full.
+    NDIS_MULTICAST_FULL = 0xC0230009,
+
+    /// An attempt was made to add a duplicate multicast address to the list.
+    NDIS_MULTICAST_EXISTS = 0xC023000A,
+
+    /// At attempt was made to remove a multicast address that was never added.
+    NDIS_MULTICAST_NOT_FOUND = 0xC023000B,
+
+    /// The network interface aborted the request.
+    NDIS_REQUEST_ABORTED = 0xC023000C,
+
+    /// The network interface cannot process the request because it is being reset.
+    NDIS_RESET_IN_PROGRESS = 0xC023000D,
+
+    /// An attempt was made to send an invalid packet on a network interface.
+    NDIS_INVALID_PACKET = 0xC023000F,
+
+    /// The specified request is not a valid operation for the target device.
+    NDIS_INVALID_DEVICE_REQUEST = 0xC0230010,
+
+    /// The network interface is not ready to complete this operation.
+    NDIS_ADAPTER_NOT_READY = 0xC0230011,
+
+    /// The length of the buffer submitted for this operation is not valid.
+    NDIS_INVALID_LENGTH = 0xC0230014,
+
+    /// The data used for this operation is not valid.
+    NDIS_INVALID_DATA = 0xC0230015,
+
+    /// The length of the submitted buffer for this operation is too small.
+    NDIS_BUFFER_TOO_SHORT = 0xC0230016,
+
+    /// The network interface does not support this object identifier.
+    NDIS_INVALID_OID = 0xC0230017,
+
+    /// The network interface has been removed.
+    NDIS_ADAPTER_REMOVED = 0xC0230018,
+
+    /// The network interface does not support this media type.
+    NDIS_UNSUPPORTED_MEDIA = 0xC0230019,
+
+    /// An attempt was made to remove a token ring group address that is in use by other components.
+    NDIS_GROUP_ADDRESS_IN_USE = 0xC023001A,
+
+    /// An attempt was made to map a file that cannot be found.
+    NDIS_FILE_NOT_FOUND = 0xC023001B,
+
+    /// An error occurred while NDIS tried to map the file.
+    NDIS_ERROR_READING_FILE = 0xC023001C,
+
+    /// An attempt was made to map a file that is already mapped.
+    NDIS_ALREADY_MAPPED = 0xC023001D,
+
+    /// An attempt to allocate a hardware resource failed because the resource is used by another component.
+    NDIS_RESOURCE_CONFLICT = 0xC023001E,
+
+    /// The I/O operation failed because the network media is disconnected or the wireless access point is out of range.
+    NDIS_MEDIA_DISCONNECTED = 0xC023001F,
+
+    /// The network address used in the request is invalid.
+    NDIS_INVALID_ADDRESS = 0xC0230022,
+
+    /// The offload operation on the network interface has been paused.
+    NDIS_PAUSED = 0xC023002A,
+
+    /// The network interface was not found.
+    NDIS_INTERFACE_NOT_FOUND = 0xC023002B,
+
+    /// The revision number specified in the structure is not supported.
+    NDIS_UNSUPPORTED_REVISION = 0xC023002C,
+
+    /// The specified port does not exist on this network interface.
+    NDIS_INVALID_PORT = 0xC023002D,
+
+    /// The current state of the specified port on this network interface does not support the requested operation.
+    NDIS_INVALID_PORT_STATE = 0xC023002E,
+
+    /// The miniport adapter is in a lower power state.
+    NDIS_LOW_POWER_STATE = 0xC023002F,
+
+    /// The network interface does not support this request.
+    NDIS_NOT_SUPPORTED = 0xC02300BB,
+
+    /// The TCP connection is not offloadable because of a local policy setting.
+    NDIS_OFFLOAD_POLICY = 0xC023100F,
+
+    /// The TCP connection is not offloadable by the Chimney offload target.
+    NDIS_OFFLOAD_CONNECTION_REJECTED = 0xC0231012,
+
+    /// The IP Path object is not in an offloadable state.
+    NDIS_OFFLOAD_PATH_REJECTED = 0xC0231013,
+
+    /// The wireless LAN interface is in auto-configuration mode and does not support the requested parameter change operation.
+    NDIS_DOT11_AUTO_CONFIG_ENABLED = 0xC0232000,
+
+    /// The wireless LAN interface is busy and cannot perform the requested operation.
+    NDIS_DOT11_MEDIA_IN_USE = 0xC0232001,
+
+    /// The wireless LAN interface is power down and does not support the requested operation.
+    NDIS_DOT11_POWER_STATE_INVALID = 0xC0232002,
+
+    /// The list of wake on LAN patterns is full.
+    NDIS_PM_WOL_PATTERN_LIST_FULL = 0xC0232003,
+
+    /// The list of low power protocol offloads is full.
+    NDIS_PM_PROTOCOL_OFFLOAD_LIST_FULL = 0xC0232004,
+
+    /// The SPI in the packet does not match a valid IPsec SA.
+    IPSEC_BAD_SPI = 0xC0360001,
+
+    /// The packet was received on an IPsec SA whose lifetime has expired.
+    IPSEC_SA_LIFETIME_EXPIRED = 0xC0360002,
+
+    /// The packet was received on an IPsec SA that does not match the packet characteristics.
+    IPSEC_WRONG_SA = 0xC0360003,
+
+    /// The packet sequence number replay check failed.
+    IPSEC_REPLAY_CHECK_FAILED = 0xC0360004,
+
+    /// The IPsec header and/or trailer in the packet is invalid.
+    IPSEC_INVALID_PACKET = 0xC0360005,
+
+    /// The IPsec integrity check failed.
+    IPSEC_INTEGRITY_CHECK_FAILED = 0xC0360006,
+
+    /// IPsec dropped a clear text packet.
+    IPSEC_CLEAR_TEXT_DROP = 0xC0360007,
+
+    /// IPsec dropped an incoming ESP packet in authenticated firewall mode.  This drop is benign.
+    IPSEC_AUTH_FIREWALL_DROP = 0xC0360008,
+
+    /// IPsec dropped a packet due to DOS throttle.
+    IPSEC_THROTTLE_DROP = 0xC0360009,
+
+    /// IPsec Dos Protection matched an explicit block rule.
+    IPSEC_DOSP_BLOCK = 0xC0368000,
+
+    /// IPsec Dos Protection received an IPsec specific multicast packet which is not allowed.
+    IPSEC_DOSP_RECEIVED_MULTICAST = 0xC0368001,
+
+    /// IPsec Dos Protection received an incorrectly formatted packet.
+    IPSEC_DOSP_INVALID_PACKET = 0xC0368002,
+
+    /// IPsec Dos Protection failed to lookup state.
+    IPSEC_DOSP_STATE_LOOKUP_FAILED = 0xC0368003,
+
+    /// IPsec Dos Protection failed to create state because there are already maximum number of entries allowed by policy.
+    IPSEC_DOSP_MAX_ENTRIES = 0xC0368004,
+
+    /// IPsec Dos Protection received an IPsec negotiation packet for a keying module which is not allowed by policy.
+    IPSEC_DOSP_KEYMOD_NOT_ALLOWED = 0xC0368005,
+
+    /// IPsec Dos Protection failed to create per internal IP ratelimit queue because there is already maximum number of queues allowed by policy.
+    IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES = 0xC0368006,
+
+    /// The system does not support mirrored volumes.
+    VOLMGR_MIRROR_NOT_SUPPORTED = 0xC038005B,
+
+    /// The system does not support RAID-5 volumes.
+    VOLMGR_RAID5_NOT_SUPPORTED = 0xC038005C,
+
+    /// A virtual disk support provider for the specified file was not found.
+    VIRTDISK_PROVIDER_NOT_FOUND = 0xC03A0014,
+
+    /// The specified disk is not a virtual disk.
+    VIRTDISK_NOT_VIRTUAL_DISK = 0xC03A0015,
+
+    /// The chain of virtual hard disks is inaccessible.
+    /// The process has not been granted access rights to the parent virtual hard disk for the differencing disk.
+    VHD_PARENT_VHD_ACCESS_DENIED = 0xC03A0016,
+
+    /// The chain of virtual hard disks is corrupted.
+    /// There is a mismatch in the virtual sizes of the parent virtual hard disk and differencing disk.
+    VHD_CHILD_PARENT_SIZE_MISMATCH = 0xC03A0017,
+
+    /// The chain of virtual hard disks is corrupted.
+    /// A differencing disk is indicated in its own parent chain.
+    VHD_DIFFERENCING_CHAIN_CYCLE_DETECTED = 0xC03A0018,
+
+    /// The chain of virtual hard disks is inaccessible.
+    /// There was an error opening a virtual hard disk further up the chain.
+    VHD_DIFFERENCING_CHAIN_ERROR_IN_PARENT = 0xC03A0019,
+
+    _,
+};
lib/std/os/windows/status.zig
@@ -1,1670 +0,0 @@
-/// The operation completed successfully.
-pub const SUCCESS = 0x00000000;
-
-pub const WAIT_0 = 0x00000000;
-pub const WAIT_1 = 0x00000001;
-pub const WAIT_2 = 0x00000002;
-pub const WAIT_3 = 0x00000003;
-pub const WAIT_63 = 0x0000003F;
-pub const ABANDONED = 0x00000080;
-pub const ABANDONED_WAIT_0 = 0x00000080;
-pub const ABANDONED_WAIT_63 = 0x000000BF;
-pub const USER_APC = 0x000000C0;
-pub const ALERTED = 0x00000101;
-
-/// The given Timeout interval expired.
-pub const TIMEOUT = 0x00000102;
-
-/// The operation that was requested is pending completion.
-pub const PENDING = 0x00000103;
-
-pub const REPARSE = 0x00000104;
-pub const MORE_ENTRIES = 0x00000105;
-pub const NOT_ALL_ASSIGNED = 0x00000106;
-pub const SOME_NOT_MAPPED = 0x00000107;
-pub const OPLOCK_BREAK_IN_PROGRESS = 0x00000108;
-pub const VOLUME_MOUNTED = 0x00000109;
-pub const RXACT_COMMITTED = 0x0000010A;
-pub const NOTIFY_CLEANUP = 0x0000010B;
-pub const NOTIFY_ENUM_DIR = 0x0000010C;
-pub const NO_QUOTAS_FOR_ACCOUNT = 0x0000010D;
-pub const PRIMARY_TRANSPORT_CONNECT_FAILED = 0x0000010E;
-pub const PAGE_FAULT_TRANSITION = 0x00000110;
-pub const PAGE_FAULT_DEMAND_ZERO = 0x00000111;
-pub const PAGE_FAULT_COPY_ON_WRITE = 0x00000112;
-pub const PAGE_FAULT_GUARD_PAGE = 0x00000113;
-pub const PAGE_FAULT_PAGING_FILE = 0x00000114;
-pub const CACHE_PAGE_LOCKED = 0x00000115;
-pub const CRASH_DUMP = 0x00000116;
-pub const BUFFER_ALL_ZEROS = 0x00000117;
-pub const REPARSE_OBJECT = 0x00000118;
-pub const RESOURCE_REQUIREMENTS_CHANGED = 0x00000119;
-pub const TRANSLATION_COMPLETE = 0x00000120;
-pub const DS_MEMBERSHIP_EVALUATED_LOCALLY = 0x00000121;
-pub const NOTHING_TO_TERMINATE = 0x00000122;
-pub const PROCESS_NOT_IN_JOB = 0x00000123;
-pub const PROCESS_IN_JOB = 0x00000124;
-pub const VOLSNAP_HIBERNATE_READY = 0x00000125;
-pub const FSFILTER_OP_COMPLETED_SUCCESSFULLY = 0x00000126;
-pub const INTERRUPT_VECTOR_ALREADY_CONNECTED = 0x00000127;
-pub const INTERRUPT_STILL_CONNECTED = 0x00000128;
-pub const PROCESS_CLONED = 0x00000129;
-pub const FILE_LOCKED_WITH_ONLY_READERS = 0x0000012A;
-pub const FILE_LOCKED_WITH_WRITERS = 0x0000012B;
-pub const RESOURCEMANAGER_READ_ONLY = 0x00000202;
-pub const WAIT_FOR_OPLOCK = 0x00000367;
-pub const FLT_IO_COMPLETE = 0x001C0001;
-pub const FILE_NOT_AVAILABLE = 0xC0000467;
-pub const OBJECT_NAME_EXISTS = 0x40000000;
-pub const THREAD_WAS_SUSPENDED = 0x40000001;
-pub const WORKING_SET_LIMIT_RANGE = 0x40000002;
-pub const IMAGE_NOT_AT_BASE = 0x40000003;
-pub const RXACT_STATE_CREATED = 0x40000004;
-pub const SEGMENT_NOTIFICATION = 0x40000005;
-pub const LOCAL_USER_SESSION_KEY = 0x40000006;
-pub const BAD_CURRENT_DIRECTORY = 0x40000007;
-pub const SERIAL_MORE_WRITES = 0x40000008;
-pub const REGISTRY_RECOVERED = 0x40000009;
-pub const FT_READ_RECOVERY_FROM_BACKUP = 0x4000000A;
-pub const FT_WRITE_RECOVERY = 0x4000000B;
-pub const SERIAL_COUNTER_TIMEOUT = 0x4000000C;
-pub const NULL_LM_PASSWORD = 0x4000000D;
-pub const IMAGE_MACHINE_TYPE_MISMATCH = 0x4000000E;
-pub const RECEIVE_PARTIAL = 0x4000000F;
-pub const RECEIVE_EXPEDITED = 0x40000010;
-pub const RECEIVE_PARTIAL_EXPEDITED = 0x40000011;
-pub const EVENT_DONE = 0x40000012;
-pub const EVENT_PENDING = 0x40000013;
-pub const CHECKING_FILE_SYSTEM = 0x40000014;
-pub const FATAL_APP_EXIT = 0x40000015;
-pub const PREDEFINED_HANDLE = 0x40000016;
-pub const WAS_UNLOCKED = 0x40000017;
-pub const SERVICE_NOTIFICATION = 0x40000018;
-pub const WAS_LOCKED = 0x40000019;
-pub const LOG_HARD_ERROR = 0x4000001A;
-pub const ALREADY_WIN32 = 0x4000001B;
-pub const WX86_UNSIMULATE = 0x4000001C;
-pub const WX86_CONTINUE = 0x4000001D;
-pub const WX86_SINGLE_STEP = 0x4000001E;
-pub const WX86_BREAKPOINT = 0x4000001F;
-pub const WX86_EXCEPTION_CONTINUE = 0x40000020;
-pub const WX86_EXCEPTION_LASTCHANCE = 0x40000021;
-pub const WX86_EXCEPTION_CHAIN = 0x40000022;
-pub const IMAGE_MACHINE_TYPE_MISMATCH_EXE = 0x40000023;
-pub const NO_YIELD_PERFORMED = 0x40000024;
-pub const TIMER_RESUME_IGNORED = 0x40000025;
-pub const ARBITRATION_UNHANDLED = 0x40000026;
-pub const CARDBUS_NOT_SUPPORTED = 0x40000027;
-pub const WX86_CREATEWX86TIB = 0x40000028;
-pub const MP_PROCESSOR_MISMATCH = 0x40000029;
-pub const HIBERNATED = 0x4000002A;
-pub const RESUME_HIBERNATION = 0x4000002B;
-pub const FIRMWARE_UPDATED = 0x4000002C;
-pub const DRIVERS_LEAKING_LOCKED_PAGES = 0x4000002D;
-pub const MESSAGE_RETRIEVED = 0x4000002E;
-pub const SYSTEM_POWERSTATE_TRANSITION = 0x4000002F;
-pub const ALPC_CHECK_COMPLETION_LIST = 0x40000030;
-pub const SYSTEM_POWERSTATE_COMPLEX_TRANSITION = 0x40000031;
-pub const ACCESS_AUDIT_BY_POLICY = 0x40000032;
-pub const ABANDON_HIBERFILE = 0x40000033;
-pub const BIZRULES_NOT_ENABLED = 0x40000034;
-pub const WAKE_SYSTEM = 0x40000294;
-pub const DS_SHUTTING_DOWN = 0x40000370;
-pub const CTX_CDM_CONNECT = 0x400A0004;
-pub const CTX_CDM_DISCONNECT = 0x400A0005;
-pub const SXS_RELEASE_ACTIVATION_CONTEXT = 0x4015000D;
-pub const RECOVERY_NOT_NEEDED = 0x40190034;
-pub const RM_ALREADY_STARTED = 0x40190035;
-pub const LOG_NO_RESTART = 0x401A000C;
-pub const VIDEO_DRIVER_DEBUG_REPORT_REQUEST = 0x401B00EC;
-pub const GRAPHICS_PARTIAL_DATA_POPULATED = 0x401E000A;
-pub const GRAPHICS_DRIVER_MISMATCH = 0x401E0117;
-pub const GRAPHICS_MODE_NOT_PINNED = 0x401E0307;
-pub const GRAPHICS_NO_PREFERRED_MODE = 0x401E031E;
-pub const GRAPHICS_DATASET_IS_EMPTY = 0x401E034B;
-pub const GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET = 0x401E034C;
-pub const GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED = 0x401E0351;
-pub const GRAPHICS_UNKNOWN_CHILD_STATUS = 0x401E042F;
-pub const GRAPHICS_LEADLINK_START_DEFERRED = 0x401E0437;
-pub const GRAPHICS_POLLING_TOO_FREQUENTLY = 0x401E0439;
-pub const GRAPHICS_START_DEFERRED = 0x401E043A;
-pub const NDIS_INDICATION_REQUIRED = 0x40230001;
-pub const GUARD_PAGE_VIOLATION = 0x80000001;
-pub const DATATYPE_MISALIGNMENT = 0x80000002;
-pub const BREAKPOINT = 0x80000003;
-pub const SINGLE_STEP = 0x80000004;
-
-/// The data was too large to fit into the specified buffer.
-pub const BUFFER_OVERFLOW = 0x80000005;
-pub const NO_MORE_FILES = 0x80000006;
-pub const WAKE_SYSTEM_DEBUGGER = 0x80000007;
-pub const HANDLES_CLOSED = 0x8000000A;
-pub const NO_INHERITANCE = 0x8000000B;
-pub const GUID_SUBSTITUTION_MADE = 0x8000000C;
-pub const PARTIAL_COPY = 0x8000000D;
-pub const DEVICE_PAPER_EMPTY = 0x8000000E;
-pub const DEVICE_POWERED_OFF = 0x8000000F;
-pub const DEVICE_OFF_LINE = 0x80000010;
-pub const DEVICE_BUSY = 0x80000011;
-pub const NO_MORE_EAS = 0x80000012;
-pub const INVALID_EA_NAME = 0x80000013;
-pub const EA_LIST_INCONSISTENT = 0x80000014;
-pub const INVALID_EA_FLAG = 0x80000015;
-pub const VERIFY_REQUIRED = 0x80000016;
-pub const EXTRANEOUS_INFORMATION = 0x80000017;
-pub const RXACT_COMMIT_NECESSARY = 0x80000018;
-pub const NO_MORE_ENTRIES = 0x8000001A;
-pub const FILEMARK_DETECTED = 0x8000001B;
-pub const MEDIA_CHANGED = 0x8000001C;
-pub const BUS_RESET = 0x8000001D;
-pub const END_OF_MEDIA = 0x8000001E;
-pub const BEGINNING_OF_MEDIA = 0x8000001F;
-pub const MEDIA_CHECK = 0x80000020;
-pub const SETMARK_DETECTED = 0x80000021;
-pub const NO_DATA_DETECTED = 0x80000022;
-pub const REDIRECTOR_HAS_OPEN_HANDLES = 0x80000023;
-pub const SERVER_HAS_OPEN_HANDLES = 0x80000024;
-pub const ALREADY_DISCONNECTED = 0x80000025;
-pub const LONGJUMP = 0x80000026;
-pub const CLEANER_CARTRIDGE_INSTALLED = 0x80000027;
-pub const PLUGPLAY_QUERY_VETOED = 0x80000028;
-pub const UNWIND_CONSOLIDATE = 0x80000029;
-pub const REGISTRY_HIVE_RECOVERED = 0x8000002A;
-pub const DLL_MIGHT_BE_INSECURE = 0x8000002B;
-pub const DLL_MIGHT_BE_INCOMPATIBLE = 0x8000002C;
-pub const STOPPED_ON_SYMLINK = 0x8000002D;
-pub const DEVICE_REQUIRES_CLEANING = 0x80000288;
-pub const DEVICE_DOOR_OPEN = 0x80000289;
-pub const DATA_LOST_REPAIR = 0x80000803;
-pub const CLUSTER_NODE_ALREADY_UP = 0x80130001;
-pub const CLUSTER_NODE_ALREADY_DOWN = 0x80130002;
-pub const CLUSTER_NETWORK_ALREADY_ONLINE = 0x80130003;
-pub const CLUSTER_NETWORK_ALREADY_OFFLINE = 0x80130004;
-pub const CLUSTER_NODE_ALREADY_MEMBER = 0x80130005;
-pub const COULD_NOT_RESIZE_LOG = 0x80190009;
-pub const NO_TXF_METADATA = 0x80190029;
-pub const CANT_RECOVER_WITH_HANDLE_OPEN = 0x80190031;
-pub const TXF_METADATA_ALREADY_PRESENT = 0x80190041;
-pub const TRANSACTION_SCOPE_CALLBACKS_NOT_SET = 0x80190042;
-pub const VIDEO_HUNG_DISPLAY_DRIVER_THREAD_RECOVERED = 0x801B00EB;
-pub const FLT_BUFFER_TOO_SMALL = 0x801C0001;
-pub const FVE_PARTIAL_METADATA = 0x80210001;
-pub const FVE_TRANSIENT_STATE = 0x80210002;
-pub const UNSUCCESSFUL = 0xC0000001;
-pub const NOT_IMPLEMENTED = 0xC0000002;
-pub const INVALID_INFO_CLASS = 0xC0000003;
-pub const INFO_LENGTH_MISMATCH = 0xC0000004;
-pub const ACCESS_VIOLATION = 0xC0000005;
-pub const IN_PAGE_ERROR = 0xC0000006;
-pub const PAGEFILE_QUOTA = 0xC0000007;
-pub const INVALID_HANDLE = 0xC0000008;
-pub const BAD_INITIAL_STACK = 0xC0000009;
-pub const BAD_INITIAL_PC = 0xC000000A;
-pub const INVALID_CID = 0xC000000B;
-pub const TIMER_NOT_CANCELED = 0xC000000C;
-pub const INVALID_PARAMETER = 0xC000000D;
-pub const NO_SUCH_DEVICE = 0xC000000E;
-pub const NO_SUCH_FILE = 0xC000000F;
-pub const INVALID_DEVICE_REQUEST = 0xC0000010;
-pub const END_OF_FILE = 0xC0000011;
-pub const WRONG_VOLUME = 0xC0000012;
-pub const NO_MEDIA_IN_DEVICE = 0xC0000013;
-pub const UNRECOGNIZED_MEDIA = 0xC0000014;
-pub const NONEXISTENT_SECTOR = 0xC0000015;
-pub const MORE_PROCESSING_REQUIRED = 0xC0000016;
-pub const NO_MEMORY = 0xC0000017;
-pub const CONFLICTING_ADDRESSES = 0xC0000018;
-pub const NOT_MAPPED_VIEW = 0xC0000019;
-pub const UNABLE_TO_FREE_VM = 0xC000001A;
-pub const UNABLE_TO_DELETE_SECTION = 0xC000001B;
-pub const INVALID_SYSTEM_SERVICE = 0xC000001C;
-pub const ILLEGAL_INSTRUCTION = 0xC000001D;
-pub const INVALID_LOCK_SEQUENCE = 0xC000001E;
-pub const INVALID_VIEW_SIZE = 0xC000001F;
-pub const INVALID_FILE_FOR_SECTION = 0xC0000020;
-pub const ALREADY_COMMITTED = 0xC0000021;
-pub const ACCESS_DENIED = 0xC0000022;
-pub const BUFFER_TOO_SMALL = 0xC0000023;
-pub const OBJECT_TYPE_MISMATCH = 0xC0000024;
-pub const NONCONTINUABLE_EXCEPTION = 0xC0000025;
-pub const INVALID_DISPOSITION = 0xC0000026;
-pub const UNWIND = 0xC0000027;
-pub const BAD_STACK = 0xC0000028;
-pub const INVALID_UNWIND_TARGET = 0xC0000029;
-pub const NOT_LOCKED = 0xC000002A;
-pub const PARITY_ERROR = 0xC000002B;
-pub const UNABLE_TO_DECOMMIT_VM = 0xC000002C;
-pub const NOT_COMMITTED = 0xC000002D;
-pub const INVALID_PORT_ATTRIBUTES = 0xC000002E;
-pub const PORT_MESSAGE_TOO_LONG = 0xC000002F;
-pub const INVALID_PARAMETER_MIX = 0xC0000030;
-pub const INVALID_QUOTA_LOWER = 0xC0000031;
-pub const DISK_CORRUPT_ERROR = 0xC0000032;
-pub const OBJECT_NAME_INVALID = 0xC0000033;
-pub const OBJECT_NAME_NOT_FOUND = 0xC0000034;
-pub const OBJECT_NAME_COLLISION = 0xC0000035;
-pub const PORT_DISCONNECTED = 0xC0000037;
-pub const DEVICE_ALREADY_ATTACHED = 0xC0000038;
-pub const OBJECT_PATH_INVALID = 0xC0000039;
-pub const OBJECT_PATH_NOT_FOUND = 0xC000003A;
-pub const OBJECT_PATH_SYNTAX_BAD = 0xC000003B;
-pub const DATA_OVERRUN = 0xC000003C;
-pub const DATA_LATE_ERROR = 0xC000003D;
-pub const DATA_ERROR = 0xC000003E;
-pub const CRC_ERROR = 0xC000003F;
-pub const SECTION_TOO_BIG = 0xC0000040;
-pub const PORT_CONNECTION_REFUSED = 0xC0000041;
-pub const INVALID_PORT_HANDLE = 0xC0000042;
-pub const SHARING_VIOLATION = 0xC0000043;
-pub const QUOTA_EXCEEDED = 0xC0000044;
-pub const INVALID_PAGE_PROTECTION = 0xC0000045;
-pub const MUTANT_NOT_OWNED = 0xC0000046;
-pub const SEMAPHORE_LIMIT_EXCEEDED = 0xC0000047;
-pub const PORT_ALREADY_SET = 0xC0000048;
-pub const SECTION_NOT_IMAGE = 0xC0000049;
-pub const SUSPEND_COUNT_EXCEEDED = 0xC000004A;
-pub const THREAD_IS_TERMINATING = 0xC000004B;
-pub const BAD_WORKING_SET_LIMIT = 0xC000004C;
-pub const INCOMPATIBLE_FILE_MAP = 0xC000004D;
-pub const SECTION_PROTECTION = 0xC000004E;
-pub const EAS_NOT_SUPPORTED = 0xC000004F;
-pub const EA_TOO_LARGE = 0xC0000050;
-pub const NONEXISTENT_EA_ENTRY = 0xC0000051;
-pub const NO_EAS_ON_FILE = 0xC0000052;
-pub const EA_CORRUPT_ERROR = 0xC0000053;
-pub const FILE_LOCK_CONFLICT = 0xC0000054;
-pub const LOCK_NOT_GRANTED = 0xC0000055;
-pub const DELETE_PENDING = 0xC0000056;
-pub const CTL_FILE_NOT_SUPPORTED = 0xC0000057;
-pub const UNKNOWN_REVISION = 0xC0000058;
-pub const REVISION_MISMATCH = 0xC0000059;
-pub const INVALID_OWNER = 0xC000005A;
-pub const INVALID_PRIMARY_GROUP = 0xC000005B;
-pub const NO_IMPERSONATION_TOKEN = 0xC000005C;
-pub const CANT_DISABLE_MANDATORY = 0xC000005D;
-pub const NO_LOGON_SERVERS = 0xC000005E;
-pub const NO_SUCH_LOGON_SESSION = 0xC000005F;
-pub const NO_SUCH_PRIVILEGE = 0xC0000060;
-pub const PRIVILEGE_NOT_HELD = 0xC0000061;
-pub const INVALID_ACCOUNT_NAME = 0xC0000062;
-pub const USER_EXISTS = 0xC0000063;
-pub const NO_SUCH_USER = 0xC0000064;
-pub const GROUP_EXISTS = 0xC0000065;
-pub const NO_SUCH_GROUP = 0xC0000066;
-pub const MEMBER_IN_GROUP = 0xC0000067;
-pub const MEMBER_NOT_IN_GROUP = 0xC0000068;
-pub const LAST_ADMIN = 0xC0000069;
-pub const WRONG_PASSWORD = 0xC000006A;
-pub const ILL_FORMED_PASSWORD = 0xC000006B;
-pub const PASSWORD_RESTRICTION = 0xC000006C;
-pub const LOGON_FAILURE = 0xC000006D;
-pub const ACCOUNT_RESTRICTION = 0xC000006E;
-pub const INVALID_LOGON_HOURS = 0xC000006F;
-pub const INVALID_WORKSTATION = 0xC0000070;
-pub const PASSWORD_EXPIRED = 0xC0000071;
-pub const ACCOUNT_DISABLED = 0xC0000072;
-pub const NONE_MAPPED = 0xC0000073;
-pub const TOO_MANY_LUIDS_REQUESTED = 0xC0000074;
-pub const LUIDS_EXHAUSTED = 0xC0000075;
-pub const INVALID_SUB_AUTHORITY = 0xC0000076;
-pub const INVALID_ACL = 0xC0000077;
-pub const INVALID_SID = 0xC0000078;
-pub const INVALID_SECURITY_DESCR = 0xC0000079;
-pub const PROCEDURE_NOT_FOUND = 0xC000007A;
-pub const INVALID_IMAGE_FORMAT = 0xC000007B;
-pub const NO_TOKEN = 0xC000007C;
-pub const BAD_INHERITANCE_ACL = 0xC000007D;
-pub const RANGE_NOT_LOCKED = 0xC000007E;
-pub const DISK_FULL = 0xC000007F;
-pub const SERVER_DISABLED = 0xC0000080;
-pub const SERVER_NOT_DISABLED = 0xC0000081;
-pub const TOO_MANY_GUIDS_REQUESTED = 0xC0000082;
-pub const GUIDS_EXHAUSTED = 0xC0000083;
-pub const INVALID_ID_AUTHORITY = 0xC0000084;
-pub const AGENTS_EXHAUSTED = 0xC0000085;
-pub const INVALID_VOLUME_LABEL = 0xC0000086;
-pub const SECTION_NOT_EXTENDED = 0xC0000087;
-pub const NOT_MAPPED_DATA = 0xC0000088;
-pub const RESOURCE_DATA_NOT_FOUND = 0xC0000089;
-pub const RESOURCE_TYPE_NOT_FOUND = 0xC000008A;
-pub const RESOURCE_NAME_NOT_FOUND = 0xC000008B;
-pub const ARRAY_BOUNDS_EXCEEDED = 0xC000008C;
-pub const FLOAT_DENORMAL_OPERAND = 0xC000008D;
-pub const FLOAT_DIVIDE_BY_ZERO = 0xC000008E;
-pub const FLOAT_INEXACT_RESULT = 0xC000008F;
-pub const FLOAT_INVALID_OPERATION = 0xC0000090;
-pub const FLOAT_OVERFLOW = 0xC0000091;
-pub const FLOAT_STACK_CHECK = 0xC0000092;
-pub const FLOAT_UNDERFLOW = 0xC0000093;
-pub const INTEGER_DIVIDE_BY_ZERO = 0xC0000094;
-pub const INTEGER_OVERFLOW = 0xC0000095;
-pub const PRIVILEGED_INSTRUCTION = 0xC0000096;
-pub const TOO_MANY_PAGING_FILES = 0xC0000097;
-pub const FILE_INVALID = 0xC0000098;
-pub const ALLOTTED_SPACE_EXCEEDED = 0xC0000099;
-pub const INSUFFICIENT_RESOURCES = 0xC000009A;
-pub const DFS_EXIT_PATH_FOUND = 0xC000009B;
-pub const DEVICE_DATA_ERROR = 0xC000009C;
-pub const DEVICE_NOT_CONNECTED = 0xC000009D;
-pub const FREE_VM_NOT_AT_BASE = 0xC000009F;
-pub const MEMORY_NOT_ALLOCATED = 0xC00000A0;
-pub const WORKING_SET_QUOTA = 0xC00000A1;
-pub const MEDIA_WRITE_PROTECTED = 0xC00000A2;
-pub const DEVICE_NOT_READY = 0xC00000A3;
-pub const INVALID_GROUP_ATTRIBUTES = 0xC00000A4;
-pub const BAD_IMPERSONATION_LEVEL = 0xC00000A5;
-pub const CANT_OPEN_ANONYMOUS = 0xC00000A6;
-pub const BAD_VALIDATION_CLASS = 0xC00000A7;
-pub const BAD_TOKEN_TYPE = 0xC00000A8;
-pub const BAD_MASTER_BOOT_RECORD = 0xC00000A9;
-pub const INSTRUCTION_MISALIGNMENT = 0xC00000AA;
-pub const INSTANCE_NOT_AVAILABLE = 0xC00000AB;
-pub const PIPE_NOT_AVAILABLE = 0xC00000AC;
-pub const INVALID_PIPE_STATE = 0xC00000AD;
-pub const PIPE_BUSY = 0xC00000AE;
-pub const ILLEGAL_FUNCTION = 0xC00000AF;
-pub const PIPE_DISCONNECTED = 0xC00000B0;
-pub const PIPE_CLOSING = 0xC00000B1;
-pub const PIPE_CONNECTED = 0xC00000B2;
-pub const PIPE_LISTENING = 0xC00000B3;
-pub const INVALID_READ_MODE = 0xC00000B4;
-pub const IO_TIMEOUT = 0xC00000B5;
-pub const FILE_FORCED_CLOSED = 0xC00000B6;
-pub const PROFILING_NOT_STARTED = 0xC00000B7;
-pub const PROFILING_NOT_STOPPED = 0xC00000B8;
-pub const COULD_NOT_INTERPRET = 0xC00000B9;
-pub const FILE_IS_A_DIRECTORY = 0xC00000BA;
-pub const NOT_SUPPORTED = 0xC00000BB;
-pub const REMOTE_NOT_LISTENING = 0xC00000BC;
-pub const DUPLICATE_NAME = 0xC00000BD;
-pub const BAD_NETWORK_PATH = 0xC00000BE;
-pub const NETWORK_BUSY = 0xC00000BF;
-pub const DEVICE_DOES_NOT_EXIST = 0xC00000C0;
-pub const TOO_MANY_COMMANDS = 0xC00000C1;
-pub const ADAPTER_HARDWARE_ERROR = 0xC00000C2;
-pub const INVALID_NETWORK_RESPONSE = 0xC00000C3;
-pub const UNEXPECTED_NETWORK_ERROR = 0xC00000C4;
-pub const BAD_REMOTE_ADAPTER = 0xC00000C5;
-pub const PRINT_QUEUE_FULL = 0xC00000C6;
-pub const NO_SPOOL_SPACE = 0xC00000C7;
-pub const PRINT_CANCELLED = 0xC00000C8;
-pub const NETWORK_NAME_DELETED = 0xC00000C9;
-pub const NETWORK_ACCESS_DENIED = 0xC00000CA;
-pub const BAD_DEVICE_TYPE = 0xC00000CB;
-pub const BAD_NETWORK_NAME = 0xC00000CC;
-pub const TOO_MANY_NAMES = 0xC00000CD;
-pub const TOO_MANY_SESSIONS = 0xC00000CE;
-pub const SHARING_PAUSED = 0xC00000CF;
-pub const REQUEST_NOT_ACCEPTED = 0xC00000D0;
-pub const REDIRECTOR_PAUSED = 0xC00000D1;
-pub const NET_WRITE_FAULT = 0xC00000D2;
-pub const PROFILING_AT_LIMIT = 0xC00000D3;
-pub const NOT_SAME_DEVICE = 0xC00000D4;
-pub const FILE_RENAMED = 0xC00000D5;
-pub const VIRTUAL_CIRCUIT_CLOSED = 0xC00000D6;
-pub const NO_SECURITY_ON_OBJECT = 0xC00000D7;
-pub const CANT_WAIT = 0xC00000D8;
-pub const PIPE_EMPTY = 0xC00000D9;
-pub const CANT_ACCESS_DOMAIN_INFO = 0xC00000DA;
-pub const CANT_TERMINATE_SELF = 0xC00000DB;
-pub const INVALID_SERVER_STATE = 0xC00000DC;
-pub const INVALID_DOMAIN_STATE = 0xC00000DD;
-pub const INVALID_DOMAIN_ROLE = 0xC00000DE;
-pub const NO_SUCH_DOMAIN = 0xC00000DF;
-pub const DOMAIN_EXISTS = 0xC00000E0;
-pub const DOMAIN_LIMIT_EXCEEDED = 0xC00000E1;
-pub const OPLOCK_NOT_GRANTED = 0xC00000E2;
-pub const INVALID_OPLOCK_PROTOCOL = 0xC00000E3;
-pub const INTERNAL_DB_CORRUPTION = 0xC00000E4;
-pub const INTERNAL_ERROR = 0xC00000E5;
-pub const GENERIC_NOT_MAPPED = 0xC00000E6;
-pub const BAD_DESCRIPTOR_FORMAT = 0xC00000E7;
-pub const INVALID_USER_BUFFER = 0xC00000E8;
-pub const UNEXPECTED_IO_ERROR = 0xC00000E9;
-pub const UNEXPECTED_MM_CREATE_ERR = 0xC00000EA;
-pub const UNEXPECTED_MM_MAP_ERROR = 0xC00000EB;
-pub const UNEXPECTED_MM_EXTEND_ERR = 0xC00000EC;
-pub const NOT_LOGON_PROCESS = 0xC00000ED;
-pub const LOGON_SESSION_EXISTS = 0xC00000EE;
-pub const INVALID_PARAMETER_1 = 0xC00000EF;
-pub const INVALID_PARAMETER_2 = 0xC00000F0;
-pub const INVALID_PARAMETER_3 = 0xC00000F1;
-pub const INVALID_PARAMETER_4 = 0xC00000F2;
-pub const INVALID_PARAMETER_5 = 0xC00000F3;
-pub const INVALID_PARAMETER_6 = 0xC00000F4;
-pub const INVALID_PARAMETER_7 = 0xC00000F5;
-pub const INVALID_PARAMETER_8 = 0xC00000F6;
-pub const INVALID_PARAMETER_9 = 0xC00000F7;
-pub const INVALID_PARAMETER_10 = 0xC00000F8;
-pub const INVALID_PARAMETER_11 = 0xC00000F9;
-pub const INVALID_PARAMETER_12 = 0xC00000FA;
-pub const REDIRECTOR_NOT_STARTED = 0xC00000FB;
-pub const REDIRECTOR_STARTED = 0xC00000FC;
-pub const STACK_OVERFLOW = 0xC00000FD;
-pub const NO_SUCH_PACKAGE = 0xC00000FE;
-pub const BAD_FUNCTION_TABLE = 0xC00000FF;
-pub const VARIABLE_NOT_FOUND = 0xC0000100;
-pub const DIRECTORY_NOT_EMPTY = 0xC0000101;
-pub const FILE_CORRUPT_ERROR = 0xC0000102;
-pub const NOT_A_DIRECTORY = 0xC0000103;
-pub const BAD_LOGON_SESSION_STATE = 0xC0000104;
-pub const LOGON_SESSION_COLLISION = 0xC0000105;
-pub const NAME_TOO_LONG = 0xC0000106;
-pub const FILES_OPEN = 0xC0000107;
-pub const CONNECTION_IN_USE = 0xC0000108;
-pub const MESSAGE_NOT_FOUND = 0xC0000109;
-pub const PROCESS_IS_TERMINATING = 0xC000010A;
-pub const INVALID_LOGON_TYPE = 0xC000010B;
-pub const NO_GUID_TRANSLATION = 0xC000010C;
-pub const CANNOT_IMPERSONATE = 0xC000010D;
-pub const IMAGE_ALREADY_LOADED = 0xC000010E;
-pub const NO_LDT = 0xC0000117;
-pub const INVALID_LDT_SIZE = 0xC0000118;
-pub const INVALID_LDT_OFFSET = 0xC0000119;
-pub const INVALID_LDT_DESCRIPTOR = 0xC000011A;
-pub const INVALID_IMAGE_NE_FORMAT = 0xC000011B;
-pub const RXACT_INVALID_STATE = 0xC000011C;
-pub const RXACT_COMMIT_FAILURE = 0xC000011D;
-pub const MAPPED_FILE_SIZE_ZERO = 0xC000011E;
-pub const TOO_MANY_OPENED_FILES = 0xC000011F;
-pub const CANCELLED = 0xC0000120;
-pub const CANNOT_DELETE = 0xC0000121;
-pub const INVALID_COMPUTER_NAME = 0xC0000122;
-pub const FILE_DELETED = 0xC0000123;
-pub const SPECIAL_ACCOUNT = 0xC0000124;
-pub const SPECIAL_GROUP = 0xC0000125;
-pub const SPECIAL_USER = 0xC0000126;
-pub const MEMBERS_PRIMARY_GROUP = 0xC0000127;
-pub const FILE_CLOSED = 0xC0000128;
-pub const TOO_MANY_THREADS = 0xC0000129;
-pub const THREAD_NOT_IN_PROCESS = 0xC000012A;
-pub const TOKEN_ALREADY_IN_USE = 0xC000012B;
-pub const PAGEFILE_QUOTA_EXCEEDED = 0xC000012C;
-pub const COMMITMENT_LIMIT = 0xC000012D;
-pub const INVALID_IMAGE_LE_FORMAT = 0xC000012E;
-pub const INVALID_IMAGE_NOT_MZ = 0xC000012F;
-pub const INVALID_IMAGE_PROTECT = 0xC0000130;
-pub const INVALID_IMAGE_WIN_16 = 0xC0000131;
-pub const LOGON_SERVER_CONFLICT = 0xC0000132;
-pub const TIME_DIFFERENCE_AT_DC = 0xC0000133;
-pub const SYNCHRONIZATION_REQUIRED = 0xC0000134;
-pub const DLL_NOT_FOUND = 0xC0000135;
-pub const OPEN_FAILED = 0xC0000136;
-pub const IO_PRIVILEGE_FAILED = 0xC0000137;
-pub const ORDINAL_NOT_FOUND = 0xC0000138;
-pub const ENTRYPOINT_NOT_FOUND = 0xC0000139;
-pub const CONTROL_C_EXIT = 0xC000013A;
-pub const LOCAL_DISCONNECT = 0xC000013B;
-pub const REMOTE_DISCONNECT = 0xC000013C;
-pub const REMOTE_RESOURCES = 0xC000013D;
-pub const LINK_FAILED = 0xC000013E;
-pub const LINK_TIMEOUT = 0xC000013F;
-pub const INVALID_CONNECTION = 0xC0000140;
-pub const INVALID_ADDRESS = 0xC0000141;
-pub const DLL_INIT_FAILED = 0xC0000142;
-pub const MISSING_SYSTEMFILE = 0xC0000143;
-pub const UNHANDLED_EXCEPTION = 0xC0000144;
-pub const APP_INIT_FAILURE = 0xC0000145;
-pub const PAGEFILE_CREATE_FAILED = 0xC0000146;
-pub const NO_PAGEFILE = 0xC0000147;
-pub const INVALID_LEVEL = 0xC0000148;
-pub const WRONG_PASSWORD_CORE = 0xC0000149;
-pub const ILLEGAL_FLOAT_CONTEXT = 0xC000014A;
-pub const PIPE_BROKEN = 0xC000014B;
-pub const REGISTRY_CORRUPT = 0xC000014C;
-pub const REGISTRY_IO_FAILED = 0xC000014D;
-pub const NO_EVENT_PAIR = 0xC000014E;
-pub const UNRECOGNIZED_VOLUME = 0xC000014F;
-pub const SERIAL_NO_DEVICE_INITED = 0xC0000150;
-pub const NO_SUCH_ALIAS = 0xC0000151;
-pub const MEMBER_NOT_IN_ALIAS = 0xC0000152;
-pub const MEMBER_IN_ALIAS = 0xC0000153;
-pub const ALIAS_EXISTS = 0xC0000154;
-pub const LOGON_NOT_GRANTED = 0xC0000155;
-pub const TOO_MANY_SECRETS = 0xC0000156;
-pub const SECRET_TOO_LONG = 0xC0000157;
-pub const INTERNAL_DB_ERROR = 0xC0000158;
-pub const FULLSCREEN_MODE = 0xC0000159;
-pub const TOO_MANY_CONTEXT_IDS = 0xC000015A;
-pub const LOGON_TYPE_NOT_GRANTED = 0xC000015B;
-pub const NOT_REGISTRY_FILE = 0xC000015C;
-pub const NT_CROSS_ENCRYPTION_REQUIRED = 0xC000015D;
-pub const DOMAIN_CTRLR_CONFIG_ERROR = 0xC000015E;
-pub const FT_MISSING_MEMBER = 0xC000015F;
-pub const ILL_FORMED_SERVICE_ENTRY = 0xC0000160;
-pub const ILLEGAL_CHARACTER = 0xC0000161;
-pub const UNMAPPABLE_CHARACTER = 0xC0000162;
-pub const UNDEFINED_CHARACTER = 0xC0000163;
-pub const FLOPPY_VOLUME = 0xC0000164;
-pub const FLOPPY_ID_MARK_NOT_FOUND = 0xC0000165;
-pub const FLOPPY_WRONG_CYLINDER = 0xC0000166;
-pub const FLOPPY_UNKNOWN_ERROR = 0xC0000167;
-pub const FLOPPY_BAD_REGISTERS = 0xC0000168;
-pub const DISK_RECALIBRATE_FAILED = 0xC0000169;
-pub const DISK_OPERATION_FAILED = 0xC000016A;
-pub const DISK_RESET_FAILED = 0xC000016B;
-pub const SHARED_IRQ_BUSY = 0xC000016C;
-pub const FT_ORPHANING = 0xC000016D;
-pub const BIOS_FAILED_TO_CONNECT_INTERRUPT = 0xC000016E;
-pub const PARTITION_FAILURE = 0xC0000172;
-pub const INVALID_BLOCK_LENGTH = 0xC0000173;
-pub const DEVICE_NOT_PARTITIONED = 0xC0000174;
-pub const UNABLE_TO_LOCK_MEDIA = 0xC0000175;
-pub const UNABLE_TO_UNLOAD_MEDIA = 0xC0000176;
-pub const EOM_OVERFLOW = 0xC0000177;
-pub const NO_MEDIA = 0xC0000178;
-pub const NO_SUCH_MEMBER = 0xC000017A;
-pub const INVALID_MEMBER = 0xC000017B;
-pub const KEY_DELETED = 0xC000017C;
-pub const NO_LOG_SPACE = 0xC000017D;
-pub const TOO_MANY_SIDS = 0xC000017E;
-pub const LM_CROSS_ENCRYPTION_REQUIRED = 0xC000017F;
-pub const KEY_HAS_CHILDREN = 0xC0000180;
-pub const CHILD_MUST_BE_VOLATILE = 0xC0000181;
-pub const DEVICE_CONFIGURATION_ERROR = 0xC0000182;
-pub const DRIVER_INTERNAL_ERROR = 0xC0000183;
-pub const INVALID_DEVICE_STATE = 0xC0000184;
-pub const IO_DEVICE_ERROR = 0xC0000185;
-pub const DEVICE_PROTOCOL_ERROR = 0xC0000186;
-pub const BACKUP_CONTROLLER = 0xC0000187;
-pub const LOG_FILE_FULL = 0xC0000188;
-pub const TOO_LATE = 0xC0000189;
-pub const NO_TRUST_LSA_SECRET = 0xC000018A;
-pub const NO_TRUST_SAM_ACCOUNT = 0xC000018B;
-pub const TRUSTED_DOMAIN_FAILURE = 0xC000018C;
-pub const TRUSTED_RELATIONSHIP_FAILURE = 0xC000018D;
-pub const EVENTLOG_FILE_CORRUPT = 0xC000018E;
-pub const EVENTLOG_CANT_START = 0xC000018F;
-pub const TRUST_FAILURE = 0xC0000190;
-pub const MUTANT_LIMIT_EXCEEDED = 0xC0000191;
-pub const NETLOGON_NOT_STARTED = 0xC0000192;
-pub const ACCOUNT_EXPIRED = 0xC0000193;
-pub const POSSIBLE_DEADLOCK = 0xC0000194;
-pub const NETWORK_CREDENTIAL_CONFLICT = 0xC0000195;
-pub const REMOTE_SESSION_LIMIT = 0xC0000196;
-pub const EVENTLOG_FILE_CHANGED = 0xC0000197;
-pub const NOLOGON_INTERDOMAIN_TRUST_ACCOUNT = 0xC0000198;
-pub const NOLOGON_WORKSTATION_TRUST_ACCOUNT = 0xC0000199;
-pub const NOLOGON_SERVER_TRUST_ACCOUNT = 0xC000019A;
-pub const DOMAIN_TRUST_INCONSISTENT = 0xC000019B;
-pub const FS_DRIVER_REQUIRED = 0xC000019C;
-pub const IMAGE_ALREADY_LOADED_AS_DLL = 0xC000019D;
-pub const INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING = 0xC000019E;
-pub const SHORT_NAMES_NOT_ENABLED_ON_VOLUME = 0xC000019F;
-pub const SECURITY_STREAM_IS_INCONSISTENT = 0xC00001A0;
-pub const INVALID_LOCK_RANGE = 0xC00001A1;
-pub const INVALID_ACE_CONDITION = 0xC00001A2;
-pub const IMAGE_SUBSYSTEM_NOT_PRESENT = 0xC00001A3;
-pub const NOTIFICATION_GUID_ALREADY_DEFINED = 0xC00001A4;
-pub const NETWORK_OPEN_RESTRICTION = 0xC0000201;
-pub const NO_USER_SESSION_KEY = 0xC0000202;
-pub const USER_SESSION_DELETED = 0xC0000203;
-pub const RESOURCE_LANG_NOT_FOUND = 0xC0000204;
-pub const INSUFF_SERVER_RESOURCES = 0xC0000205;
-pub const INVALID_BUFFER_SIZE = 0xC0000206;
-pub const INVALID_ADDRESS_COMPONENT = 0xC0000207;
-pub const INVALID_ADDRESS_WILDCARD = 0xC0000208;
-pub const TOO_MANY_ADDRESSES = 0xC0000209;
-pub const ADDRESS_ALREADY_EXISTS = 0xC000020A;
-pub const ADDRESS_CLOSED = 0xC000020B;
-pub const CONNECTION_DISCONNECTED = 0xC000020C;
-pub const CONNECTION_RESET = 0xC000020D;
-pub const TOO_MANY_NODES = 0xC000020E;
-pub const TRANSACTION_ABORTED = 0xC000020F;
-pub const TRANSACTION_TIMED_OUT = 0xC0000210;
-pub const TRANSACTION_NO_RELEASE = 0xC0000211;
-pub const TRANSACTION_NO_MATCH = 0xC0000212;
-pub const TRANSACTION_RESPONDED = 0xC0000213;
-pub const TRANSACTION_INVALID_ID = 0xC0000214;
-pub const TRANSACTION_INVALID_TYPE = 0xC0000215;
-pub const NOT_SERVER_SESSION = 0xC0000216;
-pub const NOT_CLIENT_SESSION = 0xC0000217;
-pub const CANNOT_LOAD_REGISTRY_FILE = 0xC0000218;
-pub const DEBUG_ATTACH_FAILED = 0xC0000219;
-pub const SYSTEM_PROCESS_TERMINATED = 0xC000021A;
-pub const DATA_NOT_ACCEPTED = 0xC000021B;
-pub const NO_BROWSER_SERVERS_FOUND = 0xC000021C;
-pub const VDM_HARD_ERROR = 0xC000021D;
-pub const DRIVER_CANCEL_TIMEOUT = 0xC000021E;
-pub const REPLY_MESSAGE_MISMATCH = 0xC000021F;
-pub const MAPPED_ALIGNMENT = 0xC0000220;
-pub const IMAGE_CHECKSUM_MISMATCH = 0xC0000221;
-pub const LOST_WRITEBEHIND_DATA = 0xC0000222;
-pub const CLIENT_SERVER_PARAMETERS_INVALID = 0xC0000223;
-pub const PASSWORD_MUST_CHANGE = 0xC0000224;
-pub const NOT_FOUND = 0xC0000225;
-pub const NOT_TINY_STREAM = 0xC0000226;
-pub const RECOVERY_FAILURE = 0xC0000227;
-pub const STACK_OVERFLOW_READ = 0xC0000228;
-pub const FAIL_CHECK = 0xC0000229;
-pub const DUPLICATE_OBJECTID = 0xC000022A;
-pub const OBJECTID_EXISTS = 0xC000022B;
-pub const CONVERT_TO_LARGE = 0xC000022C;
-pub const RETRY = 0xC000022D;
-pub const FOUND_OUT_OF_SCOPE = 0xC000022E;
-pub const ALLOCATE_BUCKET = 0xC000022F;
-pub const PROPSET_NOT_FOUND = 0xC0000230;
-pub const MARSHALL_OVERFLOW = 0xC0000231;
-pub const INVALID_VARIANT = 0xC0000232;
-pub const DOMAIN_CONTROLLER_NOT_FOUND = 0xC0000233;
-pub const ACCOUNT_LOCKED_OUT = 0xC0000234;
-pub const HANDLE_NOT_CLOSABLE = 0xC0000235;
-pub const CONNECTION_REFUSED = 0xC0000236;
-pub const GRACEFUL_DISCONNECT = 0xC0000237;
-pub const ADDRESS_ALREADY_ASSOCIATED = 0xC0000238;
-pub const ADDRESS_NOT_ASSOCIATED = 0xC0000239;
-pub const CONNECTION_INVALID = 0xC000023A;
-pub const CONNECTION_ACTIVE = 0xC000023B;
-pub const NETWORK_UNREACHABLE = 0xC000023C;
-pub const HOST_UNREACHABLE = 0xC000023D;
-pub const PROTOCOL_UNREACHABLE = 0xC000023E;
-pub const PORT_UNREACHABLE = 0xC000023F;
-pub const REQUEST_ABORTED = 0xC0000240;
-pub const CONNECTION_ABORTED = 0xC0000241;
-pub const BAD_COMPRESSION_BUFFER = 0xC0000242;
-pub const USER_MAPPED_FILE = 0xC0000243;
-pub const AUDIT_FAILED = 0xC0000244;
-pub const TIMER_RESOLUTION_NOT_SET = 0xC0000245;
-pub const CONNECTION_COUNT_LIMIT = 0xC0000246;
-pub const LOGIN_TIME_RESTRICTION = 0xC0000247;
-pub const LOGIN_WKSTA_RESTRICTION = 0xC0000248;
-pub const IMAGE_MP_UP_MISMATCH = 0xC0000249;
-pub const INSUFFICIENT_LOGON_INFO = 0xC0000250;
-pub const BAD_DLL_ENTRYPOINT = 0xC0000251;
-pub const BAD_SERVICE_ENTRYPOINT = 0xC0000252;
-pub const LPC_REPLY_LOST = 0xC0000253;
-pub const IP_ADDRESS_CONFLICT1 = 0xC0000254;
-pub const IP_ADDRESS_CONFLICT2 = 0xC0000255;
-pub const REGISTRY_QUOTA_LIMIT = 0xC0000256;
-pub const PATH_NOT_COVERED = 0xC0000257;
-pub const NO_CALLBACK_ACTIVE = 0xC0000258;
-pub const LICENSE_QUOTA_EXCEEDED = 0xC0000259;
-pub const PWD_TOO_SHORT = 0xC000025A;
-pub const PWD_TOO_RECENT = 0xC000025B;
-pub const PWD_HISTORY_CONFLICT = 0xC000025C;
-pub const PLUGPLAY_NO_DEVICE = 0xC000025E;
-pub const UNSUPPORTED_COMPRESSION = 0xC000025F;
-pub const INVALID_HW_PROFILE = 0xC0000260;
-pub const INVALID_PLUGPLAY_DEVICE_PATH = 0xC0000261;
-pub const DRIVER_ORDINAL_NOT_FOUND = 0xC0000262;
-pub const DRIVER_ENTRYPOINT_NOT_FOUND = 0xC0000263;
-pub const RESOURCE_NOT_OWNED = 0xC0000264;
-pub const TOO_MANY_LINKS = 0xC0000265;
-pub const QUOTA_LIST_INCONSISTENT = 0xC0000266;
-pub const FILE_IS_OFFLINE = 0xC0000267;
-pub const EVALUATION_EXPIRATION = 0xC0000268;
-pub const ILLEGAL_DLL_RELOCATION = 0xC0000269;
-pub const LICENSE_VIOLATION = 0xC000026A;
-pub const DLL_INIT_FAILED_LOGOFF = 0xC000026B;
-pub const DRIVER_UNABLE_TO_LOAD = 0xC000026C;
-pub const DFS_UNAVAILABLE = 0xC000026D;
-pub const VOLUME_DISMOUNTED = 0xC000026E;
-pub const WX86_INTERNAL_ERROR = 0xC000026F;
-pub const WX86_FLOAT_STACK_CHECK = 0xC0000270;
-pub const VALIDATE_CONTINUE = 0xC0000271;
-pub const NO_MATCH = 0xC0000272;
-pub const NO_MORE_MATCHES = 0xC0000273;
-pub const NOT_A_REPARSE_POINT = 0xC0000275;
-pub const IO_REPARSE_TAG_INVALID = 0xC0000276;
-pub const IO_REPARSE_TAG_MISMATCH = 0xC0000277;
-pub const IO_REPARSE_DATA_INVALID = 0xC0000278;
-pub const IO_REPARSE_TAG_NOT_HANDLED = 0xC0000279;
-pub const REPARSE_POINT_NOT_RESOLVED = 0xC0000280;
-pub const DIRECTORY_IS_A_REPARSE_POINT = 0xC0000281;
-pub const RANGE_LIST_CONFLICT = 0xC0000282;
-pub const SOURCE_ELEMENT_EMPTY = 0xC0000283;
-pub const DESTINATION_ELEMENT_FULL = 0xC0000284;
-pub const ILLEGAL_ELEMENT_ADDRESS = 0xC0000285;
-pub const MAGAZINE_NOT_PRESENT = 0xC0000286;
-pub const REINITIALIZATION_NEEDED = 0xC0000287;
-pub const ENCRYPTION_FAILED = 0xC000028A;
-pub const DECRYPTION_FAILED = 0xC000028B;
-pub const RANGE_NOT_FOUND = 0xC000028C;
-pub const NO_RECOVERY_POLICY = 0xC000028D;
-pub const NO_EFS = 0xC000028E;
-pub const WRONG_EFS = 0xC000028F;
-pub const NO_USER_KEYS = 0xC0000290;
-pub const FILE_NOT_ENCRYPTED = 0xC0000291;
-pub const NOT_EXPORT_FORMAT = 0xC0000292;
-pub const FILE_ENCRYPTED = 0xC0000293;
-pub const WMI_GUID_NOT_FOUND = 0xC0000295;
-pub const WMI_INSTANCE_NOT_FOUND = 0xC0000296;
-pub const WMI_ITEMID_NOT_FOUND = 0xC0000297;
-pub const WMI_TRY_AGAIN = 0xC0000298;
-pub const SHARED_POLICY = 0xC0000299;
-pub const POLICY_OBJECT_NOT_FOUND = 0xC000029A;
-pub const POLICY_ONLY_IN_DS = 0xC000029B;
-pub const VOLUME_NOT_UPGRADED = 0xC000029C;
-pub const REMOTE_STORAGE_NOT_ACTIVE = 0xC000029D;
-pub const REMOTE_STORAGE_MEDIA_ERROR = 0xC000029E;
-pub const NO_TRACKING_SERVICE = 0xC000029F;
-pub const SERVER_SID_MISMATCH = 0xC00002A0;
-pub const DS_NO_ATTRIBUTE_OR_VALUE = 0xC00002A1;
-pub const DS_INVALID_ATTRIBUTE_SYNTAX = 0xC00002A2;
-pub const DS_ATTRIBUTE_TYPE_UNDEFINED = 0xC00002A3;
-pub const DS_ATTRIBUTE_OR_VALUE_EXISTS = 0xC00002A4;
-pub const DS_BUSY = 0xC00002A5;
-pub const DS_UNAVAILABLE = 0xC00002A6;
-pub const DS_NO_RIDS_ALLOCATED = 0xC00002A7;
-pub const DS_NO_MORE_RIDS = 0xC00002A8;
-pub const DS_INCORRECT_ROLE_OWNER = 0xC00002A9;
-pub const DS_RIDMGR_INIT_ERROR = 0xC00002AA;
-pub const DS_OBJ_CLASS_VIOLATION = 0xC00002AB;
-pub const DS_CANT_ON_NON_LEAF = 0xC00002AC;
-pub const DS_CANT_ON_RDN = 0xC00002AD;
-pub const DS_CANT_MOD_OBJ_CLASS = 0xC00002AE;
-pub const DS_CROSS_DOM_MOVE_FAILED = 0xC00002AF;
-pub const DS_GC_NOT_AVAILABLE = 0xC00002B0;
-pub const DIRECTORY_SERVICE_REQUIRED = 0xC00002B1;
-pub const REPARSE_ATTRIBUTE_CONFLICT = 0xC00002B2;
-pub const CANT_ENABLE_DENY_ONLY = 0xC00002B3;
-pub const FLOAT_MULTIPLE_FAULTS = 0xC00002B4;
-pub const FLOAT_MULTIPLE_TRAPS = 0xC00002B5;
-pub const DEVICE_REMOVED = 0xC00002B6;
-pub const JOURNAL_DELETE_IN_PROGRESS = 0xC00002B7;
-pub const JOURNAL_NOT_ACTIVE = 0xC00002B8;
-pub const NOINTERFACE = 0xC00002B9;
-pub const DS_ADMIN_LIMIT_EXCEEDED = 0xC00002C1;
-pub const DRIVER_FAILED_SLEEP = 0xC00002C2;
-pub const MUTUAL_AUTHENTICATION_FAILED = 0xC00002C3;
-pub const CORRUPT_SYSTEM_FILE = 0xC00002C4;
-pub const DATATYPE_MISALIGNMENT_ERROR = 0xC00002C5;
-pub const WMI_READ_ONLY = 0xC00002C6;
-pub const WMI_SET_FAILURE = 0xC00002C7;
-pub const COMMITMENT_MINIMUM = 0xC00002C8;
-pub const REG_NAT_CONSUMPTION = 0xC00002C9;
-pub const TRANSPORT_FULL = 0xC00002CA;
-pub const DS_SAM_INIT_FAILURE = 0xC00002CB;
-pub const ONLY_IF_CONNECTED = 0xC00002CC;
-pub const DS_SENSITIVE_GROUP_VIOLATION = 0xC00002CD;
-pub const PNP_RESTART_ENUMERATION = 0xC00002CE;
-pub const JOURNAL_ENTRY_DELETED = 0xC00002CF;
-pub const DS_CANT_MOD_PRIMARYGROUPID = 0xC00002D0;
-pub const SYSTEM_IMAGE_BAD_SIGNATURE = 0xC00002D1;
-pub const PNP_REBOOT_REQUIRED = 0xC00002D2;
-pub const POWER_STATE_INVALID = 0xC00002D3;
-pub const DS_INVALID_GROUP_TYPE = 0xC00002D4;
-pub const DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN = 0xC00002D5;
-pub const DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN = 0xC00002D6;
-pub const DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER = 0xC00002D7;
-pub const DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER = 0xC00002D8;
-pub const DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER = 0xC00002D9;
-pub const DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER = 0xC00002DA;
-pub const DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER = 0xC00002DB;
-pub const DS_HAVE_PRIMARY_MEMBERS = 0xC00002DC;
-pub const WMI_NOT_SUPPORTED = 0xC00002DD;
-pub const INSUFFICIENT_POWER = 0xC00002DE;
-pub const SAM_NEED_BOOTKEY_PASSWORD = 0xC00002DF;
-pub const SAM_NEED_BOOTKEY_FLOPPY = 0xC00002E0;
-pub const DS_CANT_START = 0xC00002E1;
-pub const DS_INIT_FAILURE = 0xC00002E2;
-pub const SAM_INIT_FAILURE = 0xC00002E3;
-pub const DS_GC_REQUIRED = 0xC00002E4;
-pub const DS_LOCAL_MEMBER_OF_LOCAL_ONLY = 0xC00002E5;
-pub const DS_NO_FPO_IN_UNIVERSAL_GROUPS = 0xC00002E6;
-pub const DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED = 0xC00002E7;
-pub const CURRENT_DOMAIN_NOT_ALLOWED = 0xC00002E9;
-pub const CANNOT_MAKE = 0xC00002EA;
-pub const SYSTEM_SHUTDOWN = 0xC00002EB;
-pub const DS_INIT_FAILURE_CONSOLE = 0xC00002EC;
-pub const DS_SAM_INIT_FAILURE_CONSOLE = 0xC00002ED;
-pub const UNFINISHED_CONTEXT_DELETED = 0xC00002EE;
-pub const NO_TGT_REPLY = 0xC00002EF;
-pub const OBJECTID_NOT_FOUND = 0xC00002F0;
-pub const NO_IP_ADDRESSES = 0xC00002F1;
-pub const WRONG_CREDENTIAL_HANDLE = 0xC00002F2;
-pub const CRYPTO_SYSTEM_INVALID = 0xC00002F3;
-pub const MAX_REFERRALS_EXCEEDED = 0xC00002F4;
-pub const MUST_BE_KDC = 0xC00002F5;
-pub const STRONG_CRYPTO_NOT_SUPPORTED = 0xC00002F6;
-pub const TOO_MANY_PRINCIPALS = 0xC00002F7;
-pub const NO_PA_DATA = 0xC00002F8;
-pub const PKINIT_NAME_MISMATCH = 0xC00002F9;
-pub const SMARTCARD_LOGON_REQUIRED = 0xC00002FA;
-pub const KDC_INVALID_REQUEST = 0xC00002FB;
-pub const KDC_UNABLE_TO_REFER = 0xC00002FC;
-pub const KDC_UNKNOWN_ETYPE = 0xC00002FD;
-pub const SHUTDOWN_IN_PROGRESS = 0xC00002FE;
-pub const SERVER_SHUTDOWN_IN_PROGRESS = 0xC00002FF;
-pub const NOT_SUPPORTED_ON_SBS = 0xC0000300;
-pub const WMI_GUID_DISCONNECTED = 0xC0000301;
-pub const WMI_ALREADY_DISABLED = 0xC0000302;
-pub const WMI_ALREADY_ENABLED = 0xC0000303;
-pub const MFT_TOO_FRAGMENTED = 0xC0000304;
-pub const COPY_PROTECTION_FAILURE = 0xC0000305;
-pub const CSS_AUTHENTICATION_FAILURE = 0xC0000306;
-pub const CSS_KEY_NOT_PRESENT = 0xC0000307;
-pub const CSS_KEY_NOT_ESTABLISHED = 0xC0000308;
-pub const CSS_SCRAMBLED_SECTOR = 0xC0000309;
-pub const CSS_REGION_MISMATCH = 0xC000030A;
-pub const CSS_RESETS_EXHAUSTED = 0xC000030B;
-pub const PKINIT_FAILURE = 0xC0000320;
-pub const SMARTCARD_SUBSYSTEM_FAILURE = 0xC0000321;
-pub const NO_KERB_KEY = 0xC0000322;
-pub const HOST_DOWN = 0xC0000350;
-pub const UNSUPPORTED_PREAUTH = 0xC0000351;
-pub const EFS_ALG_BLOB_TOO_BIG = 0xC0000352;
-pub const PORT_NOT_SET = 0xC0000353;
-pub const DEBUGGER_INACTIVE = 0xC0000354;
-pub const DS_VERSION_CHECK_FAILURE = 0xC0000355;
-pub const AUDITING_DISABLED = 0xC0000356;
-pub const PRENT4_MACHINE_ACCOUNT = 0xC0000357;
-pub const DS_AG_CANT_HAVE_UNIVERSAL_MEMBER = 0xC0000358;
-pub const INVALID_IMAGE_WIN_32 = 0xC0000359;
-pub const INVALID_IMAGE_WIN_64 = 0xC000035A;
-pub const BAD_BINDINGS = 0xC000035B;
-pub const NETWORK_SESSION_EXPIRED = 0xC000035C;
-pub const APPHELP_BLOCK = 0xC000035D;
-pub const ALL_SIDS_FILTERED = 0xC000035E;
-pub const NOT_SAFE_MODE_DRIVER = 0xC000035F;
-pub const ACCESS_DISABLED_BY_POLICY_DEFAULT = 0xC0000361;
-pub const ACCESS_DISABLED_BY_POLICY_PATH = 0xC0000362;
-pub const ACCESS_DISABLED_BY_POLICY_PUBLISHER = 0xC0000363;
-pub const ACCESS_DISABLED_BY_POLICY_OTHER = 0xC0000364;
-pub const FAILED_DRIVER_ENTRY = 0xC0000365;
-pub const DEVICE_ENUMERATION_ERROR = 0xC0000366;
-pub const MOUNT_POINT_NOT_RESOLVED = 0xC0000368;
-pub const INVALID_DEVICE_OBJECT_PARAMETER = 0xC0000369;
-pub const MCA_OCCURED = 0xC000036A;
-pub const DRIVER_BLOCKED_CRITICAL = 0xC000036B;
-pub const DRIVER_BLOCKED = 0xC000036C;
-pub const DRIVER_DATABASE_ERROR = 0xC000036D;
-pub const SYSTEM_HIVE_TOO_LARGE = 0xC000036E;
-pub const INVALID_IMPORT_OF_NON_DLL = 0xC000036F;
-pub const NO_SECRETS = 0xC0000371;
-pub const ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY = 0xC0000372;
-pub const FAILED_STACK_SWITCH = 0xC0000373;
-pub const HEAP_CORRUPTION = 0xC0000374;
-pub const SMARTCARD_WRONG_PIN = 0xC0000380;
-pub const SMARTCARD_CARD_BLOCKED = 0xC0000381;
-pub const SMARTCARD_CARD_NOT_AUTHENTICATED = 0xC0000382;
-pub const SMARTCARD_NO_CARD = 0xC0000383;
-pub const SMARTCARD_NO_KEY_CONTAINER = 0xC0000384;
-pub const SMARTCARD_NO_CERTIFICATE = 0xC0000385;
-pub const SMARTCARD_NO_KEYSET = 0xC0000386;
-pub const SMARTCARD_IO_ERROR = 0xC0000387;
-pub const DOWNGRADE_DETECTED = 0xC0000388;
-pub const SMARTCARD_CERT_REVOKED = 0xC0000389;
-pub const ISSUING_CA_UNTRUSTED = 0xC000038A;
-pub const REVOCATION_OFFLINE_C = 0xC000038B;
-pub const PKINIT_CLIENT_FAILURE = 0xC000038C;
-pub const SMARTCARD_CERT_EXPIRED = 0xC000038D;
-pub const DRIVER_FAILED_PRIOR_UNLOAD = 0xC000038E;
-pub const SMARTCARD_SILENT_CONTEXT = 0xC000038F;
-pub const PER_USER_TRUST_QUOTA_EXCEEDED = 0xC0000401;
-pub const ALL_USER_TRUST_QUOTA_EXCEEDED = 0xC0000402;
-pub const USER_DELETE_TRUST_QUOTA_EXCEEDED = 0xC0000403;
-pub const DS_NAME_NOT_UNIQUE = 0xC0000404;
-pub const DS_DUPLICATE_ID_FOUND = 0xC0000405;
-pub const DS_GROUP_CONVERSION_ERROR = 0xC0000406;
-pub const VOLSNAP_PREPARE_HIBERNATE = 0xC0000407;
-pub const USER2USER_REQUIRED = 0xC0000408;
-pub const STACK_BUFFER_OVERRUN = 0xC0000409;
-pub const NO_S4U_PROT_SUPPORT = 0xC000040A;
-pub const CROSSREALM_DELEGATION_FAILURE = 0xC000040B;
-pub const REVOCATION_OFFLINE_KDC = 0xC000040C;
-pub const ISSUING_CA_UNTRUSTED_KDC = 0xC000040D;
-pub const KDC_CERT_EXPIRED = 0xC000040E;
-pub const KDC_CERT_REVOKED = 0xC000040F;
-pub const PARAMETER_QUOTA_EXCEEDED = 0xC0000410;
-pub const HIBERNATION_FAILURE = 0xC0000411;
-pub const DELAY_LOAD_FAILED = 0xC0000412;
-pub const AUTHENTICATION_FIREWALL_FAILED = 0xC0000413;
-pub const VDM_DISALLOWED = 0xC0000414;
-pub const HUNG_DISPLAY_DRIVER_THREAD = 0xC0000415;
-pub const INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE = 0xC0000416;
-pub const INVALID_CRUNTIME_PARAMETER = 0xC0000417;
-pub const NTLM_BLOCKED = 0xC0000418;
-pub const DS_SRC_SID_EXISTS_IN_FOREST = 0xC0000419;
-pub const DS_DOMAIN_NAME_EXISTS_IN_FOREST = 0xC000041A;
-pub const DS_FLAT_NAME_EXISTS_IN_FOREST = 0xC000041B;
-pub const INVALID_USER_PRINCIPAL_NAME = 0xC000041C;
-pub const ASSERTION_FAILURE = 0xC0000420;
-pub const VERIFIER_STOP = 0xC0000421;
-pub const CALLBACK_POP_STACK = 0xC0000423;
-pub const INCOMPATIBLE_DRIVER_BLOCKED = 0xC0000424;
-pub const HIVE_UNLOADED = 0xC0000425;
-pub const COMPRESSION_DISABLED = 0xC0000426;
-pub const FILE_SYSTEM_LIMITATION = 0xC0000427;
-pub const INVALID_IMAGE_HASH = 0xC0000428;
-pub const NOT_CAPABLE = 0xC0000429;
-pub const REQUEST_OUT_OF_SEQUENCE = 0xC000042A;
-pub const IMPLEMENTATION_LIMIT = 0xC000042B;
-pub const ELEVATION_REQUIRED = 0xC000042C;
-pub const NO_SECURITY_CONTEXT = 0xC000042D;
-pub const PKU2U_CERT_FAILURE = 0xC000042E;
-pub const BEYOND_VDL = 0xC0000432;
-pub const ENCOUNTERED_WRITE_IN_PROGRESS = 0xC0000433;
-pub const PTE_CHANGED = 0xC0000434;
-pub const PURGE_FAILED = 0xC0000435;
-pub const CRED_REQUIRES_CONFIRMATION = 0xC0000440;
-pub const CS_ENCRYPTION_INVALID_SERVER_RESPONSE = 0xC0000441;
-pub const CS_ENCRYPTION_UNSUPPORTED_SERVER = 0xC0000442;
-pub const CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE = 0xC0000443;
-pub const CS_ENCRYPTION_NEW_ENCRYPTED_FILE = 0xC0000444;
-pub const CS_ENCRYPTION_FILE_NOT_CSE = 0xC0000445;
-pub const INVALID_LABEL = 0xC0000446;
-pub const DRIVER_PROCESS_TERMINATED = 0xC0000450;
-pub const AMBIGUOUS_SYSTEM_DEVICE = 0xC0000451;
-pub const SYSTEM_DEVICE_NOT_FOUND = 0xC0000452;
-pub const RESTART_BOOT_APPLICATION = 0xC0000453;
-pub const INSUFFICIENT_NVRAM_RESOURCES = 0xC0000454;
-pub const INVALID_TASK_NAME = 0xC0000500;
-pub const INVALID_TASK_INDEX = 0xC0000501;
-pub const THREAD_ALREADY_IN_TASK = 0xC0000502;
-pub const CALLBACK_BYPASS = 0xC0000503;
-pub const FAIL_FAST_EXCEPTION = 0xC0000602;
-pub const IMAGE_CERT_REVOKED = 0xC0000603;
-pub const PORT_CLOSED = 0xC0000700;
-pub const MESSAGE_LOST = 0xC0000701;
-pub const INVALID_MESSAGE = 0xC0000702;
-pub const REQUEST_CANCELED = 0xC0000703;
-pub const RECURSIVE_DISPATCH = 0xC0000704;
-pub const LPC_RECEIVE_BUFFER_EXPECTED = 0xC0000705;
-pub const LPC_INVALID_CONNECTION_USAGE = 0xC0000706;
-pub const LPC_REQUESTS_NOT_ALLOWED = 0xC0000707;
-pub const RESOURCE_IN_USE = 0xC0000708;
-pub const HARDWARE_MEMORY_ERROR = 0xC0000709;
-pub const THREADPOOL_HANDLE_EXCEPTION = 0xC000070A;
-pub const THREADPOOL_SET_EVENT_ON_COMPLETION_FAILED = 0xC000070B;
-pub const THREADPOOL_RELEASE_SEMAPHORE_ON_COMPLETION_FAILED = 0xC000070C;
-pub const THREADPOOL_RELEASE_MUTEX_ON_COMPLETION_FAILED = 0xC000070D;
-pub const THREADPOOL_FREE_LIBRARY_ON_COMPLETION_FAILED = 0xC000070E;
-pub const THREADPOOL_RELEASED_DURING_OPERATION = 0xC000070F;
-pub const CALLBACK_RETURNED_WHILE_IMPERSONATING = 0xC0000710;
-pub const APC_RETURNED_WHILE_IMPERSONATING = 0xC0000711;
-pub const PROCESS_IS_PROTECTED = 0xC0000712;
-pub const MCA_EXCEPTION = 0xC0000713;
-pub const CERTIFICATE_MAPPING_NOT_UNIQUE = 0xC0000714;
-pub const SYMLINK_CLASS_DISABLED = 0xC0000715;
-pub const INVALID_IDN_NORMALIZATION = 0xC0000716;
-pub const NO_UNICODE_TRANSLATION = 0xC0000717;
-pub const ALREADY_REGISTERED = 0xC0000718;
-pub const CONTEXT_MISMATCH = 0xC0000719;
-pub const PORT_ALREADY_HAS_COMPLETION_LIST = 0xC000071A;
-pub const CALLBACK_RETURNED_THREAD_PRIORITY = 0xC000071B;
-pub const INVALID_THREAD = 0xC000071C;
-pub const CALLBACK_RETURNED_TRANSACTION = 0xC000071D;
-pub const CALLBACK_RETURNED_LDR_LOCK = 0xC000071E;
-pub const CALLBACK_RETURNED_LANG = 0xC000071F;
-pub const CALLBACK_RETURNED_PRI_BACK = 0xC0000720;
-pub const DISK_REPAIR_DISABLED = 0xC0000800;
-pub const DS_DOMAIN_RENAME_IN_PROGRESS = 0xC0000801;
-pub const DISK_QUOTA_EXCEEDED = 0xC0000802;
-pub const CONTENT_BLOCKED = 0xC0000804;
-pub const BAD_CLUSTERS = 0xC0000805;
-pub const VOLUME_DIRTY = 0xC0000806;
-pub const FILE_CHECKED_OUT = 0xC0000901;
-pub const CHECKOUT_REQUIRED = 0xC0000902;
-pub const BAD_FILE_TYPE = 0xC0000903;
-pub const FILE_TOO_LARGE = 0xC0000904;
-pub const FORMS_AUTH_REQUIRED = 0xC0000905;
-pub const VIRUS_INFECTED = 0xC0000906;
-pub const VIRUS_DELETED = 0xC0000907;
-pub const BAD_MCFG_TABLE = 0xC0000908;
-pub const CANNOT_BREAK_OPLOCK = 0xC0000909;
-pub const WOW_ASSERTION = 0xC0009898;
-pub const INVALID_SIGNATURE = 0xC000A000;
-pub const HMAC_NOT_SUPPORTED = 0xC000A001;
-pub const IPSEC_QUEUE_OVERFLOW = 0xC000A010;
-pub const ND_QUEUE_OVERFLOW = 0xC000A011;
-pub const HOPLIMIT_EXCEEDED = 0xC000A012;
-pub const PROTOCOL_NOT_SUPPORTED = 0xC000A013;
-pub const LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED = 0xC000A080;
-pub const LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR = 0xC000A081;
-pub const LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR = 0xC000A082;
-pub const XML_PARSE_ERROR = 0xC000A083;
-pub const XMLDSIG_ERROR = 0xC000A084;
-pub const WRONG_COMPARTMENT = 0xC000A085;
-pub const AUTHIP_FAILURE = 0xC000A086;
-pub const DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS = 0xC000A087;
-pub const DS_OID_NOT_FOUND = 0xC000A088;
-pub const HASH_NOT_SUPPORTED = 0xC000A100;
-pub const HASH_NOT_PRESENT = 0xC000A101;
-pub const PNP_BAD_MPS_TABLE = 0xC0040035;
-pub const PNP_TRANSLATION_FAILED = 0xC0040036;
-pub const PNP_IRQ_TRANSLATION_FAILED = 0xC0040037;
-pub const PNP_INVALID_ID = 0xC0040038;
-pub const IO_REISSUE_AS_CACHED = 0xC0040039;
-pub const CTX_WINSTATION_NAME_INVALID = 0xC00A0001;
-pub const CTX_INVALID_PD = 0xC00A0002;
-pub const CTX_PD_NOT_FOUND = 0xC00A0003;
-pub const CTX_CLOSE_PENDING = 0xC00A0006;
-pub const CTX_NO_OUTBUF = 0xC00A0007;
-pub const CTX_MODEM_INF_NOT_FOUND = 0xC00A0008;
-pub const CTX_INVALID_MODEMNAME = 0xC00A0009;
-pub const CTX_RESPONSE_ERROR = 0xC00A000A;
-pub const CTX_MODEM_RESPONSE_TIMEOUT = 0xC00A000B;
-pub const CTX_MODEM_RESPONSE_NO_CARRIER = 0xC00A000C;
-pub const CTX_MODEM_RESPONSE_NO_DIALTONE = 0xC00A000D;
-pub const CTX_MODEM_RESPONSE_BUSY = 0xC00A000E;
-pub const CTX_MODEM_RESPONSE_VOICE = 0xC00A000F;
-pub const CTX_TD_ERROR = 0xC00A0010;
-pub const CTX_LICENSE_CLIENT_INVALID = 0xC00A0012;
-pub const CTX_LICENSE_NOT_AVAILABLE = 0xC00A0013;
-pub const CTX_LICENSE_EXPIRED = 0xC00A0014;
-pub const CTX_WINSTATION_NOT_FOUND = 0xC00A0015;
-pub const CTX_WINSTATION_NAME_COLLISION = 0xC00A0016;
-pub const CTX_WINSTATION_BUSY = 0xC00A0017;
-pub const CTX_BAD_VIDEO_MODE = 0xC00A0018;
-pub const CTX_GRAPHICS_INVALID = 0xC00A0022;
-pub const CTX_NOT_CONSOLE = 0xC00A0024;
-pub const CTX_CLIENT_QUERY_TIMEOUT = 0xC00A0026;
-pub const CTX_CONSOLE_DISCONNECT = 0xC00A0027;
-pub const CTX_CONSOLE_CONNECT = 0xC00A0028;
-pub const CTX_SHADOW_DENIED = 0xC00A002A;
-pub const CTX_WINSTATION_ACCESS_DENIED = 0xC00A002B;
-pub const CTX_INVALID_WD = 0xC00A002E;
-pub const CTX_WD_NOT_FOUND = 0xC00A002F;
-pub const CTX_SHADOW_INVALID = 0xC00A0030;
-pub const CTX_SHADOW_DISABLED = 0xC00A0031;
-pub const RDP_PROTOCOL_ERROR = 0xC00A0032;
-pub const CTX_CLIENT_LICENSE_NOT_SET = 0xC00A0033;
-pub const CTX_CLIENT_LICENSE_IN_USE = 0xC00A0034;
-pub const CTX_SHADOW_ENDED_BY_MODE_CHANGE = 0xC00A0035;
-pub const CTX_SHADOW_NOT_RUNNING = 0xC00A0036;
-pub const CTX_LOGON_DISABLED = 0xC00A0037;
-pub const CTX_SECURITY_LAYER_ERROR = 0xC00A0038;
-pub const TS_INCOMPATIBLE_SESSIONS = 0xC00A0039;
-pub const MUI_FILE_NOT_FOUND = 0xC00B0001;
-pub const MUI_INVALID_FILE = 0xC00B0002;
-pub const MUI_INVALID_RC_CONFIG = 0xC00B0003;
-pub const MUI_INVALID_LOCALE_NAME = 0xC00B0004;
-pub const MUI_INVALID_ULTIMATEFALLBACK_NAME = 0xC00B0005;
-pub const MUI_FILE_NOT_LOADED = 0xC00B0006;
-pub const RESOURCE_ENUM_USER_STOP = 0xC00B0007;
-pub const CLUSTER_INVALID_NODE = 0xC0130001;
-pub const CLUSTER_NODE_EXISTS = 0xC0130002;
-pub const CLUSTER_JOIN_IN_PROGRESS = 0xC0130003;
-pub const CLUSTER_NODE_NOT_FOUND = 0xC0130004;
-pub const CLUSTER_LOCAL_NODE_NOT_FOUND = 0xC0130005;
-pub const CLUSTER_NETWORK_EXISTS = 0xC0130006;
-pub const CLUSTER_NETWORK_NOT_FOUND = 0xC0130007;
-pub const CLUSTER_NETINTERFACE_EXISTS = 0xC0130008;
-pub const CLUSTER_NETINTERFACE_NOT_FOUND = 0xC0130009;
-pub const CLUSTER_INVALID_REQUEST = 0xC013000A;
-pub const CLUSTER_INVALID_NETWORK_PROVIDER = 0xC013000B;
-pub const CLUSTER_NODE_DOWN = 0xC013000C;
-pub const CLUSTER_NODE_UNREACHABLE = 0xC013000D;
-pub const CLUSTER_NODE_NOT_MEMBER = 0xC013000E;
-pub const CLUSTER_JOIN_NOT_IN_PROGRESS = 0xC013000F;
-pub const CLUSTER_INVALID_NETWORK = 0xC0130010;
-pub const CLUSTER_NO_NET_ADAPTERS = 0xC0130011;
-pub const CLUSTER_NODE_UP = 0xC0130012;
-pub const CLUSTER_NODE_PAUSED = 0xC0130013;
-pub const CLUSTER_NODE_NOT_PAUSED = 0xC0130014;
-pub const CLUSTER_NO_SECURITY_CONTEXT = 0xC0130015;
-pub const CLUSTER_NETWORK_NOT_INTERNAL = 0xC0130016;
-pub const CLUSTER_POISONED = 0xC0130017;
-pub const ACPI_INVALID_OPCODE = 0xC0140001;
-pub const ACPI_STACK_OVERFLOW = 0xC0140002;
-pub const ACPI_ASSERT_FAILED = 0xC0140003;
-pub const ACPI_INVALID_INDEX = 0xC0140004;
-pub const ACPI_INVALID_ARGUMENT = 0xC0140005;
-pub const ACPI_FATAL = 0xC0140006;
-pub const ACPI_INVALID_SUPERNAME = 0xC0140007;
-pub const ACPI_INVALID_ARGTYPE = 0xC0140008;
-pub const ACPI_INVALID_OBJTYPE = 0xC0140009;
-pub const ACPI_INVALID_TARGETTYPE = 0xC014000A;
-pub const ACPI_INCORRECT_ARGUMENT_COUNT = 0xC014000B;
-pub const ACPI_ADDRESS_NOT_MAPPED = 0xC014000C;
-pub const ACPI_INVALID_EVENTTYPE = 0xC014000D;
-pub const ACPI_HANDLER_COLLISION = 0xC014000E;
-pub const ACPI_INVALID_DATA = 0xC014000F;
-pub const ACPI_INVALID_REGION = 0xC0140010;
-pub const ACPI_INVALID_ACCESS_SIZE = 0xC0140011;
-pub const ACPI_ACQUIRE_GLOBAL_LOCK = 0xC0140012;
-pub const ACPI_ALREADY_INITIALIZED = 0xC0140013;
-pub const ACPI_NOT_INITIALIZED = 0xC0140014;
-pub const ACPI_INVALID_MUTEX_LEVEL = 0xC0140015;
-pub const ACPI_MUTEX_NOT_OWNED = 0xC0140016;
-pub const ACPI_MUTEX_NOT_OWNER = 0xC0140017;
-pub const ACPI_RS_ACCESS = 0xC0140018;
-pub const ACPI_INVALID_TABLE = 0xC0140019;
-pub const ACPI_REG_HANDLER_FAILED = 0xC0140020;
-pub const ACPI_POWER_REQUEST_FAILED = 0xC0140021;
-pub const SXS_SECTION_NOT_FOUND = 0xC0150001;
-pub const SXS_CANT_GEN_ACTCTX = 0xC0150002;
-pub const SXS_INVALID_ACTCTXDATA_FORMAT = 0xC0150003;
-pub const SXS_ASSEMBLY_NOT_FOUND = 0xC0150004;
-pub const SXS_MANIFEST_FORMAT_ERROR = 0xC0150005;
-pub const SXS_MANIFEST_PARSE_ERROR = 0xC0150006;
-pub const SXS_ACTIVATION_CONTEXT_DISABLED = 0xC0150007;
-pub const SXS_KEY_NOT_FOUND = 0xC0150008;
-pub const SXS_VERSION_CONFLICT = 0xC0150009;
-pub const SXS_WRONG_SECTION_TYPE = 0xC015000A;
-pub const SXS_THREAD_QUERIES_DISABLED = 0xC015000B;
-pub const SXS_ASSEMBLY_MISSING = 0xC015000C;
-pub const SXS_PROCESS_DEFAULT_ALREADY_SET = 0xC015000E;
-pub const SXS_EARLY_DEACTIVATION = 0xC015000F;
-pub const SXS_INVALID_DEACTIVATION = 0xC0150010;
-pub const SXS_MULTIPLE_DEACTIVATION = 0xC0150011;
-pub const SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY = 0xC0150012;
-pub const SXS_PROCESS_TERMINATION_REQUESTED = 0xC0150013;
-pub const SXS_CORRUPT_ACTIVATION_STACK = 0xC0150014;
-pub const SXS_CORRUPTION = 0xC0150015;
-pub const SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE = 0xC0150016;
-pub const SXS_INVALID_IDENTITY_ATTRIBUTE_NAME = 0xC0150017;
-pub const SXS_IDENTITY_DUPLICATE_ATTRIBUTE = 0xC0150018;
-pub const SXS_IDENTITY_PARSE_ERROR = 0xC0150019;
-pub const SXS_COMPONENT_STORE_CORRUPT = 0xC015001A;
-pub const SXS_FILE_HASH_MISMATCH = 0xC015001B;
-pub const SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT = 0xC015001C;
-pub const SXS_IDENTITIES_DIFFERENT = 0xC015001D;
-pub const SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT = 0xC015001E;
-pub const SXS_FILE_NOT_PART_OF_ASSEMBLY = 0xC015001F;
-pub const ADVANCED_INSTALLER_FAILED = 0xC0150020;
-pub const XML_ENCODING_MISMATCH = 0xC0150021;
-pub const SXS_MANIFEST_TOO_BIG = 0xC0150022;
-pub const SXS_SETTING_NOT_REGISTERED = 0xC0150023;
-pub const SXS_TRANSACTION_CLOSURE_INCOMPLETE = 0xC0150024;
-pub const SMI_PRIMITIVE_INSTALLER_FAILED = 0xC0150025;
-pub const GENERIC_COMMAND_FAILED = 0xC0150026;
-pub const SXS_FILE_HASH_MISSING = 0xC0150027;
-pub const TRANSACTIONAL_CONFLICT = 0xC0190001;
-pub const INVALID_TRANSACTION = 0xC0190002;
-pub const TRANSACTION_NOT_ACTIVE = 0xC0190003;
-pub const TM_INITIALIZATION_FAILED = 0xC0190004;
-pub const RM_NOT_ACTIVE = 0xC0190005;
-pub const RM_METADATA_CORRUPT = 0xC0190006;
-pub const TRANSACTION_NOT_JOINED = 0xC0190007;
-pub const DIRECTORY_NOT_RM = 0xC0190008;
-pub const TRANSACTIONS_UNSUPPORTED_REMOTE = 0xC019000A;
-pub const LOG_RESIZE_INVALID_SIZE = 0xC019000B;
-pub const REMOTE_FILE_VERSION_MISMATCH = 0xC019000C;
-pub const CRM_PROTOCOL_ALREADY_EXISTS = 0xC019000F;
-pub const TRANSACTION_PROPAGATION_FAILED = 0xC0190010;
-pub const CRM_PROTOCOL_NOT_FOUND = 0xC0190011;
-pub const TRANSACTION_SUPERIOR_EXISTS = 0xC0190012;
-pub const TRANSACTION_REQUEST_NOT_VALID = 0xC0190013;
-pub const TRANSACTION_NOT_REQUESTED = 0xC0190014;
-pub const TRANSACTION_ALREADY_ABORTED = 0xC0190015;
-pub const TRANSACTION_ALREADY_COMMITTED = 0xC0190016;
-pub const TRANSACTION_INVALID_MARSHALL_BUFFER = 0xC0190017;
-pub const CURRENT_TRANSACTION_NOT_VALID = 0xC0190018;
-pub const LOG_GROWTH_FAILED = 0xC0190019;
-pub const OBJECT_NO_LONGER_EXISTS = 0xC0190021;
-pub const STREAM_MINIVERSION_NOT_FOUND = 0xC0190022;
-pub const STREAM_MINIVERSION_NOT_VALID = 0xC0190023;
-pub const MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION = 0xC0190024;
-pub const CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT = 0xC0190025;
-pub const CANT_CREATE_MORE_STREAM_MINIVERSIONS = 0xC0190026;
-pub const HANDLE_NO_LONGER_VALID = 0xC0190028;
-pub const LOG_CORRUPTION_DETECTED = 0xC0190030;
-pub const RM_DISCONNECTED = 0xC0190032;
-pub const ENLISTMENT_NOT_SUPERIOR = 0xC0190033;
-pub const FILE_IDENTITY_NOT_PERSISTENT = 0xC0190036;
-pub const CANT_BREAK_TRANSACTIONAL_DEPENDENCY = 0xC0190037;
-pub const CANT_CROSS_RM_BOUNDARY = 0xC0190038;
-pub const TXF_DIR_NOT_EMPTY = 0xC0190039;
-pub const INDOUBT_TRANSACTIONS_EXIST = 0xC019003A;
-pub const TM_VOLATILE = 0xC019003B;
-pub const ROLLBACK_TIMER_EXPIRED = 0xC019003C;
-pub const TXF_ATTRIBUTE_CORRUPT = 0xC019003D;
-pub const EFS_NOT_ALLOWED_IN_TRANSACTION = 0xC019003E;
-pub const TRANSACTIONAL_OPEN_NOT_ALLOWED = 0xC019003F;
-pub const TRANSACTED_MAPPING_UNSUPPORTED_REMOTE = 0xC0190040;
-pub const TRANSACTION_REQUIRED_PROMOTION = 0xC0190043;
-pub const CANNOT_EXECUTE_FILE_IN_TRANSACTION = 0xC0190044;
-pub const TRANSACTIONS_NOT_FROZEN = 0xC0190045;
-pub const TRANSACTION_FREEZE_IN_PROGRESS = 0xC0190046;
-pub const NOT_SNAPSHOT_VOLUME = 0xC0190047;
-pub const NO_SAVEPOINT_WITH_OPEN_FILES = 0xC0190048;
-pub const SPARSE_NOT_ALLOWED_IN_TRANSACTION = 0xC0190049;
-pub const TM_IDENTITY_MISMATCH = 0xC019004A;
-pub const FLOATED_SECTION = 0xC019004B;
-pub const CANNOT_ACCEPT_TRANSACTED_WORK = 0xC019004C;
-pub const CANNOT_ABORT_TRANSACTIONS = 0xC019004D;
-pub const TRANSACTION_NOT_FOUND = 0xC019004E;
-pub const RESOURCEMANAGER_NOT_FOUND = 0xC019004F;
-pub const ENLISTMENT_NOT_FOUND = 0xC0190050;
-pub const TRANSACTIONMANAGER_NOT_FOUND = 0xC0190051;
-pub const TRANSACTIONMANAGER_NOT_ONLINE = 0xC0190052;
-pub const TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION = 0xC0190053;
-pub const TRANSACTION_NOT_ROOT = 0xC0190054;
-pub const TRANSACTION_OBJECT_EXPIRED = 0xC0190055;
-pub const COMPRESSION_NOT_ALLOWED_IN_TRANSACTION = 0xC0190056;
-pub const TRANSACTION_RESPONSE_NOT_ENLISTED = 0xC0190057;
-pub const TRANSACTION_RECORD_TOO_LONG = 0xC0190058;
-pub const NO_LINK_TRACKING_IN_TRANSACTION = 0xC0190059;
-pub const OPERATION_NOT_SUPPORTED_IN_TRANSACTION = 0xC019005A;
-pub const TRANSACTION_INTEGRITY_VIOLATED = 0xC019005B;
-pub const EXPIRED_HANDLE = 0xC0190060;
-pub const TRANSACTION_NOT_ENLISTED = 0xC0190061;
-pub const LOG_SECTOR_INVALID = 0xC01A0001;
-pub const LOG_SECTOR_PARITY_INVALID = 0xC01A0002;
-pub const LOG_SECTOR_REMAPPED = 0xC01A0003;
-pub const LOG_BLOCK_INCOMPLETE = 0xC01A0004;
-pub const LOG_INVALID_RANGE = 0xC01A0005;
-pub const LOG_BLOCKS_EXHAUSTED = 0xC01A0006;
-pub const LOG_READ_CONTEXT_INVALID = 0xC01A0007;
-pub const LOG_RESTART_INVALID = 0xC01A0008;
-pub const LOG_BLOCK_VERSION = 0xC01A0009;
-pub const LOG_BLOCK_INVALID = 0xC01A000A;
-pub const LOG_READ_MODE_INVALID = 0xC01A000B;
-pub const LOG_METADATA_CORRUPT = 0xC01A000D;
-pub const LOG_METADATA_INVALID = 0xC01A000E;
-pub const LOG_METADATA_INCONSISTENT = 0xC01A000F;
-pub const LOG_RESERVATION_INVALID = 0xC01A0010;
-pub const LOG_CANT_DELETE = 0xC01A0011;
-pub const LOG_CONTAINER_LIMIT_EXCEEDED = 0xC01A0012;
-pub const LOG_START_OF_LOG = 0xC01A0013;
-pub const LOG_POLICY_ALREADY_INSTALLED = 0xC01A0014;
-pub const LOG_POLICY_NOT_INSTALLED = 0xC01A0015;
-pub const LOG_POLICY_INVALID = 0xC01A0016;
-pub const LOG_POLICY_CONFLICT = 0xC01A0017;
-pub const LOG_PINNED_ARCHIVE_TAIL = 0xC01A0018;
-pub const LOG_RECORD_NONEXISTENT = 0xC01A0019;
-pub const LOG_RECORDS_RESERVED_INVALID = 0xC01A001A;
-pub const LOG_SPACE_RESERVED_INVALID = 0xC01A001B;
-pub const LOG_TAIL_INVALID = 0xC01A001C;
-pub const LOG_FULL = 0xC01A001D;
-pub const LOG_MULTIPLEXED = 0xC01A001E;
-pub const LOG_DEDICATED = 0xC01A001F;
-pub const LOG_ARCHIVE_NOT_IN_PROGRESS = 0xC01A0020;
-pub const LOG_ARCHIVE_IN_PROGRESS = 0xC01A0021;
-pub const LOG_EPHEMERAL = 0xC01A0022;
-pub const LOG_NOT_ENOUGH_CONTAINERS = 0xC01A0023;
-pub const LOG_CLIENT_ALREADY_REGISTERED = 0xC01A0024;
-pub const LOG_CLIENT_NOT_REGISTERED = 0xC01A0025;
-pub const LOG_FULL_HANDLER_IN_PROGRESS = 0xC01A0026;
-pub const LOG_CONTAINER_READ_FAILED = 0xC01A0027;
-pub const LOG_CONTAINER_WRITE_FAILED = 0xC01A0028;
-pub const LOG_CONTAINER_OPEN_FAILED = 0xC01A0029;
-pub const LOG_CONTAINER_STATE_INVALID = 0xC01A002A;
-pub const LOG_STATE_INVALID = 0xC01A002B;
-pub const LOG_PINNED = 0xC01A002C;
-pub const LOG_METADATA_FLUSH_FAILED = 0xC01A002D;
-pub const LOG_INCONSISTENT_SECURITY = 0xC01A002E;
-pub const LOG_APPENDED_FLUSH_FAILED = 0xC01A002F;
-pub const LOG_PINNED_RESERVATION = 0xC01A0030;
-pub const VIDEO_HUNG_DISPLAY_DRIVER_THREAD = 0xC01B00EA;
-pub const FLT_NO_HANDLER_DEFINED = 0xC01C0001;
-pub const FLT_CONTEXT_ALREADY_DEFINED = 0xC01C0002;
-pub const FLT_INVALID_ASYNCHRONOUS_REQUEST = 0xC01C0003;
-pub const FLT_DISALLOW_FAST_IO = 0xC01C0004;
-pub const FLT_INVALID_NAME_REQUEST = 0xC01C0005;
-pub const FLT_NOT_SAFE_TO_POST_OPERATION = 0xC01C0006;
-pub const FLT_NOT_INITIALIZED = 0xC01C0007;
-pub const FLT_FILTER_NOT_READY = 0xC01C0008;
-pub const FLT_POST_OPERATION_CLEANUP = 0xC01C0009;
-pub const FLT_INTERNAL_ERROR = 0xC01C000A;
-pub const FLT_DELETING_OBJECT = 0xC01C000B;
-pub const FLT_MUST_BE_NONPAGED_POOL = 0xC01C000C;
-pub const FLT_DUPLICATE_ENTRY = 0xC01C000D;
-pub const FLT_CBDQ_DISABLED = 0xC01C000E;
-pub const FLT_DO_NOT_ATTACH = 0xC01C000F;
-pub const FLT_DO_NOT_DETACH = 0xC01C0010;
-pub const FLT_INSTANCE_ALTITUDE_COLLISION = 0xC01C0011;
-pub const FLT_INSTANCE_NAME_COLLISION = 0xC01C0012;
-pub const FLT_FILTER_NOT_FOUND = 0xC01C0013;
-pub const FLT_VOLUME_NOT_FOUND = 0xC01C0014;
-pub const FLT_INSTANCE_NOT_FOUND = 0xC01C0015;
-pub const FLT_CONTEXT_ALLOCATION_NOT_FOUND = 0xC01C0016;
-pub const FLT_INVALID_CONTEXT_REGISTRATION = 0xC01C0017;
-pub const FLT_NAME_CACHE_MISS = 0xC01C0018;
-pub const FLT_NO_DEVICE_OBJECT = 0xC01C0019;
-pub const FLT_VOLUME_ALREADY_MOUNTED = 0xC01C001A;
-pub const FLT_ALREADY_ENLISTED = 0xC01C001B;
-pub const FLT_CONTEXT_ALREADY_LINKED = 0xC01C001C;
-pub const FLT_NO_WAITER_FOR_REPLY = 0xC01C0020;
-pub const MONITOR_NO_DESCRIPTOR = 0xC01D0001;
-pub const MONITOR_UNKNOWN_DESCRIPTOR_FORMAT = 0xC01D0002;
-pub const MONITOR_INVALID_DESCRIPTOR_CHECKSUM = 0xC01D0003;
-pub const MONITOR_INVALID_STANDARD_TIMING_BLOCK = 0xC01D0004;
-pub const MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED = 0xC01D0005;
-pub const MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK = 0xC01D0006;
-pub const MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK = 0xC01D0007;
-pub const MONITOR_NO_MORE_DESCRIPTOR_DATA = 0xC01D0008;
-pub const MONITOR_INVALID_DETAILED_TIMING_BLOCK = 0xC01D0009;
-pub const MONITOR_INVALID_MANUFACTURE_DATE = 0xC01D000A;
-pub const GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER = 0xC01E0000;
-pub const GRAPHICS_INSUFFICIENT_DMA_BUFFER = 0xC01E0001;
-pub const GRAPHICS_INVALID_DISPLAY_ADAPTER = 0xC01E0002;
-pub const GRAPHICS_ADAPTER_WAS_RESET = 0xC01E0003;
-pub const GRAPHICS_INVALID_DRIVER_MODEL = 0xC01E0004;
-pub const GRAPHICS_PRESENT_MODE_CHANGED = 0xC01E0005;
-pub const GRAPHICS_PRESENT_OCCLUDED = 0xC01E0006;
-pub const GRAPHICS_PRESENT_DENIED = 0xC01E0007;
-pub const GRAPHICS_CANNOTCOLORCONVERT = 0xC01E0008;
-pub const GRAPHICS_PRESENT_REDIRECTION_DISABLED = 0xC01E000B;
-pub const GRAPHICS_PRESENT_UNOCCLUDED = 0xC01E000C;
-pub const GRAPHICS_NO_VIDEO_MEMORY = 0xC01E0100;
-pub const GRAPHICS_CANT_LOCK_MEMORY = 0xC01E0101;
-pub const GRAPHICS_ALLOCATION_BUSY = 0xC01E0102;
-pub const GRAPHICS_TOO_MANY_REFERENCES = 0xC01E0103;
-pub const GRAPHICS_TRY_AGAIN_LATER = 0xC01E0104;
-pub const GRAPHICS_TRY_AGAIN_NOW = 0xC01E0105;
-pub const GRAPHICS_ALLOCATION_INVALID = 0xC01E0106;
-pub const GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE = 0xC01E0107;
-pub const GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED = 0xC01E0108;
-pub const GRAPHICS_CANT_EVICT_PINNED_ALLOCATION = 0xC01E0109;
-pub const GRAPHICS_INVALID_ALLOCATION_USAGE = 0xC01E0110;
-pub const GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION = 0xC01E0111;
-pub const GRAPHICS_ALLOCATION_CLOSED = 0xC01E0112;
-pub const GRAPHICS_INVALID_ALLOCATION_INSTANCE = 0xC01E0113;
-pub const GRAPHICS_INVALID_ALLOCATION_HANDLE = 0xC01E0114;
-pub const GRAPHICS_WRONG_ALLOCATION_DEVICE = 0xC01E0115;
-pub const GRAPHICS_ALLOCATION_CONTENT_LOST = 0xC01E0116;
-pub const GRAPHICS_GPU_EXCEPTION_ON_DEVICE = 0xC01E0200;
-pub const GRAPHICS_INVALID_VIDPN_TOPOLOGY = 0xC01E0300;
-pub const GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED = 0xC01E0301;
-pub const GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED = 0xC01E0302;
-pub const GRAPHICS_INVALID_VIDPN = 0xC01E0303;
-pub const GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE = 0xC01E0304;
-pub const GRAPHICS_INVALID_VIDEO_PRESENT_TARGET = 0xC01E0305;
-pub const GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED = 0xC01E0306;
-pub const GRAPHICS_INVALID_VIDPN_SOURCEMODESET = 0xC01E0308;
-pub const GRAPHICS_INVALID_VIDPN_TARGETMODESET = 0xC01E0309;
-pub const GRAPHICS_INVALID_FREQUENCY = 0xC01E030A;
-pub const GRAPHICS_INVALID_ACTIVE_REGION = 0xC01E030B;
-pub const GRAPHICS_INVALID_TOTAL_REGION = 0xC01E030C;
-pub const GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE = 0xC01E0310;
-pub const GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE = 0xC01E0311;
-pub const GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET = 0xC01E0312;
-pub const GRAPHICS_PATH_ALREADY_IN_TOPOLOGY = 0xC01E0313;
-pub const GRAPHICS_MODE_ALREADY_IN_MODESET = 0xC01E0314;
-pub const GRAPHICS_INVALID_VIDEOPRESENTSOURCESET = 0xC01E0315;
-pub const GRAPHICS_INVALID_VIDEOPRESENTTARGETSET = 0xC01E0316;
-pub const GRAPHICS_SOURCE_ALREADY_IN_SET = 0xC01E0317;
-pub const GRAPHICS_TARGET_ALREADY_IN_SET = 0xC01E0318;
-pub const GRAPHICS_INVALID_VIDPN_PRESENT_PATH = 0xC01E0319;
-pub const GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY = 0xC01E031A;
-pub const GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET = 0xC01E031B;
-pub const GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE = 0xC01E031C;
-pub const GRAPHICS_FREQUENCYRANGE_NOT_IN_SET = 0xC01E031D;
-pub const GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET = 0xC01E031F;
-pub const GRAPHICS_STALE_MODESET = 0xC01E0320;
-pub const GRAPHICS_INVALID_MONITOR_SOURCEMODESET = 0xC01E0321;
-pub const GRAPHICS_INVALID_MONITOR_SOURCE_MODE = 0xC01E0322;
-pub const GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN = 0xC01E0323;
-pub const GRAPHICS_MODE_ID_MUST_BE_UNIQUE = 0xC01E0324;
-pub const GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION = 0xC01E0325;
-pub const GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES = 0xC01E0326;
-pub const GRAPHICS_PATH_NOT_IN_TOPOLOGY = 0xC01E0327;
-pub const GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE = 0xC01E0328;
-pub const GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET = 0xC01E0329;
-pub const GRAPHICS_INVALID_MONITORDESCRIPTORSET = 0xC01E032A;
-pub const GRAPHICS_INVALID_MONITORDESCRIPTOR = 0xC01E032B;
-pub const GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET = 0xC01E032C;
-pub const GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET = 0xC01E032D;
-pub const GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE = 0xC01E032E;
-pub const GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE = 0xC01E032F;
-pub const GRAPHICS_RESOURCES_NOT_RELATED = 0xC01E0330;
-pub const GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE = 0xC01E0331;
-pub const GRAPHICS_TARGET_ID_MUST_BE_UNIQUE = 0xC01E0332;
-pub const GRAPHICS_NO_AVAILABLE_VIDPN_TARGET = 0xC01E0333;
-pub const GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER = 0xC01E0334;
-pub const GRAPHICS_NO_VIDPNMGR = 0xC01E0335;
-pub const GRAPHICS_NO_ACTIVE_VIDPN = 0xC01E0336;
-pub const GRAPHICS_STALE_VIDPN_TOPOLOGY = 0xC01E0337;
-pub const GRAPHICS_MONITOR_NOT_CONNECTED = 0xC01E0338;
-pub const GRAPHICS_SOURCE_NOT_IN_TOPOLOGY = 0xC01E0339;
-pub const GRAPHICS_INVALID_PRIMARYSURFACE_SIZE = 0xC01E033A;
-pub const GRAPHICS_INVALID_VISIBLEREGION_SIZE = 0xC01E033B;
-pub const GRAPHICS_INVALID_STRIDE = 0xC01E033C;
-pub const GRAPHICS_INVALID_PIXELFORMAT = 0xC01E033D;
-pub const GRAPHICS_INVALID_COLORBASIS = 0xC01E033E;
-pub const GRAPHICS_INVALID_PIXELVALUEACCESSMODE = 0xC01E033F;
-pub const GRAPHICS_TARGET_NOT_IN_TOPOLOGY = 0xC01E0340;
-pub const GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT = 0xC01E0341;
-pub const GRAPHICS_VIDPN_SOURCE_IN_USE = 0xC01E0342;
-pub const GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN = 0xC01E0343;
-pub const GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL = 0xC01E0344;
-pub const GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION = 0xC01E0345;
-pub const GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED = 0xC01E0346;
-pub const GRAPHICS_INVALID_GAMMA_RAMP = 0xC01E0347;
-pub const GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED = 0xC01E0348;
-pub const GRAPHICS_MULTISAMPLING_NOT_SUPPORTED = 0xC01E0349;
-pub const GRAPHICS_MODE_NOT_IN_MODESET = 0xC01E034A;
-pub const GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON = 0xC01E034D;
-pub const GRAPHICS_INVALID_PATH_CONTENT_TYPE = 0xC01E034E;
-pub const GRAPHICS_INVALID_COPYPROTECTION_TYPE = 0xC01E034F;
-pub const GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS = 0xC01E0350;
-pub const GRAPHICS_INVALID_SCANLINE_ORDERING = 0xC01E0352;
-pub const GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED = 0xC01E0353;
-pub const GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS = 0xC01E0354;
-pub const GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT = 0xC01E0355;
-pub const GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM = 0xC01E0356;
-pub const GRAPHICS_INVALID_MONITOR_CAPABILITY_ORIGIN = 0xC01E0357;
-pub const GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE_CONSTRAINT = 0xC01E0358;
-pub const GRAPHICS_MAX_NUM_PATHS_REACHED = 0xC01E0359;
-pub const GRAPHICS_CANCEL_VIDPN_TOPOLOGY_AUGMENTATION = 0xC01E035A;
-pub const GRAPHICS_INVALID_CLIENT_TYPE = 0xC01E035B;
-pub const GRAPHICS_CLIENTVIDPN_NOT_SET = 0xC01E035C;
-pub const GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED = 0xC01E0400;
-pub const GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED = 0xC01E0401;
-pub const GRAPHICS_NOT_A_LINKED_ADAPTER = 0xC01E0430;
-pub const GRAPHICS_LEADLINK_NOT_ENUMERATED = 0xC01E0431;
-pub const GRAPHICS_CHAINLINKS_NOT_ENUMERATED = 0xC01E0432;
-pub const GRAPHICS_ADAPTER_CHAIN_NOT_READY = 0xC01E0433;
-pub const GRAPHICS_CHAINLINKS_NOT_STARTED = 0xC01E0434;
-pub const GRAPHICS_CHAINLINKS_NOT_POWERED_ON = 0xC01E0435;
-pub const GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE = 0xC01E0436;
-pub const GRAPHICS_NOT_POST_DEVICE_DRIVER = 0xC01E0438;
-pub const GRAPHICS_ADAPTER_ACCESS_NOT_EXCLUDED = 0xC01E043B;
-pub const GRAPHICS_OPM_NOT_SUPPORTED = 0xC01E0500;
-pub const GRAPHICS_COPP_NOT_SUPPORTED = 0xC01E0501;
-pub const GRAPHICS_UAB_NOT_SUPPORTED = 0xC01E0502;
-pub const GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS = 0xC01E0503;
-pub const GRAPHICS_OPM_PARAMETER_ARRAY_TOO_SMALL = 0xC01E0504;
-pub const GRAPHICS_OPM_NO_PROTECTED_OUTPUTS_EXIST = 0xC01E0505;
-pub const GRAPHICS_PVP_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME = 0xC01E0506;
-pub const GRAPHICS_PVP_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP = 0xC01E0507;
-pub const GRAPHICS_PVP_MIRRORING_DEVICES_NOT_SUPPORTED = 0xC01E0508;
-pub const GRAPHICS_OPM_INVALID_POINTER = 0xC01E050A;
-pub const GRAPHICS_OPM_INTERNAL_ERROR = 0xC01E050B;
-pub const GRAPHICS_OPM_INVALID_HANDLE = 0xC01E050C;
-pub const GRAPHICS_PVP_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE = 0xC01E050D;
-pub const GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH = 0xC01E050E;
-pub const GRAPHICS_OPM_SPANNING_MODE_ENABLED = 0xC01E050F;
-pub const GRAPHICS_OPM_THEATER_MODE_ENABLED = 0xC01E0510;
-pub const GRAPHICS_PVP_HFS_FAILED = 0xC01E0511;
-pub const GRAPHICS_OPM_INVALID_SRM = 0xC01E0512;
-pub const GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP = 0xC01E0513;
-pub const GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP = 0xC01E0514;
-pub const GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA = 0xC01E0515;
-pub const GRAPHICS_OPM_HDCP_SRM_NEVER_SET = 0xC01E0516;
-pub const GRAPHICS_OPM_RESOLUTION_TOO_HIGH = 0xC01E0517;
-pub const GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE = 0xC01E0518;
-pub const GRAPHICS_OPM_PROTECTED_OUTPUT_NO_LONGER_EXISTS = 0xC01E051A;
-pub const GRAPHICS_OPM_SESSION_TYPE_CHANGE_IN_PROGRESS = 0xC01E051B;
-pub const GRAPHICS_OPM_PROTECTED_OUTPUT_DOES_NOT_HAVE_COPP_SEMANTICS = 0xC01E051C;
-pub const GRAPHICS_OPM_INVALID_INFORMATION_REQUEST = 0xC01E051D;
-pub const GRAPHICS_OPM_DRIVER_INTERNAL_ERROR = 0xC01E051E;
-pub const GRAPHICS_OPM_PROTECTED_OUTPUT_DOES_NOT_HAVE_OPM_SEMANTICS = 0xC01E051F;
-pub const GRAPHICS_OPM_SIGNALING_NOT_SUPPORTED = 0xC01E0520;
-pub const GRAPHICS_OPM_INVALID_CONFIGURATION_REQUEST = 0xC01E0521;
-pub const GRAPHICS_I2C_NOT_SUPPORTED = 0xC01E0580;
-pub const GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST = 0xC01E0581;
-pub const GRAPHICS_I2C_ERROR_TRANSMITTING_DATA = 0xC01E0582;
-pub const GRAPHICS_I2C_ERROR_RECEIVING_DATA = 0xC01E0583;
-pub const GRAPHICS_DDCCI_VCP_NOT_SUPPORTED = 0xC01E0584;
-pub const GRAPHICS_DDCCI_INVALID_DATA = 0xC01E0585;
-pub const GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE = 0xC01E0586;
-pub const GRAPHICS_DDCCI_INVALID_CAPABILITIES_STRING = 0xC01E0587;
-pub const GRAPHICS_MCA_INTERNAL_ERROR = 0xC01E0588;
-pub const GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND = 0xC01E0589;
-pub const GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH = 0xC01E058A;
-pub const GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM = 0xC01E058B;
-pub const GRAPHICS_INVALID_PHYSICAL_MONITOR_HANDLE = 0xC01E058C;
-pub const GRAPHICS_MONITOR_NO_LONGER_EXISTS = 0xC01E058D;
-pub const GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED = 0xC01E05E0;
-pub const GRAPHICS_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME = 0xC01E05E1;
-pub const GRAPHICS_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP = 0xC01E05E2;
-pub const GRAPHICS_MIRRORING_DEVICES_NOT_SUPPORTED = 0xC01E05E3;
-pub const GRAPHICS_INVALID_POINTER = 0xC01E05E4;
-pub const GRAPHICS_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE = 0xC01E05E5;
-pub const GRAPHICS_PARAMETER_ARRAY_TOO_SMALL = 0xC01E05E6;
-pub const GRAPHICS_INTERNAL_ERROR = 0xC01E05E7;
-pub const GRAPHICS_SESSION_TYPE_CHANGE_IN_PROGRESS = 0xC01E05E8;
-pub const FVE_LOCKED_VOLUME = 0xC0210000;
-pub const FVE_NOT_ENCRYPTED = 0xC0210001;
-pub const FVE_BAD_INFORMATION = 0xC0210002;
-pub const FVE_TOO_SMALL = 0xC0210003;
-pub const FVE_FAILED_WRONG_FS = 0xC0210004;
-pub const FVE_FAILED_BAD_FS = 0xC0210005;
-pub const FVE_FS_NOT_EXTENDED = 0xC0210006;
-pub const FVE_FS_MOUNTED = 0xC0210007;
-pub const FVE_NO_LICENSE = 0xC0210008;
-pub const FVE_ACTION_NOT_ALLOWED = 0xC0210009;
-pub const FVE_BAD_DATA = 0xC021000A;
-pub const FVE_VOLUME_NOT_BOUND = 0xC021000B;
-pub const FVE_NOT_DATA_VOLUME = 0xC021000C;
-pub const FVE_CONV_READ_ERROR = 0xC021000D;
-pub const FVE_CONV_WRITE_ERROR = 0xC021000E;
-pub const FVE_OVERLAPPED_UPDATE = 0xC021000F;
-pub const FVE_FAILED_SECTOR_SIZE = 0xC0210010;
-pub const FVE_FAILED_AUTHENTICATION = 0xC0210011;
-pub const FVE_NOT_OS_VOLUME = 0xC0210012;
-pub const FVE_KEYFILE_NOT_FOUND = 0xC0210013;
-pub const FVE_KEYFILE_INVALID = 0xC0210014;
-pub const FVE_KEYFILE_NO_VMK = 0xC0210015;
-pub const FVE_TPM_DISABLED = 0xC0210016;
-pub const FVE_TPM_SRK_AUTH_NOT_ZERO = 0xC0210017;
-pub const FVE_TPM_INVALID_PCR = 0xC0210018;
-pub const FVE_TPM_NO_VMK = 0xC0210019;
-pub const FVE_PIN_INVALID = 0xC021001A;
-pub const FVE_AUTH_INVALID_APPLICATION = 0xC021001B;
-pub const FVE_AUTH_INVALID_CONFIG = 0xC021001C;
-pub const FVE_DEBUGGER_ENABLED = 0xC021001D;
-pub const FVE_DRY_RUN_FAILED = 0xC021001E;
-pub const FVE_BAD_METADATA_POINTER = 0xC021001F;
-pub const FVE_OLD_METADATA_COPY = 0xC0210020;
-pub const FVE_REBOOT_REQUIRED = 0xC0210021;
-pub const FVE_RAW_ACCESS = 0xC0210022;
-pub const FVE_RAW_BLOCKED = 0xC0210023;
-pub const FVE_NO_FEATURE_LICENSE = 0xC0210026;
-pub const FVE_POLICY_USER_DISABLE_RDV_NOT_ALLOWED = 0xC0210027;
-pub const FVE_CONV_RECOVERY_FAILED = 0xC0210028;
-pub const FVE_VIRTUALIZED_SPACE_TOO_BIG = 0xC0210029;
-pub const FVE_VOLUME_TOO_SMALL = 0xC0210030;
-pub const FWP_CALLOUT_NOT_FOUND = 0xC0220001;
-pub const FWP_CONDITION_NOT_FOUND = 0xC0220002;
-pub const FWP_FILTER_NOT_FOUND = 0xC0220003;
-pub const FWP_LAYER_NOT_FOUND = 0xC0220004;
-pub const FWP_PROVIDER_NOT_FOUND = 0xC0220005;
-pub const FWP_PROVIDER_CONTEXT_NOT_FOUND = 0xC0220006;
-pub const FWP_SUBLAYER_NOT_FOUND = 0xC0220007;
-pub const FWP_NOT_FOUND = 0xC0220008;
-pub const FWP_ALREADY_EXISTS = 0xC0220009;
-pub const FWP_IN_USE = 0xC022000A;
-pub const FWP_DYNAMIC_SESSION_IN_PROGRESS = 0xC022000B;
-pub const FWP_WRONG_SESSION = 0xC022000C;
-pub const FWP_NO_TXN_IN_PROGRESS = 0xC022000D;
-pub const FWP_TXN_IN_PROGRESS = 0xC022000E;
-pub const FWP_TXN_ABORTED = 0xC022000F;
-pub const FWP_SESSION_ABORTED = 0xC0220010;
-pub const FWP_INCOMPATIBLE_TXN = 0xC0220011;
-pub const FWP_TIMEOUT = 0xC0220012;
-pub const FWP_NET_EVENTS_DISABLED = 0xC0220013;
-pub const FWP_INCOMPATIBLE_LAYER = 0xC0220014;
-pub const FWP_KM_CLIENTS_ONLY = 0xC0220015;
-pub const FWP_LIFETIME_MISMATCH = 0xC0220016;
-pub const FWP_BUILTIN_OBJECT = 0xC0220017;
-pub const FWP_TOO_MANY_BOOTTIME_FILTERS = 0xC0220018;
-pub const FWP_TOO_MANY_CALLOUTS = 0xC0220018;
-pub const FWP_NOTIFICATION_DROPPED = 0xC0220019;
-pub const FWP_TRAFFIC_MISMATCH = 0xC022001A;
-pub const FWP_INCOMPATIBLE_SA_STATE = 0xC022001B;
-pub const FWP_NULL_POINTER = 0xC022001C;
-pub const FWP_INVALID_ENUMERATOR = 0xC022001D;
-pub const FWP_INVALID_FLAGS = 0xC022001E;
-pub const FWP_INVALID_NET_MASK = 0xC022001F;
-pub const FWP_INVALID_RANGE = 0xC0220020;
-pub const FWP_INVALID_INTERVAL = 0xC0220021;
-pub const FWP_ZERO_LENGTH_ARRAY = 0xC0220022;
-pub const FWP_NULL_DISPLAY_NAME = 0xC0220023;
-pub const FWP_INVALID_ACTION_TYPE = 0xC0220024;
-pub const FWP_INVALID_WEIGHT = 0xC0220025;
-pub const FWP_MATCH_TYPE_MISMATCH = 0xC0220026;
-pub const FWP_TYPE_MISMATCH = 0xC0220027;
-pub const FWP_OUT_OF_BOUNDS = 0xC0220028;
-pub const FWP_RESERVED = 0xC0220029;
-pub const FWP_DUPLICATE_CONDITION = 0xC022002A;
-pub const FWP_DUPLICATE_KEYMOD = 0xC022002B;
-pub const FWP_ACTION_INCOMPATIBLE_WITH_LAYER = 0xC022002C;
-pub const FWP_ACTION_INCOMPATIBLE_WITH_SUBLAYER = 0xC022002D;
-pub const FWP_CONTEXT_INCOMPATIBLE_WITH_LAYER = 0xC022002E;
-pub const FWP_CONTEXT_INCOMPATIBLE_WITH_CALLOUT = 0xC022002F;
-pub const FWP_INCOMPATIBLE_AUTH_METHOD = 0xC0220030;
-pub const FWP_INCOMPATIBLE_DH_GROUP = 0xC0220031;
-pub const FWP_EM_NOT_SUPPORTED = 0xC0220032;
-pub const FWP_NEVER_MATCH = 0xC0220033;
-pub const FWP_PROVIDER_CONTEXT_MISMATCH = 0xC0220034;
-pub const FWP_INVALID_PARAMETER = 0xC0220035;
-pub const FWP_TOO_MANY_SUBLAYERS = 0xC0220036;
-pub const FWP_CALLOUT_NOTIFICATION_FAILED = 0xC0220037;
-pub const FWP_INCOMPATIBLE_AUTH_CONFIG = 0xC0220038;
-pub const FWP_INCOMPATIBLE_CIPHER_CONFIG = 0xC0220039;
-pub const FWP_DUPLICATE_AUTH_METHOD = 0xC022003C;
-pub const FWP_TCPIP_NOT_READY = 0xC0220100;
-pub const FWP_INJECT_HANDLE_CLOSING = 0xC0220101;
-pub const FWP_INJECT_HANDLE_STALE = 0xC0220102;
-pub const FWP_CANNOT_PEND = 0xC0220103;
-pub const NDIS_CLOSING = 0xC0230002;
-pub const NDIS_BAD_VERSION = 0xC0230004;
-pub const NDIS_BAD_CHARACTERISTICS = 0xC0230005;
-pub const NDIS_ADAPTER_NOT_FOUND = 0xC0230006;
-pub const NDIS_OPEN_FAILED = 0xC0230007;
-pub const NDIS_DEVICE_FAILED = 0xC0230008;
-pub const NDIS_MULTICAST_FULL = 0xC0230009;
-pub const NDIS_MULTICAST_EXISTS = 0xC023000A;
-pub const NDIS_MULTICAST_NOT_FOUND = 0xC023000B;
-pub const NDIS_REQUEST_ABORTED = 0xC023000C;
-pub const NDIS_RESET_IN_PROGRESS = 0xC023000D;
-pub const NDIS_INVALID_PACKET = 0xC023000F;
-pub const NDIS_INVALID_DEVICE_REQUEST = 0xC0230010;
-pub const NDIS_ADAPTER_NOT_READY = 0xC0230011;
-pub const NDIS_INVALID_LENGTH = 0xC0230014;
-pub const NDIS_INVALID_DATA = 0xC0230015;
-pub const NDIS_BUFFER_TOO_SHORT = 0xC0230016;
-pub const NDIS_INVALID_OID = 0xC0230017;
-pub const NDIS_ADAPTER_REMOVED = 0xC0230018;
-pub const NDIS_UNSUPPORTED_MEDIA = 0xC0230019;
-pub const NDIS_GROUP_ADDRESS_IN_USE = 0xC023001A;
-pub const NDIS_FILE_NOT_FOUND = 0xC023001B;
-pub const NDIS_ERROR_READING_FILE = 0xC023001C;
-pub const NDIS_ALREADY_MAPPED = 0xC023001D;
-pub const NDIS_RESOURCE_CONFLICT = 0xC023001E;
-pub const NDIS_MEDIA_DISCONNECTED = 0xC023001F;
-pub const NDIS_INVALID_ADDRESS = 0xC0230022;
-pub const NDIS_PAUSED = 0xC023002A;
-pub const NDIS_INTERFACE_NOT_FOUND = 0xC023002B;
-pub const NDIS_UNSUPPORTED_REVISION = 0xC023002C;
-pub const NDIS_INVALID_PORT = 0xC023002D;
-pub const NDIS_INVALID_PORT_STATE = 0xC023002E;
-pub const NDIS_LOW_POWER_STATE = 0xC023002F;
-pub const NDIS_NOT_SUPPORTED = 0xC02300BB;
-pub const NDIS_OFFLOAD_POLICY = 0xC023100F;
-pub const NDIS_OFFLOAD_CONNECTION_REJECTED = 0xC0231012;
-pub const NDIS_OFFLOAD_PATH_REJECTED = 0xC0231013;
-pub const NDIS_DOT11_AUTO_CONFIG_ENABLED = 0xC0232000;
-pub const NDIS_DOT11_MEDIA_IN_USE = 0xC0232001;
-pub const NDIS_DOT11_POWER_STATE_INVALID = 0xC0232002;
-pub const NDIS_PM_WOL_PATTERN_LIST_FULL = 0xC0232003;
-pub const NDIS_PM_PROTOCOL_OFFLOAD_LIST_FULL = 0xC0232004;
-pub const IPSEC_BAD_SPI = 0xC0360001;
-pub const IPSEC_SA_LIFETIME_EXPIRED = 0xC0360002;
-pub const IPSEC_WRONG_SA = 0xC0360003;
-pub const IPSEC_REPLAY_CHECK_FAILED = 0xC0360004;
-pub const IPSEC_INVALID_PACKET = 0xC0360005;
-pub const IPSEC_INTEGRITY_CHECK_FAILED = 0xC0360006;
-pub const IPSEC_CLEAR_TEXT_DROP = 0xC0360007;
-pub const IPSEC_AUTH_FIREWALL_DROP = 0xC0360008;
-pub const IPSEC_THROTTLE_DROP = 0xC0360009;
-pub const IPSEC_DOSP_BLOCK = 0xC0368000;
-pub const IPSEC_DOSP_RECEIVED_MULTICAST = 0xC0368001;
-pub const IPSEC_DOSP_INVALID_PACKET = 0xC0368002;
-pub const IPSEC_DOSP_STATE_LOOKUP_FAILED = 0xC0368003;
-pub const IPSEC_DOSP_MAX_ENTRIES = 0xC0368004;
-pub const IPSEC_DOSP_KEYMOD_NOT_ALLOWED = 0xC0368005;
-pub const IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES = 0xC0368006;
-pub const VOLMGR_MIRROR_NOT_SUPPORTED = 0xC038005B;
-pub const VOLMGR_RAID5_NOT_SUPPORTED = 0xC038005C;
-pub const VIRTDISK_PROVIDER_NOT_FOUND = 0xC03A0014;
-pub const VIRTDISK_NOT_VIRTUAL_DISK = 0xC03A0015;
-pub const VHD_PARENT_VHD_ACCESS_DENIED = 0xC03A0016;
-pub const VHD_CHILD_PARENT_SIZE_MISMATCH = 0xC03A0017;
-pub const VHD_DIFFERENCING_CHAIN_CYCLE_DETECTED = 0xC03A0018;
-pub const VHD_DIFFERENCING_CHAIN_ERROR_IN_PARENT = 0xC03A0019;
lib/std/os/windows.zig
@@ -1057,7 +1057,7 @@ pub fn unexpectedWSAError(err: c_int) std.os.UnexpectedError {
 /// and you get an unexpected status.
 pub fn unexpectedStatus(status: NTSTATUS) std.os.UnexpectedError {
     if (std.os.unexpected_error_tracing) {
-        std.debug.warn("error.Unexpected NTSTATUS=0x{x}\n", .{status});
+        std.debug.warn("error.Unexpected NTSTATUS=0x{x}\n", .{@enumToInt(status)});
         std.debug.dumpCurrentStackTrace(null);
     }
     return error.Unexpected;
lib/std/fs.zig
@@ -598,8 +598,8 @@ pub const Dir = struct {
                         self.index = 0;
                         self.end_index = io.Information;
                         switch (rc) {
-                            w.STATUS.SUCCESS => {},
-                            w.STATUS.ACCESS_DENIED => return error.AccessDenied,
+                            .SUCCESS => {},
+                            .ACCESS_DENIED => return error.AccessDenied,
                             else => return w.unexpectedStatus(rc),
                         }
                     }
@@ -837,16 +837,16 @@ pub const Dir = struct {
             0,
         );
         switch (rc) {
-            w.STATUS.SUCCESS => return result,
-            w.STATUS.OBJECT_NAME_INVALID => unreachable,
-            w.STATUS.OBJECT_NAME_NOT_FOUND => return error.FileNotFound,
-            w.STATUS.OBJECT_PATH_NOT_FOUND => return error.FileNotFound,
-            w.STATUS.INVALID_PARAMETER => unreachable,
-            w.STATUS.SHARING_VIOLATION => return error.SharingViolation,
-            w.STATUS.ACCESS_DENIED => return error.AccessDenied,
-            w.STATUS.PIPE_BUSY => return error.PipeBusy,
-            w.STATUS.OBJECT_PATH_SYNTAX_BAD => unreachable,
-            w.STATUS.OBJECT_NAME_COLLISION => return error.PathAlreadyExists,
+            .SUCCESS => return result,
+            .OBJECT_NAME_INVALID => unreachable,
+            .OBJECT_NAME_NOT_FOUND => return error.FileNotFound,
+            .OBJECT_PATH_NOT_FOUND => return error.FileNotFound,
+            .INVALID_PARAMETER => unreachable,
+            .SHARING_VIOLATION => return error.SharingViolation,
+            .ACCESS_DENIED => return error.AccessDenied,
+            .PIPE_BUSY => return error.PipeBusy,
+            .OBJECT_PATH_SYNTAX_BAD => unreachable,
+            .OBJECT_NAME_COLLISION => return error.PathAlreadyExists,
             else => return w.unexpectedStatus(rc),
         }
     }
@@ -990,11 +990,11 @@ pub const Dir = struct {
             0,
         );
         switch (rc) {
-            w.STATUS.SUCCESS => return result,
-            w.STATUS.OBJECT_NAME_INVALID => unreachable,
-            w.STATUS.OBJECT_NAME_NOT_FOUND => return error.FileNotFound,
-            w.STATUS.OBJECT_PATH_NOT_FOUND => return error.FileNotFound,
-            w.STATUS.INVALID_PARAMETER => unreachable,
+            .SUCCESS => return result,
+            .OBJECT_NAME_INVALID => unreachable,
+            .OBJECT_NAME_NOT_FOUND => return error.FileNotFound,
+            .OBJECT_PATH_NOT_FOUND => return error.FileNotFound,
+            .INVALID_PARAMETER => unreachable,
             else => return w.unexpectedStatus(rc),
         }
     }
lib/std/mutex.zig
@@ -126,7 +126,7 @@ else if (builtin.os == .windows)
                     // then unset the WAKE bit so that another unlocker can wake up a thread.
                 } else if (@cmpxchgWeak(u32, &self.waiters, waiters, (waiters + WAIT) | 1, .Monotonic, .Monotonic) == null) {
                     const rc = windows.ntdll.NtWaitForKeyedEvent(handle, key, windows.FALSE, null);
-                    assert(rc == 0);
+                    assert(rc == .SUCCESS);
                     _ = @atomicRmw(u32, &self.waiters, .Sub, WAKE, .Monotonic);
                 }
             }
@@ -154,7 +154,7 @@ else if (builtin.os == .windows)
                     // try to decrease the waiter count & set the WAKE bit meaning a thread is waking up
                     if (@cmpxchgWeak(u32, &self.mutex.waiters, waiters, waiters - WAIT + WAKE, .Release, .Monotonic) == null) {
                         const rc = windows.ntdll.NtReleaseKeyedEvent(handle, key, windows.FALSE, null);
-                        assert(rc == 0);
+                        assert(rc == .SUCCESS);
                         return;
                     }
                 }
lib/std/os.zig
@@ -1176,15 +1176,15 @@ pub fn unlinkatW(dirfd: fd_t, sub_path_w: [*:0]const u16, flags: u32) UnlinkatEr
         null,
         0,
     );
-    if (rc == w.STATUS.SUCCESS) {
+    if (rc == .SUCCESS) {
         rc = w.ntdll.NtClose(tmp_handle);
     }
     switch (rc) {
-        w.STATUS.SUCCESS => return,
-        w.STATUS.OBJECT_NAME_INVALID => unreachable,
-        w.STATUS.OBJECT_NAME_NOT_FOUND => return error.FileNotFound,
-        w.STATUS.INVALID_PARAMETER => unreachable,
-        w.STATUS.FILE_IS_A_DIRECTORY => return error.IsDir,
+        .SUCCESS => return,
+        .OBJECT_NAME_INVALID => unreachable,
+        .OBJECT_NAME_NOT_FOUND => return error.FileNotFound,
+        .INVALID_PARAMETER => unreachable,
+        .FILE_IS_A_DIRECTORY => return error.IsDir,
         else => return w.unexpectedStatus(rc),
     }
 }
lib/std/reset_event.zig
@@ -283,7 +283,7 @@ const AtomicEvent = struct {
             var waiting = wake_count;
             while (waiting != 0) : (waiting -= 1) {
                 const rc = windows.ntdll.NtReleaseKeyedEvent(handle, key, windows.FALSE, null);
-                assert(rc == 0);
+                assert(rc == .SUCCESS);
             }
         }
 
@@ -302,7 +302,7 @@ const AtomicEvent = struct {
             // NtWaitForKeyedEvent doesnt have spurious wake-ups
             var rc = windows.ntdll.NtWaitForKeyedEvent(handle, key, windows.FALSE, timeout_ptr);
             switch (rc) {
-                windows.WAIT_TIMEOUT => {
+                .TIMEOUT => {
                     // update the wait count to signal that we're not waiting anymore.
                     // if the .set() thread already observed that we are, perform a
                     // matching NtWaitForKeyedEvent so that the .set() thread doesn't
@@ -311,7 +311,7 @@ const AtomicEvent = struct {
                     while (true) {
                         if (waiting == WAKE) {
                             rc = windows.ntdll.NtWaitForKeyedEvent(handle, key, windows.FALSE, null);
-                            assert(rc == windows.WAIT_OBJECT_0);
+                            assert(rc == .WAIT_0);
                             break;
                         } else {
                             waiting = @cmpxchgWeak(u32, waiters, waiting, waiting - WAIT, .Acquire, .Monotonic) orelse break;
@@ -320,7 +320,7 @@ const AtomicEvent = struct {
                     }
                     return error.TimedOut;
                 },
-                windows.WAIT_OBJECT_0 => {},
+                .WAIT_0 => {},
                 else => unreachable,
             }
         }
@@ -336,7 +336,7 @@ const AtomicEvent = struct {
                     EMPTY => handle = @cmpxchgWeak(usize, &event_handle, EMPTY, LOADING, .Acquire, .Monotonic) orelse {
                         const handle_ptr = @ptrCast(*windows.HANDLE, &handle);
                         const access_mask = windows.GENERIC_READ | windows.GENERIC_WRITE;
-                        if (windows.ntdll.NtCreateKeyedEvent(handle_ptr, access_mask, null, 0) != 0)
+                        if (windows.ntdll.NtCreateKeyedEvent(handle_ptr, access_mask, null, 0) != .SUCCESS)
                             handle = 0;
                         @atomicStore(usize, &event_handle, handle, .Monotonic);
                         return @intToPtr(?windows.HANDLE, handle);