master
1/// NTSTATUS codes from https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-erref/596a1078-e883-4972-9bbc-49e60bebca55?
2pub const NTSTATUS = enum(u32) {
3 /// The caller specified WaitAny for WaitType and one of the dispatcher
4 /// objects in the Object array has been set to the signaled state.
5 pub const WAIT_0: NTSTATUS = .SUCCESS;
6 /// The caller attempted to wait for a mutex that has been abandoned.
7 pub const ABANDONED_WAIT_0: NTSTATUS = .ABANDONED;
8 /// The maximum number of boot-time filters has been reached.
9 pub const FWP_TOO_MANY_BOOTTIME_FILTERS: NTSTATUS = .FWP_TOO_MANY_CALLOUTS;
10
11 /// The operation completed successfully.
12 SUCCESS = 0x00000000,
13 /// The caller specified WaitAny for WaitType and one of the dispatcher objects in the Object array has been set to the signaled state.
14 WAIT_1 = 0x00000001,
15 /// The caller specified WaitAny for WaitType and one of the dispatcher objects in the Object array has been set to the signaled state.
16 WAIT_2 = 0x00000002,
17 /// The caller specified WaitAny for WaitType and one of the dispatcher objects in the Object array has been set to the signaled state.
18 WAIT_3 = 0x00000003,
19 /// The caller specified WaitAny for WaitType and one of the dispatcher objects in the Object array has been set to the signaled state.
20 WAIT_63 = 0x0000003F,
21 /// The caller attempted to wait for a mutex that has been abandoned.
22 ABANDONED = 0x00000080,
23 /// The caller attempted to wait for a mutex that has been abandoned.
24 ABANDONED_WAIT_63 = 0x000000BF,
25 /// A user-mode APC was delivered before the given Interval expired.
26 USER_APC = 0x000000C0,
27 /// The delay completed because the thread was alerted.
28 ALERTED = 0x00000101,
29 /// The given Timeout interval expired.
30 TIMEOUT = 0x00000102,
31 /// The operation that was requested is pending completion.
32 PENDING = 0x00000103,
33 /// A reparse should be performed by the Object Manager because the name of the file resulted in a symbolic link.
34 REPARSE = 0x00000104,
35 /// Returned by enumeration APIs to indicate more information is available to successive calls.
36 MORE_ENTRIES = 0x00000105,
37 /// Indicates not all privileges or groups that are referenced are assigned to the caller.
38 /// This allows, for example, all privileges to be disabled without having to know exactly which privileges are assigned.
39 NOT_ALL_ASSIGNED = 0x00000106,
40 /// Some of the information to be translated has not been translated.
41 SOME_NOT_MAPPED = 0x00000107,
42 /// An open/create operation completed while an opportunistic lock (oplock) break is underway.
43 OPLOCK_BREAK_IN_PROGRESS = 0x00000108,
44 /// A new volume has been mounted by a file system.
45 VOLUME_MOUNTED = 0x00000109,
46 /// 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.
47 RXACT_COMMITTED = 0x0000010A,
48 /// Indicates that a notify change request has been completed due to closing the handle that made the notify change request.
49 NOTIFY_CLEANUP = 0x0000010B,
50 /// Indicates that a notify change request is being completed and that the information is not being returned in the caller's buffer.
51 /// The caller now needs to enumerate the files to find the changes.
52 NOTIFY_ENUM_DIR = 0x0000010C,
53 /// {No Quotas} No system quota limits are specifically set for this account.
54 NO_QUOTAS_FOR_ACCOUNT = 0x0000010D,
55 /// {Connect Failure on Primary Transport} An attempt was made to connect to the remote server %hs on the primary transport, but the connection failed.
56 /// The computer WAS able to connect on a secondary transport.
57 PRIMARY_TRANSPORT_CONNECT_FAILED = 0x0000010E,
58 /// The page fault was a transition fault.
59 PAGE_FAULT_TRANSITION = 0x00000110,
60 /// The page fault was a demand zero fault.
61 PAGE_FAULT_DEMAND_ZERO = 0x00000111,
62 /// The page fault was a demand zero fault.
63 PAGE_FAULT_COPY_ON_WRITE = 0x00000112,
64 /// The page fault was a demand zero fault.
65 PAGE_FAULT_GUARD_PAGE = 0x00000113,
66 /// The page fault was satisfied by reading from a secondary storage device.
67 PAGE_FAULT_PAGING_FILE = 0x00000114,
68 /// The cached page was locked during operation.
69 CACHE_PAGE_LOCKED = 0x00000115,
70 /// The crash dump exists in a paging file.
71 CRASH_DUMP = 0x00000116,
72 /// The specified buffer contains all zeros.
73 BUFFER_ALL_ZEROS = 0x00000117,
74 /// A reparse should be performed by the Object Manager because the name of the file resulted in a symbolic link.
75 REPARSE_OBJECT = 0x00000118,
76 /// The device has succeeded a query-stop and its resource requirements have changed.
77 RESOURCE_REQUIREMENTS_CHANGED = 0x00000119,
78 /// The translator has translated these resources into the global space and no additional translations should be performed.
79 TRANSLATION_COMPLETE = 0x00000120,
80 /// The directory service evaluated group memberships locally, because it was unable to contact a global catalog server.
81 DS_MEMBERSHIP_EVALUATED_LOCALLY = 0x00000121,
82 /// A process being terminated has no threads to terminate.
83 NOTHING_TO_TERMINATE = 0x00000122,
84 /// The specified process is not part of a job.
85 PROCESS_NOT_IN_JOB = 0x00000123,
86 /// The specified process is part of a job.
87 PROCESS_IN_JOB = 0x00000124,
88 /// {Volume Shadow Copy Service} The system is now ready for hibernation.
89 VOLSNAP_HIBERNATE_READY = 0x00000125,
90 /// A file system or file system filter driver has successfully completed an FsFilter operation.
91 FSFILTER_OP_COMPLETED_SUCCESSFULLY = 0x00000126,
92 /// The specified interrupt vector was already connected.
93 INTERRUPT_VECTOR_ALREADY_CONNECTED = 0x00000127,
94 /// The specified interrupt vector is still connected.
95 INTERRUPT_STILL_CONNECTED = 0x00000128,
96 /// The current process is a cloned process.
97 PROCESS_CLONED = 0x00000129,
98 /// The file was locked and all users of the file can only read.
99 FILE_LOCKED_WITH_ONLY_READERS = 0x0000012A,
100 /// The file was locked and at least one user of the file can write.
101 FILE_LOCKED_WITH_WRITERS = 0x0000012B,
102 /// The specified ResourceManager made no changes or updates to the resource under this transaction.
103 RESOURCEMANAGER_READ_ONLY = 0x00000202,
104 /// An operation is blocked and waiting for an oplock.
105 WAIT_FOR_OPLOCK = 0x00000367,
106 /// Debugger handled the exception.
107 DBG_EXCEPTION_HANDLED = 0x00010001,
108 /// The debugger continued.
109 DBG_CONTINUE = 0x00010002,
110 /// The IO was completed by a filter.
111 FLT_IO_COMPLETE = 0x001C0001,
112 /// The file is temporarily unavailable.
113 FILE_NOT_AVAILABLE = 0xC0000467,
114 /// The share is temporarily unavailable.
115 SHARE_UNAVAILABLE = 0xC0000480,
116 /// A threadpool worker thread entered a callback at thread affinity %p and exited at affinity %p.
117 /// This is unexpected, indicating that the callback missed restoring the priority.
118 CALLBACK_RETURNED_THREAD_AFFINITY = 0xC0000721,
119 /// {Object Exists} An attempt was made to create an object but the object name already exists.
120 OBJECT_NAME_EXISTS = 0x40000000,
121 /// {Thread Suspended} A thread termination occurred while the thread was suspended. The thread resumed, and termination proceeded.
122 THREAD_WAS_SUSPENDED = 0x40000001,
123 /// {Working Set Range Error} An attempt was made to set the working set minimum or maximum to values that are outside the allowable range.
124 WORKING_SET_LIMIT_RANGE = 0x40000002,
125 /// {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.
126 IMAGE_NOT_AT_BASE = 0x40000003,
127 /// This informational level status indicates that a specified registry subtree transaction state did not yet exist and had to be created.
128 RXACT_STATE_CREATED = 0x40000004,
129 /// {Segment Load} A virtual DOS machine (VDM) is loading, unloading, or moving an MS-DOS or Win16 program segment image.
130 /// An exception is raised so that a debugger can load, unload, or track symbols and breakpoints within these 16-bit segments.
131 SEGMENT_NOTIFICATION = 0x40000005,
132 /// {Local Session Key} A user session key was requested for a local remote procedure call (RPC) connection.
133 /// The session key that is returned is a constant value and not unique to this connection.
134 LOCAL_USER_SESSION_KEY = 0x40000006,
135 /// {Invalid Current Directory} The process cannot switch to the startup current directory %hs.
136 /// Select OK to set the current directory to %hs, or select CANCEL to exit.
137 BAD_CURRENT_DIRECTORY = 0x40000007,
138 /// {Serial IOCTL Complete} A serial I/O operation was completed by another write to a serial port. (The IOCTL_SERIAL_XOFF_COUNTER reached zero.)
139 SERIAL_MORE_WRITES = 0x40000008,
140 /// {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.
141 REGISTRY_RECOVERED = 0x40000009,
142 /// {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.
143 /// 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.
144 FT_READ_RECOVERY_FROM_BACKUP = 0x4000000A,
145 /// {Redundant Write} To satisfy a write request, the Windows NT fault-tolerant file system successfully wrote a redundant copy of the information.
146 /// 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.
147 FT_WRITE_RECOVERY = 0x4000000B,
148 /// {Serial IOCTL Timeout} A serial I/O operation completed because the time-out period expired.
149 /// (The IOCTL_SERIAL_XOFF_COUNTER had not reached zero.)
150 SERIAL_COUNTER_TIMEOUT = 0x4000000C,
151 /// {Password Too Complex} The Windows password is too complex to be converted to a LAN Manager password.
152 /// The LAN Manager password that returned is a NULL string.
153 NULL_LM_PASSWORD = 0x4000000D,
154 /// {Machine Type Mismatch} The image file %hs is valid but is for a machine type other than the current machine.
155 /// Select OK to continue, or CANCEL to fail the DLL load.
156 IMAGE_MACHINE_TYPE_MISMATCH = 0x4000000E,
157 /// {Partial Data Received} The network transport returned partial data to its client. The remaining data will be sent later.
158 RECEIVE_PARTIAL = 0x4000000F,
159 /// {Expedited Data Received} The network transport returned data to its client that was marked as expedited by the remote system.
160 RECEIVE_EXPEDITED = 0x40000010,
161 /// {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.
162 RECEIVE_PARTIAL_EXPEDITED = 0x40000011,
163 /// {TDI Event Done} The TDI indication has completed successfully.
164 EVENT_DONE = 0x40000012,
165 /// {TDI Event Pending} The TDI indication has entered the pending state.
166 EVENT_PENDING = 0x40000013,
167 /// Checking file system on %wZ.
168 CHECKING_FILE_SYSTEM = 0x40000014,
169 /// {Fatal Application Exit} %hs
170 FATAL_APP_EXIT = 0x40000015,
171 /// The specified registry key is referenced by a predefined handle.
172 PREDEFINED_HANDLE = 0x40000016,
173 /// {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.
174 WAS_UNLOCKED = 0x40000017,
175 /// %hs
176 SERVICE_NOTIFICATION = 0x40000018,
177 /// {Page Locked} One of the pages to lock was already locked.
178 WAS_LOCKED = 0x40000019,
179 /// Application popup: %1 : %2
180 LOG_HARD_ERROR = 0x4000001A,
181 /// A Win32 process already exists.
182 ALREADY_WIN32 = 0x4000001B,
183 /// An exception status code that is used by the Win32 x86 emulation subsystem.
184 WX86_UNSIMULATE = 0x4000001C,
185 /// An exception status code that is used by the Win32 x86 emulation subsystem.
186 WX86_CONTINUE = 0x4000001D,
187 /// An exception status code that is used by the Win32 x86 emulation subsystem.
188 WX86_SINGLE_STEP = 0x4000001E,
189 /// An exception status code that is used by the Win32 x86 emulation subsystem.
190 WX86_BREAKPOINT = 0x4000001F,
191 /// An exception status code that is used by the Win32 x86 emulation subsystem.
192 WX86_EXCEPTION_CONTINUE = 0x40000020,
193 /// An exception status code that is used by the Win32 x86 emulation subsystem.
194 WX86_EXCEPTION_LASTCHANCE = 0x40000021,
195 /// An exception status code that is used by the Win32 x86 emulation subsystem.
196 WX86_EXCEPTION_CHAIN = 0x40000022,
197 /// {Machine Type Mismatch} The image file %hs is valid but is for a machine type other than the current machine.
198 IMAGE_MACHINE_TYPE_MISMATCH_EXE = 0x40000023,
199 /// A yield execution was performed and no thread was available to run.
200 NO_YIELD_PERFORMED = 0x40000024,
201 /// The resume flag to a timer API was ignored.
202 TIMER_RESUME_IGNORED = 0x40000025,
203 /// The arbiter has deferred arbitration of these resources to its parent.
204 ARBITRATION_UNHANDLED = 0x40000026,
205 /// The device has detected a CardBus card in its slot.
206 CARDBUS_NOT_SUPPORTED = 0x40000027,
207 /// An exception status code that is used by the Win32 x86 emulation subsystem.
208 WX86_CREATEWX86TIB = 0x40000028,
209 /// The CPUs in this multiprocessor system are not all the same revision level.
210 /// To use all processors, the operating system restricts itself to the features of the least capable processor in the system.
211 /// If problems occur with this system, contact the CPU manufacturer to see if this mix of processors is supported.
212 MP_PROCESSOR_MISMATCH = 0x40000029,
213 /// The system was put into hibernation.
214 HIBERNATED = 0x4000002A,
215 /// The system was resumed from hibernation.
216 RESUME_HIBERNATION = 0x4000002B,
217 /// Windows has detected that the system firmware (BIOS) was updated [previous firmware date = %2, current firmware date %3].
218 FIRMWARE_UPDATED = 0x4000002C,
219 /// A device driver is leaking locked I/O pages and is causing system degradation.
220 /// The system has automatically enabled the tracking code to try and catch the culprit.
221 DRIVERS_LEAKING_LOCKED_PAGES = 0x4000002D,
222 /// The ALPC message being canceled has already been retrieved from the queue on the other side.
223 MESSAGE_RETRIEVED = 0x4000002E,
224 /// The system power state is transitioning from %2 to %3.
225 SYSTEM_POWERSTATE_TRANSITION = 0x4000002F,
226 /// The receive operation was successful.
227 /// Check the ALPC completion list for the received message.
228 ALPC_CHECK_COMPLETION_LIST = 0x40000030,
229 /// The system power state is transitioning from %2 to %3 but could enter %4.
230 SYSTEM_POWERSTATE_COMPLEX_TRANSITION = 0x40000031,
231 /// Access to %1 is monitored by policy rule %2.
232 ACCESS_AUDIT_BY_POLICY = 0x40000032,
233 /// A valid hibernation file has been invalidated and should be abandoned.
234 ABANDON_HIBERFILE = 0x40000033,
235 /// Business rule scripts are disabled for the calling application.
236 BIZRULES_NOT_ENABLED = 0x40000034,
237 /// The system has awoken.
238 WAKE_SYSTEM = 0x40000294,
239 /// The directory service is shutting down.
240 DS_SHUTTING_DOWN = 0x40000370,
241 /// Debugger will reply later.
242 DBG_REPLY_LATER = 0x40010001,
243 /// Debugger cannot provide a handle.
244 DBG_UNABLE_TO_PROVIDE_HANDLE = 0x40010002,
245 /// Debugger terminated the thread.
246 DBG_TERMINATE_THREAD = 0x40010003,
247 /// Debugger terminated the process.
248 DBG_TERMINATE_PROCESS = 0x40010004,
249 /// Debugger obtained control of C.
250 DBG_CONTROL_C = 0x40010005,
251 /// Debugger printed an exception on control C.
252 DBG_PRINTEXCEPTION_C = 0x40010006,
253 /// Debugger received a RIP exception.
254 DBG_RIPEXCEPTION = 0x40010007,
255 /// Debugger received a control break.
256 DBG_CONTROL_BREAK = 0x40010008,
257 /// Debugger command communication exception.
258 DBG_COMMAND_EXCEPTION = 0x40010009,
259 /// A UUID that is valid only on this computer has been allocated.
260 RPC_NT_UUID_LOCAL_ONLY = 0x40020056,
261 /// Some data remains to be sent in the request buffer.
262 RPC_NT_SEND_INCOMPLETE = 0x400200AF,
263 /// The Client Drive Mapping Service has connected on Terminal Connection.
264 CTX_CDM_CONNECT = 0x400A0004,
265 /// The Client Drive Mapping Service has disconnected on Terminal Connection.
266 CTX_CDM_DISCONNECT = 0x400A0005,
267 /// A kernel mode component is releasing a reference on an activation context.
268 SXS_RELEASE_ACTIVATION_CONTEXT = 0x4015000D,
269 /// The transactional resource manager is already consistent. Recovery is not needed.
270 RECOVERY_NOT_NEEDED = 0x40190034,
271 /// The transactional resource manager has already been started.
272 RM_ALREADY_STARTED = 0x40190035,
273 /// The log service encountered a log stream with no restart area.
274 LOG_NO_RESTART = 0x401A000C,
275 /// {Display Driver Recovered From Failure} The %hs display driver has detected a failure and recovered from it. Some graphical operations might have failed.
276 /// The next time you restart the machine, a dialog box appears, giving you an opportunity to upload data about this failure to Microsoft.
277 VIDEO_DRIVER_DEBUG_REPORT_REQUEST = 0x401B00EC,
278 /// The specified buffer is not big enough to contain the entire requested dataset.
279 /// Partial data is populated up to the size of the buffer.
280 /// The caller needs to provide a buffer of the size as specified in the partially populated buffer's content (interface specific).
281 GRAPHICS_PARTIAL_DATA_POPULATED = 0x401E000A,
282 /// The kernel driver detected a version mismatch between it and the user mode driver.
283 GRAPHICS_DRIVER_MISMATCH = 0x401E0117,
284 /// No mode is pinned on the specified VidPN source/target.
285 GRAPHICS_MODE_NOT_PINNED = 0x401E0307,
286 /// The specified mode set does not specify a preference for one of its modes.
287 GRAPHICS_NO_PREFERRED_MODE = 0x401E031E,
288 /// The specified dataset (for example, mode set, frequency range set, descriptor set, or topology) is empty.
289 GRAPHICS_DATASET_IS_EMPTY = 0x401E034B,
290 /// The specified dataset (for example, mode set, frequency range set, descriptor set, or topology) does not contain any more elements.
291 GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET = 0x401E034C,
292 /// The specified content transformation is not pinned on the specified VidPN present path.
293 GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED = 0x401E0351,
294 /// The child device presence was not reliably detected.
295 GRAPHICS_UNKNOWN_CHILD_STATUS = 0x401E042F,
296 /// Starting the lead adapter in a linked configuration has been temporarily deferred.
297 GRAPHICS_LEADLINK_START_DEFERRED = 0x401E0437,
298 /// The display adapter is being polled for children too frequently at the same polling level.
299 GRAPHICS_POLLING_TOO_FREQUENTLY = 0x401E0439,
300 /// Starting the adapter has been temporarily deferred.
301 GRAPHICS_START_DEFERRED = 0x401E043A,
302 /// The request will be completed later by an NDIS status indication.
303 NDIS_INDICATION_REQUIRED = 0x40230001,
304 /// {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.
305 GUARD_PAGE_VIOLATION = 0x80000001,
306 /// {EXCEPTION} Alignment Fault A data type misalignment was detected in a load or store instruction.
307 DATATYPE_MISALIGNMENT = 0x80000002,
308 /// {EXCEPTION} Breakpoint A breakpoint has been reached.
309 BREAKPOINT = 0x80000003,
310 /// {EXCEPTION} Single Step A single step or trace operation has just been completed.
311 SINGLE_STEP = 0x80000004,
312 /// {Buffer Overflow} The data was too large to fit into the specified buffer.
313 BUFFER_OVERFLOW = 0x80000005,
314 /// {No More Files} No more files were found which match the file specification.
315 NO_MORE_FILES = 0x80000006,
316 /// {Kernel Debugger Awakened} The system debugger was awakened by an interrupt.
317 WAKE_SYSTEM_DEBUGGER = 0x80000007,
318 /// {Handles Closed} Handles to objects have been automatically closed because of the requested operation.
319 HANDLES_CLOSED = 0x8000000A,
320 /// {Non-Inheritable ACL} An access control list (ACL) contains no components that can be inherited.
321 NO_INHERITANCE = 0x8000000B,
322 /// {GUID Substitution} During the translation of a globally unique identifier (GUID) to a Windows security ID (SID), no administratively defined GUID prefix was found.
323 /// A substitute prefix was used, which will not compromise system security.
324 /// However, this might provide a more restrictive access than intended.
325 GUID_SUBSTITUTION_MADE = 0x8000000C,
326 /// Because of protection conflicts, not all the requested bytes could be copied.
327 PARTIAL_COPY = 0x8000000D,
328 /// {Out of Paper} The printer is out of paper.
329 DEVICE_PAPER_EMPTY = 0x8000000E,
330 /// {Device Power Is Off} The printer power has been turned off.
331 DEVICE_POWERED_OFF = 0x8000000F,
332 /// {Device Offline} The printer has been taken offline.
333 DEVICE_OFF_LINE = 0x80000010,
334 /// {Device Busy} The device is currently busy.
335 DEVICE_BUSY = 0x80000011,
336 /// {No More EAs} No more extended attributes (EAs) were found for the file.
337 NO_MORE_EAS = 0x80000012,
338 /// {Illegal EA} The specified extended attribute (EA) name contains at least one illegal character.
339 INVALID_EA_NAME = 0x80000013,
340 /// {Inconsistent EA List} The extended attribute (EA) list is inconsistent.
341 EA_LIST_INCONSISTENT = 0x80000014,
342 /// {Invalid EA Flag} An invalid extended attribute (EA) flag was set.
343 INVALID_EA_FLAG = 0x80000015,
344 /// {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.
345 VERIFY_REQUIRED = 0x80000016,
346 /// {Too Much Information} The specified access control list (ACL) contained more information than was expected.
347 EXTRANEOUS_INFORMATION = 0x80000017,
348 /// This warning level status indicates that the transaction state already exists for the registry subtree, but that a transaction commit was previously aborted.
349 /// The commit has NOT been completed but has not been rolled back either; therefore, it can still be committed, if needed.
350 RXACT_COMMIT_NECESSARY = 0x80000018,
351 /// {No More Entries} No more entries are available from an enumeration operation.
352 NO_MORE_ENTRIES = 0x8000001A,
353 /// {Filemark Found} A filemark was detected.
354 FILEMARK_DETECTED = 0x8000001B,
355 /// {Media Changed} The media has changed.
356 MEDIA_CHANGED = 0x8000001C,
357 /// {I/O Bus Reset} An I/O bus reset was detected.
358 BUS_RESET = 0x8000001D,
359 /// {End of Media} The end of the media was encountered.
360 END_OF_MEDIA = 0x8000001E,
361 /// The beginning of a tape or partition has been detected.
362 BEGINNING_OF_MEDIA = 0x8000001F,
363 /// {Media Changed} The media might have changed.
364 MEDIA_CHECK = 0x80000020,
365 /// A tape access reached a set mark.
366 SETMARK_DETECTED = 0x80000021,
367 /// During a tape access, the end of the data written is reached.
368 NO_DATA_DETECTED = 0x80000022,
369 /// The redirector is in use and cannot be unloaded.
370 REDIRECTOR_HAS_OPEN_HANDLES = 0x80000023,
371 /// The server is in use and cannot be unloaded.
372 SERVER_HAS_OPEN_HANDLES = 0x80000024,
373 /// The specified connection has already been disconnected.
374 ALREADY_DISCONNECTED = 0x80000025,
375 /// A long jump has been executed.
376 LONGJUMP = 0x80000026,
377 /// A cleaner cartridge is present in the tape library.
378 CLEANER_CARTRIDGE_INSTALLED = 0x80000027,
379 /// The Plug and Play query operation was not successful.
380 PLUGPLAY_QUERY_VETOED = 0x80000028,
381 /// A frame consolidation has been executed.
382 UNWIND_CONSOLIDATE = 0x80000029,
383 /// {Registry Hive Recovered} The registry hive (file): %hs was corrupted and it has been recovered. Some data might have been lost.
384 REGISTRY_HIVE_RECOVERED = 0x8000002A,
385 /// The application is attempting to run executable code from the module %hs. This might be insecure.
386 /// An alternative, %hs, is available. Should the application use the secure module %hs?
387 DLL_MIGHT_BE_INSECURE = 0x8000002B,
388 /// The application is loading executable code from the module %hs.
389 /// This is secure but might be incompatible with previous releases of the operating system.
390 /// An alternative, %hs, is available. Should the application use the secure module %hs?
391 DLL_MIGHT_BE_INCOMPATIBLE = 0x8000002C,
392 /// The create operation stopped after reaching a symbolic link.
393 STOPPED_ON_SYMLINK = 0x8000002D,
394 /// The device has indicated that cleaning is necessary.
395 DEVICE_REQUIRES_CLEANING = 0x80000288,
396 /// The device has indicated that its door is open. Further operations require it closed and secured.
397 DEVICE_DOOR_OPEN = 0x80000289,
398 /// Windows discovered a corruption in the file %hs. This file has now been repaired.
399 /// Check if any data in the file was lost because of the corruption.
400 DATA_LOST_REPAIR = 0x80000803,
401 /// Debugger did not handle the exception.
402 DBG_EXCEPTION_NOT_HANDLED = 0x80010001,
403 /// The cluster node is already up.
404 CLUSTER_NODE_ALREADY_UP = 0x80130001,
405 /// The cluster node is already down.
406 CLUSTER_NODE_ALREADY_DOWN = 0x80130002,
407 /// The cluster network is already online.
408 CLUSTER_NETWORK_ALREADY_ONLINE = 0x80130003,
409 /// The cluster network is already offline.
410 CLUSTER_NETWORK_ALREADY_OFFLINE = 0x80130004,
411 /// The cluster node is already a member of the cluster.
412 CLUSTER_NODE_ALREADY_MEMBER = 0x80130005,
413 /// The log could not be set to the requested size.
414 COULD_NOT_RESIZE_LOG = 0x80190009,
415 /// There is no transaction metadata on the file.
416 NO_TXF_METADATA = 0x80190029,
417 /// The file cannot be recovered because there is a handle still open on it.
418 CANT_RECOVER_WITH_HANDLE_OPEN = 0x80190031,
419 /// Transaction metadata is already present on this file and cannot be superseded.
420 TXF_METADATA_ALREADY_PRESENT = 0x80190041,
421 /// A transaction scope could not be entered because the scope handler has not been initialized.
422 TRANSACTION_SCOPE_CALLBACKS_NOT_SET = 0x80190042,
423 /// {Display Driver Stopped Responding and recovered} The %hs display driver has stopped working normally. The recovery had been performed.
424 VIDEO_HUNG_DISPLAY_DRIVER_THREAD_RECOVERED = 0x801B00EB,
425 /// {Buffer too small} The buffer is too small to contain the entry. No information has been written to the buffer.
426 FLT_BUFFER_TOO_SMALL = 0x801C0001,
427 /// Volume metadata read or write is incomplete.
428 FVE_PARTIAL_METADATA = 0x80210001,
429 /// BitLocker encryption keys were ignored because the volume was in a transient state.
430 FVE_TRANSIENT_STATE = 0x80210002,
431 /// {Operation Failed} The requested operation was unsuccessful.
432 UNSUCCESSFUL = 0xC0000001,
433 /// {Not Implemented} The requested operation is not implemented.
434 NOT_IMPLEMENTED = 0xC0000002,
435 /// {Invalid Parameter} The specified information class is not a valid information class for the specified object.
436 INVALID_INFO_CLASS = 0xC0000003,
437 /// The specified information record length does not match the length that is required for the specified information class.
438 INFO_LENGTH_MISMATCH = 0xC0000004,
439 /// The instruction at 0x%08lx referenced memory at 0x%08lx. The memory could not be %s.
440 ACCESS_VIOLATION = 0xC0000005,
441 /// The instruction at 0x%08lx referenced memory at 0x%08lx.
442 /// The required data was not placed into memory because of an I/O error status of 0x%08lx.
443 IN_PAGE_ERROR = 0xC0000006,
444 /// The page file quota for the process has been exhausted.
445 PAGEFILE_QUOTA = 0xC0000007,
446 /// An invalid HANDLE was specified.
447 INVALID_HANDLE = 0xC0000008,
448 /// An invalid initial stack was specified in a call to NtCreateThread.
449 BAD_INITIAL_STACK = 0xC0000009,
450 /// An invalid initial start address was specified in a call to NtCreateThread.
451 BAD_INITIAL_PC = 0xC000000A,
452 /// An invalid client ID was specified.
453 INVALID_CID = 0xC000000B,
454 /// 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.
455 TIMER_NOT_CANCELED = 0xC000000C,
456 /// An invalid parameter was passed to a service or function.
457 INVALID_PARAMETER = 0xC000000D,
458 /// A device that does not exist was specified.
459 NO_SUCH_DEVICE = 0xC000000E,
460 /// {File Not Found} The file %hs does not exist.
461 NO_SUCH_FILE = 0xC000000F,
462 /// The specified request is not a valid operation for the target device.
463 INVALID_DEVICE_REQUEST = 0xC0000010,
464 /// The end-of-file marker has been reached.
465 /// There is no valid data in the file beyond this marker.
466 END_OF_FILE = 0xC0000011,
467 /// {Wrong Volume} The wrong volume is in the drive. Insert volume %hs into drive %hs.
468 WRONG_VOLUME = 0xC0000012,
469 /// {No Disk} There is no disk in the drive. Insert a disk into drive %hs.
470 NO_MEDIA_IN_DEVICE = 0xC0000013,
471 /// {Unknown Disk Format} The disk in drive %hs is not formatted properly.
472 /// Check the disk, and reformat it, if needed.
473 UNRECOGNIZED_MEDIA = 0xC0000014,
474 /// {Sector Not Found} The specified sector does not exist.
475 NONEXISTENT_SECTOR = 0xC0000015,
476 /// {Still Busy} The specified I/O request packet (IRP) cannot be disposed of because the I/O operation is not complete.
477 MORE_PROCESSING_REQUIRED = 0xC0000016,
478 /// {Not Enough Quota} Not enough virtual memory or paging file quota is available to complete the specified operation.
479 NO_MEMORY = 0xC0000017,
480 /// {Conflicting Address Range} The specified address range conflicts with the address space.
481 CONFLICTING_ADDRESSES = 0xC0000018,
482 /// The address range to unmap is not a mapped view.
483 NOT_MAPPED_VIEW = 0xC0000019,
484 /// The virtual memory cannot be freed.
485 UNABLE_TO_FREE_VM = 0xC000001A,
486 /// The specified section cannot be deleted.
487 UNABLE_TO_DELETE_SECTION = 0xC000001B,
488 /// An invalid system service was specified in a system service call.
489 INVALID_SYSTEM_SERVICE = 0xC000001C,
490 /// {EXCEPTION} Illegal Instruction An attempt was made to execute an illegal instruction.
491 ILLEGAL_INSTRUCTION = 0xC000001D,
492 /// {Invalid Lock Sequence} An attempt was made to execute an invalid lock sequence.
493 INVALID_LOCK_SEQUENCE = 0xC000001E,
494 /// {Invalid Mapping} An attempt was made to create a view for a section that is bigger than the section.
495 INVALID_VIEW_SIZE = 0xC000001F,
496 /// {Bad File} The attributes of the specified mapping file for a section of memory cannot be read.
497 INVALID_FILE_FOR_SECTION = 0xC0000020,
498 /// {Already Committed} The specified address range is already committed.
499 ALREADY_COMMITTED = 0xC0000021,
500 /// {Access Denied} A process has requested access to an object but has not been granted those access rights.
501 ACCESS_DENIED = 0xC0000022,
502 /// {Buffer Too Small} The buffer is too small to contain the entry. No information has been written to the buffer.
503 BUFFER_TOO_SMALL = 0xC0000023,
504 /// {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.
505 OBJECT_TYPE_MISMATCH = 0xC0000024,
506 /// {EXCEPTION} Cannot Continue Windows cannot continue from this exception.
507 NONCONTINUABLE_EXCEPTION = 0xC0000025,
508 /// An invalid exception disposition was returned by an exception handler.
509 INVALID_DISPOSITION = 0xC0000026,
510 /// Unwind exception code.
511 UNWIND = 0xC0000027,
512 /// An invalid or unaligned stack was encountered during an unwind operation.
513 BAD_STACK = 0xC0000028,
514 /// An invalid unwind target was encountered during an unwind operation.
515 INVALID_UNWIND_TARGET = 0xC0000029,
516 /// An attempt was made to unlock a page of memory that was not locked.
517 NOT_LOCKED = 0xC000002A,
518 /// A device parity error on an I/O operation.
519 PARITY_ERROR = 0xC000002B,
520 /// An attempt was made to decommit uncommitted virtual memory.
521 UNABLE_TO_DECOMMIT_VM = 0xC000002C,
522 /// An attempt was made to change the attributes on memory that has not been committed.
523 NOT_COMMITTED = 0xC000002D,
524 /// Invalid object attributes specified to NtCreatePort or invalid port attributes specified to NtConnectPort.
525 INVALID_PORT_ATTRIBUTES = 0xC000002E,
526 /// The length of the message that was passed to NtRequestPort or NtRequestWaitReplyPort is longer than the maximum message that is allowed by the port.
527 PORT_MESSAGE_TOO_LONG = 0xC000002F,
528 /// An invalid combination of parameters was specified.
529 INVALID_PARAMETER_MIX = 0xC0000030,
530 /// An attempt was made to lower a quota limit below the current usage.
531 INVALID_QUOTA_LOWER = 0xC0000031,
532 /// {Corrupt Disk} The file system structure on the disk is corrupt and unusable. Run the Chkdsk utility on the volume %hs.
533 DISK_CORRUPT_ERROR = 0xC0000032,
534 /// The object name is invalid.
535 OBJECT_NAME_INVALID = 0xC0000033,
536 /// The object name is not found.
537 OBJECT_NAME_NOT_FOUND = 0xC0000034,
538 /// The object name already exists.
539 OBJECT_NAME_COLLISION = 0xC0000035,
540 /// An attempt was made to send a message to a disconnected communication port.
541 PORT_DISCONNECTED = 0xC0000037,
542 /// An attempt was made to attach to a device that was already attached to another device.
543 DEVICE_ALREADY_ATTACHED = 0xC0000038,
544 /// The object path component was not a directory object.
545 OBJECT_PATH_INVALID = 0xC0000039,
546 /// {Path Not Found} The path %hs does not exist.
547 OBJECT_PATH_NOT_FOUND = 0xC000003A,
548 /// The object path component was not a directory object.
549 OBJECT_PATH_SYNTAX_BAD = 0xC000003B,
550 /// {Data Overrun} A data overrun error occurred.
551 DATA_OVERRUN = 0xC000003C,
552 /// {Data Late} A data late error occurred.
553 DATA_LATE_ERROR = 0xC000003D,
554 /// {Data Error} An error occurred in reading or writing data.
555 DATA_ERROR = 0xC000003E,
556 /// {Bad CRC} A cyclic redundancy check (CRC) checksum error occurred.
557 CRC_ERROR = 0xC000003F,
558 /// {Section Too Large} The specified section is too big to map the file.
559 SECTION_TOO_BIG = 0xC0000040,
560 /// The NtConnectPort request is refused.
561 PORT_CONNECTION_REFUSED = 0xC0000041,
562 /// The type of port handle is invalid for the operation that is requested.
563 INVALID_PORT_HANDLE = 0xC0000042,
564 /// A file cannot be opened because the share access flags are incompatible.
565 SHARING_VIOLATION = 0xC0000043,
566 /// Insufficient quota exists to complete the operation.
567 QUOTA_EXCEEDED = 0xC0000044,
568 /// The specified page protection was not valid.
569 INVALID_PAGE_PROTECTION = 0xC0000045,
570 /// An attempt to release a mutant object was made by a thread that was not the owner of the mutant object.
571 MUTANT_NOT_OWNED = 0xC0000046,
572 /// An attempt was made to release a semaphore such that its maximum count would have been exceeded.
573 SEMAPHORE_LIMIT_EXCEEDED = 0xC0000047,
574 /// 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.
575 PORT_ALREADY_SET = 0xC0000048,
576 /// An attempt was made to query image information on a section that does not map an image.
577 SECTION_NOT_IMAGE = 0xC0000049,
578 /// An attempt was made to suspend a thread whose suspend count was at its maximum.
579 SUSPEND_COUNT_EXCEEDED = 0xC000004A,
580 /// An attempt was made to suspend a thread that has begun termination.
581 THREAD_IS_TERMINATING = 0xC000004B,
582 /// An attempt was made to set the working set limit to an invalid value (for example, the minimum greater than maximum).
583 BAD_WORKING_SET_LIMIT = 0xC000004C,
584 /// A section was created to map a file that is not compatible with an already existing section that maps the same file.
585 INCOMPATIBLE_FILE_MAP = 0xC000004D,
586 /// A view to a section specifies a protection that is incompatible with the protection of the initial view.
587 SECTION_PROTECTION = 0xC000004E,
588 /// An operation involving EAs failed because the file system does not support EAs.
589 EAS_NOT_SUPPORTED = 0xC000004F,
590 /// An EA operation failed because the EA set is too large.
591 EA_TOO_LARGE = 0xC0000050,
592 /// An EA operation failed because the name or EA index is invalid.
593 NONEXISTENT_EA_ENTRY = 0xC0000051,
594 /// The file for which EAs were requested has no EAs.
595 NO_EAS_ON_FILE = 0xC0000052,
596 /// The EA is corrupt and cannot be read.
597 EA_CORRUPT_ERROR = 0xC0000053,
598 /// A requested read/write cannot be granted due to a conflicting file lock.
599 FILE_LOCK_CONFLICT = 0xC0000054,
600 /// A requested file lock cannot be granted due to other existing locks.
601 LOCK_NOT_GRANTED = 0xC0000055,
602 /// A non-close operation has been requested of a file object that has a delete pending.
603 DELETE_PENDING = 0xC0000056,
604 /// An attempt was made to set the control attribute on a file.
605 /// This attribute is not supported in the destination file system.
606 CTL_FILE_NOT_SUPPORTED = 0xC0000057,
607 /// Indicates a revision number that was encountered or specified is not one that is known by the service.
608 /// It might be a more recent revision than the service is aware of.
609 UNKNOWN_REVISION = 0xC0000058,
610 /// Indicates that two revision levels are incompatible.
611 REVISION_MISMATCH = 0xC0000059,
612 /// Indicates a particular security ID cannot be assigned as the owner of an object.
613 INVALID_OWNER = 0xC000005A,
614 /// Indicates a particular security ID cannot be assigned as the primary group of an object.
615 INVALID_PRIMARY_GROUP = 0xC000005B,
616 /// An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client.
617 NO_IMPERSONATION_TOKEN = 0xC000005C,
618 /// A mandatory group cannot be disabled.
619 CANT_DISABLE_MANDATORY = 0xC000005D,
620 /// No logon servers are currently available to service the logon request.
621 NO_LOGON_SERVERS = 0xC000005E,
622 /// A specified logon session does not exist. It might already have been terminated.
623 NO_SUCH_LOGON_SESSION = 0xC000005F,
624 /// A specified privilege does not exist.
625 NO_SUCH_PRIVILEGE = 0xC0000060,
626 /// A required privilege is not held by the client.
627 PRIVILEGE_NOT_HELD = 0xC0000061,
628 /// The name provided is not a properly formed account name.
629 INVALID_ACCOUNT_NAME = 0xC0000062,
630 /// The specified account already exists.
631 USER_EXISTS = 0xC0000063,
632 /// The specified account does not exist.
633 NO_SUCH_USER = 0xC0000064,
634 /// The specified group already exists.
635 GROUP_EXISTS = 0xC0000065,
636 /// The specified group does not exist.
637 NO_SUCH_GROUP = 0xC0000066,
638 /// The specified user account is already in the specified group account.
639 /// Also used to indicate a group cannot be deleted because it contains a member.
640 MEMBER_IN_GROUP = 0xC0000067,
641 /// The specified user account is not a member of the specified group account.
642 MEMBER_NOT_IN_GROUP = 0xC0000068,
643 /// Indicates the requested operation would disable or delete the last remaining administration account.
644 /// This is not allowed to prevent creating a situation in which the system cannot be administrated.
645 LAST_ADMIN = 0xC0000069,
646 /// When trying to update a password, this return status indicates that the value provided as the current password is not correct.
647 WRONG_PASSWORD = 0xC000006A,
648 /// 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.
649 ILL_FORMED_PASSWORD = 0xC000006B,
650 /// When trying to update a password, this status indicates that some password update rule has been violated.
651 /// For example, the password might not meet length criteria.
652 PASSWORD_RESTRICTION = 0xC000006C,
653 /// The attempted logon is invalid.
654 /// This is either due to a bad username or authentication information.
655 LOGON_FAILURE = 0xC000006D,
656 /// 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).
657 ACCOUNT_RESTRICTION = 0xC000006E,
658 /// The user account has time restrictions and cannot be logged onto at this time.
659 INVALID_LOGON_HOURS = 0xC000006F,
660 /// The user account is restricted so that it cannot be used to log on from the source workstation.
661 INVALID_WORKSTATION = 0xC0000070,
662 /// The user account password has expired.
663 PASSWORD_EXPIRED = 0xC0000071,
664 /// The referenced account is currently disabled and cannot be logged on to.
665 ACCOUNT_DISABLED = 0xC0000072,
666 /// None of the information to be translated has been translated.
667 NONE_MAPPED = 0xC0000073,
668 /// The number of LUIDs requested cannot be allocated with a single allocation.
669 TOO_MANY_LUIDS_REQUESTED = 0xC0000074,
670 /// Indicates there are no more LUIDs to allocate.
671 LUIDS_EXHAUSTED = 0xC0000075,
672 /// Indicates the sub-authority value is invalid for the particular use.
673 INVALID_SUB_AUTHORITY = 0xC0000076,
674 /// Indicates the ACL structure is not valid.
675 INVALID_ACL = 0xC0000077,
676 /// Indicates the SID structure is not valid.
677 INVALID_SID = 0xC0000078,
678 /// Indicates the SECURITY_DESCRIPTOR structure is not valid.
679 INVALID_SECURITY_DESCR = 0xC0000079,
680 /// Indicates the specified procedure address cannot be found in the DLL.
681 PROCEDURE_NOT_FOUND = 0xC000007A,
682 /// {Bad Image} %hs is either not designed to run on Windows or it contains an error.
683 /// Try installing the program again using the original installation media or contact your system administrator or the software vendor for support.
684 INVALID_IMAGE_FORMAT = 0xC000007B,
685 /// An attempt was made to reference a token that does not exist.
686 /// This is typically done by referencing the token that is associated with a thread when the thread is not impersonating a client.
687 NO_TOKEN = 0xC000007C,
688 /// Indicates that an attempt to build either an inherited ACL or ACE was not successful. This can be caused by a number of things.
689 /// One of the more probable causes is the replacement of a CreatorId with a SID that did not fit into the ACE or ACL.
690 BAD_INHERITANCE_ACL = 0xC000007D,
691 /// The range specified in NtUnlockFile was not locked.
692 RANGE_NOT_LOCKED = 0xC000007E,
693 /// An operation failed because the disk was full.
694 DISK_FULL = 0xC000007F,
695 /// The GUID allocation server is disabled at the moment.
696 SERVER_DISABLED = 0xC0000080,
697 /// The GUID allocation server is enabled at the moment.
698 SERVER_NOT_DISABLED = 0xC0000081,
699 /// Too many GUIDs were requested from the allocation server at once.
700 TOO_MANY_GUIDS_REQUESTED = 0xC0000082,
701 /// The GUIDs could not be allocated because the Authority Agent was exhausted.
702 GUIDS_EXHAUSTED = 0xC0000083,
703 /// The value provided was an invalid value for an identifier authority.
704 INVALID_ID_AUTHORITY = 0xC0000084,
705 /// No more authority agent values are available for the particular identifier authority value.
706 AGENTS_EXHAUSTED = 0xC0000085,
707 /// An invalid volume label has been specified.
708 INVALID_VOLUME_LABEL = 0xC0000086,
709 /// A mapped section could not be extended.
710 SECTION_NOT_EXTENDED = 0xC0000087,
711 /// Specified section to flush does not map a data file.
712 NOT_MAPPED_DATA = 0xC0000088,
713 /// Indicates the specified image file did not contain a resource section.
714 RESOURCE_DATA_NOT_FOUND = 0xC0000089,
715 /// Indicates the specified resource type cannot be found in the image file.
716 RESOURCE_TYPE_NOT_FOUND = 0xC000008A,
717 /// Indicates the specified resource name cannot be found in the image file.
718 RESOURCE_NAME_NOT_FOUND = 0xC000008B,
719 /// {EXCEPTION} Array bounds exceeded.
720 ARRAY_BOUNDS_EXCEEDED = 0xC000008C,
721 /// {EXCEPTION} Floating-point denormal operand.
722 FLOAT_DENORMAL_OPERAND = 0xC000008D,
723 /// {EXCEPTION} Floating-point division by zero.
724 FLOAT_DIVIDE_BY_ZERO = 0xC000008E,
725 /// {EXCEPTION} Floating-point inexact result.
726 FLOAT_INEXACT_RESULT = 0xC000008F,
727 /// {EXCEPTION} Floating-point invalid operation.
728 FLOAT_INVALID_OPERATION = 0xC0000090,
729 /// {EXCEPTION} Floating-point overflow.
730 FLOAT_OVERFLOW = 0xC0000091,
731 /// {EXCEPTION} Floating-point stack check.
732 FLOAT_STACK_CHECK = 0xC0000092,
733 /// {EXCEPTION} Floating-point underflow.
734 FLOAT_UNDERFLOW = 0xC0000093,
735 /// {EXCEPTION} Integer division by zero.
736 INTEGER_DIVIDE_BY_ZERO = 0xC0000094,
737 /// {EXCEPTION} Integer overflow.
738 INTEGER_OVERFLOW = 0xC0000095,
739 /// {EXCEPTION} Privileged instruction.
740 PRIVILEGED_INSTRUCTION = 0xC0000096,
741 /// An attempt was made to install more paging files than the system supports.
742 TOO_MANY_PAGING_FILES = 0xC0000097,
743 /// The volume for a file has been externally altered such that the opened file is no longer valid.
744 FILE_INVALID = 0xC0000098,
745 /// 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.
746 /// 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.
747 /// Instead, a request that requires more memory than has been allotted must fail and the STATUS_ALLOTTED_SPACE_EXCEEDED error returned.
748 ALLOTTED_SPACE_EXCEEDED = 0xC0000099,
749 /// Insufficient system resources exist to complete the API.
750 INSUFFICIENT_RESOURCES = 0xC000009A,
751 /// An attempt has been made to open a DFS exit path control file.
752 DFS_EXIT_PATH_FOUND = 0xC000009B,
753 /// There are bad blocks (sectors) on the hard disk.
754 DEVICE_DATA_ERROR = 0xC000009C,
755 /// There is bad cabling, non-termination, or the controller is not able to obtain access to the hard disk.
756 DEVICE_NOT_CONNECTED = 0xC000009D,
757 /// Virtual memory cannot be freed because the base address is not the base of the region and a region size of zero was specified.
758 FREE_VM_NOT_AT_BASE = 0xC000009F,
759 /// An attempt was made to free virtual memory that is not allocated.
760 MEMORY_NOT_ALLOCATED = 0xC00000A0,
761 /// The working set is not big enough to allow the requested pages to be locked.
762 WORKING_SET_QUOTA = 0xC00000A1,
763 /// {Write Protect Error} The disk cannot be written to because it is write-protected.
764 /// Remove the write protection from the volume %hs in drive %hs.
765 MEDIA_WRITE_PROTECTED = 0xC00000A2,
766 /// {Drive Not Ready} The drive is not ready for use; its door might be open.
767 /// Check drive %hs and make sure that a disk is inserted and that the drive door is closed.
768 DEVICE_NOT_READY = 0xC00000A3,
769 /// The specified attributes are invalid or are incompatible with the attributes for the group as a whole.
770 INVALID_GROUP_ATTRIBUTES = 0xC00000A4,
771 /// A specified impersonation level is invalid.
772 /// Also used to indicate that a required impersonation level was not provided.
773 BAD_IMPERSONATION_LEVEL = 0xC00000A5,
774 /// An attempt was made to open an anonymous-level token. Anonymous tokens cannot be opened.
775 CANT_OPEN_ANONYMOUS = 0xC00000A6,
776 /// The validation information class requested was invalid.
777 BAD_VALIDATION_CLASS = 0xC00000A7,
778 /// The type of a token object is inappropriate for its attempted use.
779 BAD_TOKEN_TYPE = 0xC00000A8,
780 /// The type of a token object is inappropriate for its attempted use.
781 BAD_MASTER_BOOT_RECORD = 0xC00000A9,
782 /// An attempt was made to execute an instruction at an unaligned address and the host system does not support unaligned instruction references.
783 INSTRUCTION_MISALIGNMENT = 0xC00000AA,
784 /// The maximum named pipe instance count has been reached.
785 INSTANCE_NOT_AVAILABLE = 0xC00000AB,
786 /// An instance of a named pipe cannot be found in the listening state.
787 PIPE_NOT_AVAILABLE = 0xC00000AC,
788 /// The named pipe is not in the connected or closing state.
789 INVALID_PIPE_STATE = 0xC00000AD,
790 /// 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.
791 PIPE_BUSY = 0xC00000AE,
792 /// The specified handle is not open to the server end of the named pipe.
793 ILLEGAL_FUNCTION = 0xC00000AF,
794 /// The specified named pipe is in the disconnected state.
795 PIPE_DISCONNECTED = 0xC00000B0,
796 /// The specified named pipe is in the closing state.
797 PIPE_CLOSING = 0xC00000B1,
798 /// The specified named pipe is in the connected state.
799 PIPE_CONNECTED = 0xC00000B2,
800 /// The specified named pipe is in the listening state.
801 PIPE_LISTENING = 0xC00000B3,
802 /// The specified named pipe is not in message mode.
803 INVALID_READ_MODE = 0xC00000B4,
804 /// {Device Timeout} The specified I/O operation on %hs was not completed before the time-out period expired.
805 IO_TIMEOUT = 0xC00000B5,
806 /// The specified file has been closed by another process.
807 FILE_FORCED_CLOSED = 0xC00000B6,
808 /// Profiling is not started.
809 PROFILING_NOT_STARTED = 0xC00000B7,
810 /// Profiling is not stopped.
811 PROFILING_NOT_STOPPED = 0xC00000B8,
812 /// The passed ACL did not contain the minimum required information.
813 COULD_NOT_INTERPRET = 0xC00000B9,
814 /// The file that was specified as a target is a directory, and the caller specified that it could be anything but a directory.
815 FILE_IS_A_DIRECTORY = 0xC00000BA,
816 /// The request is not supported.
817 NOT_SUPPORTED = 0xC00000BB,
818 /// This remote computer is not listening.
819 REMOTE_NOT_LISTENING = 0xC00000BC,
820 /// A duplicate name exists on the network.
821 DUPLICATE_NAME = 0xC00000BD,
822 /// The network path cannot be located.
823 BAD_NETWORK_PATH = 0xC00000BE,
824 /// The network is busy.
825 NETWORK_BUSY = 0xC00000BF,
826 /// This device does not exist.
827 DEVICE_DOES_NOT_EXIST = 0xC00000C0,
828 /// The network BIOS command limit has been reached.
829 TOO_MANY_COMMANDS = 0xC00000C1,
830 /// An I/O adapter hardware error has occurred.
831 ADAPTER_HARDWARE_ERROR = 0xC00000C2,
832 /// The network responded incorrectly.
833 INVALID_NETWORK_RESPONSE = 0xC00000C3,
834 /// An unexpected network error occurred.
835 UNEXPECTED_NETWORK_ERROR = 0xC00000C4,
836 /// The remote adapter is not compatible.
837 BAD_REMOTE_ADAPTER = 0xC00000C5,
838 /// The print queue is full.
839 PRINT_QUEUE_FULL = 0xC00000C6,
840 /// Space to store the file that is waiting to be printed is not available on the server.
841 NO_SPOOL_SPACE = 0xC00000C7,
842 /// The requested print file has been canceled.
843 PRINT_CANCELLED = 0xC00000C8,
844 /// The network name was deleted.
845 NETWORK_NAME_DELETED = 0xC00000C9,
846 /// Network access is denied.
847 NETWORK_ACCESS_DENIED = 0xC00000CA,
848 /// {Incorrect Network Resource Type} The specified device type (LPT, for example) conflicts with the actual device type on the remote resource.
849 BAD_DEVICE_TYPE = 0xC00000CB,
850 /// {Network Name Not Found} The specified share name cannot be found on the remote server.
851 BAD_NETWORK_NAME = 0xC00000CC,
852 /// The name limit for the network adapter card of the local computer was exceeded.
853 TOO_MANY_NAMES = 0xC00000CD,
854 /// The network BIOS session limit was exceeded.
855 TOO_MANY_SESSIONS = 0xC00000CE,
856 /// File sharing has been temporarily paused.
857 SHARING_PAUSED = 0xC00000CF,
858 /// No more connections can be made to this remote computer at this time because the computer has already accepted the maximum number of connections.
859 REQUEST_NOT_ACCEPTED = 0xC00000D0,
860 /// Print or disk redirection is temporarily paused.
861 REDIRECTOR_PAUSED = 0xC00000D1,
862 /// A network data fault occurred.
863 NET_WRITE_FAULT = 0xC00000D2,
864 /// The number of active profiling objects is at the maximum and no more can be started.
865 PROFILING_AT_LIMIT = 0xC00000D3,
866 /// {Incorrect Volume} The destination file of a rename request is located on a different device than the source of the rename request.
867 NOT_SAME_DEVICE = 0xC00000D4,
868 /// The specified file has been renamed and thus cannot be modified.
869 FILE_RENAMED = 0xC00000D5,
870 /// {Network Request Timeout} The session with a remote server has been disconnected because the time-out interval for a request has expired.
871 VIRTUAL_CIRCUIT_CLOSED = 0xC00000D6,
872 /// Indicates an attempt was made to operate on the security of an object that does not have security associated with it.
873 NO_SECURITY_ON_OBJECT = 0xC00000D7,
874 /// Used to indicate that an operation cannot continue without blocking for I/O.
875 CANT_WAIT = 0xC00000D8,
876 /// Used to indicate that a read operation was done on an empty pipe.
877 PIPE_EMPTY = 0xC00000D9,
878 /// Configuration information could not be read from the domain controller, either because the machine is unavailable or access has been denied.
879 CANT_ACCESS_DOMAIN_INFO = 0xC00000DA,
880 /// Indicates that a thread attempted to terminate itself by default (called NtTerminateThread with NULL) and it was the last thread in the current process.
881 CANT_TERMINATE_SELF = 0xC00000DB,
882 /// Indicates the Sam Server was in the wrong state to perform the desired operation.
883 INVALID_SERVER_STATE = 0xC00000DC,
884 /// Indicates the domain was in the wrong state to perform the desired operation.
885 INVALID_DOMAIN_STATE = 0xC00000DD,
886 /// This operation is only allowed for the primary domain controller of the domain.
887 INVALID_DOMAIN_ROLE = 0xC00000DE,
888 /// The specified domain did not exist.
889 NO_SUCH_DOMAIN = 0xC00000DF,
890 /// The specified domain already exists.
891 DOMAIN_EXISTS = 0xC00000E0,
892 /// An attempt was made to exceed the limit on the number of domains per server for this release.
893 DOMAIN_LIMIT_EXCEEDED = 0xC00000E1,
894 /// An error status returned when the opportunistic lock (oplock) request is denied.
895 OPLOCK_NOT_GRANTED = 0xC00000E2,
896 /// An error status returned when an invalid opportunistic lock (oplock) acknowledgment is received by a file system.
897 INVALID_OPLOCK_PROTOCOL = 0xC00000E3,
898 /// This error indicates that the requested operation cannot be completed due to a catastrophic media failure or an on-disk data structure corruption.
899 INTERNAL_DB_CORRUPTION = 0xC00000E4,
900 /// An internal error occurred.
901 INTERNAL_ERROR = 0xC00000E5,
902 /// Indicates generic access types were contained in an access mask which should already be mapped to non-generic access types.
903 GENERIC_NOT_MAPPED = 0xC00000E6,
904 /// Indicates a security descriptor is not in the necessary format (absolute or self-relative).
905 BAD_DESCRIPTOR_FORMAT = 0xC00000E7,
906 /// An access to a user buffer failed at an expected point in time.
907 /// This code is defined because the caller does not want to accept STATUS_ACCESS_VIOLATION in its filter.
908 INVALID_USER_BUFFER = 0xC00000E8,
909 /// 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.
910 /// In this case, information is lost; however, the filter correctly handles the exception.
911 UNEXPECTED_IO_ERROR = 0xC00000E9,
912 /// 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.
913 /// In this case, information is lost; however, the filter correctly handles the exception.
914 UNEXPECTED_MM_CREATE_ERR = 0xC00000EA,
915 /// 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.
916 /// In this case, information is lost; however, the filter correctly handles the exception.
917 UNEXPECTED_MM_MAP_ERROR = 0xC00000EB,
918 /// 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.
919 /// In this case, information is lost; however, the filter correctly handles the exception.
920 UNEXPECTED_MM_EXTEND_ERR = 0xC00000EC,
921 /// The requested action is restricted for use by logon processes only.
922 /// The calling process has not registered as a logon process.
923 NOT_LOGON_PROCESS = 0xC00000ED,
924 /// An attempt has been made to start a new session manager or LSA logon session by using an ID that is already in use.
925 LOGON_SESSION_EXISTS = 0xC00000EE,
926 /// An invalid parameter was passed to a service or function as the first argument.
927 INVALID_PARAMETER_1 = 0xC00000EF,
928 /// An invalid parameter was passed to a service or function as the second argument.
929 INVALID_PARAMETER_2 = 0xC00000F0,
930 /// An invalid parameter was passed to a service or function as the third argument.
931 INVALID_PARAMETER_3 = 0xC00000F1,
932 /// An invalid parameter was passed to a service or function as the fourth argument.
933 INVALID_PARAMETER_4 = 0xC00000F2,
934 /// An invalid parameter was passed to a service or function as the fifth argument.
935 INVALID_PARAMETER_5 = 0xC00000F3,
936 /// An invalid parameter was passed to a service or function as the sixth argument.
937 INVALID_PARAMETER_6 = 0xC00000F4,
938 /// An invalid parameter was passed to a service or function as the seventh argument.
939 INVALID_PARAMETER_7 = 0xC00000F5,
940 /// An invalid parameter was passed to a service or function as the eighth argument.
941 INVALID_PARAMETER_8 = 0xC00000F6,
942 /// An invalid parameter was passed to a service or function as the ninth argument.
943 INVALID_PARAMETER_9 = 0xC00000F7,
944 /// An invalid parameter was passed to a service or function as the tenth argument.
945 INVALID_PARAMETER_10 = 0xC00000F8,
946 /// An invalid parameter was passed to a service or function as the eleventh argument.
947 INVALID_PARAMETER_11 = 0xC00000F9,
948 /// An invalid parameter was passed to a service or function as the twelfth argument.
949 INVALID_PARAMETER_12 = 0xC00000FA,
950 /// An attempt was made to access a network file, but the network software was not yet started.
951 REDIRECTOR_NOT_STARTED = 0xC00000FB,
952 /// An attempt was made to start the redirector, but the redirector has already been started.
953 REDIRECTOR_STARTED = 0xC00000FC,
954 /// A new guard page for the stack cannot be created.
955 STACK_OVERFLOW = 0xC00000FD,
956 /// A specified authentication package is unknown.
957 NO_SUCH_PACKAGE = 0xC00000FE,
958 /// A malformed function table was encountered during an unwind operation.
959 BAD_FUNCTION_TABLE = 0xC00000FF,
960 /// Indicates the specified environment variable name was not found in the specified environment block.
961 VARIABLE_NOT_FOUND = 0xC0000100,
962 /// Indicates that the directory trying to be deleted is not empty.
963 DIRECTORY_NOT_EMPTY = 0xC0000101,
964 /// {Corrupt File} The file or directory %hs is corrupt and unreadable. Run the Chkdsk utility.
965 FILE_CORRUPT_ERROR = 0xC0000102,
966 /// A requested opened file is not a directory.
967 NOT_A_DIRECTORY = 0xC0000103,
968 /// The logon session is not in a state that is consistent with the requested operation.
969 BAD_LOGON_SESSION_STATE = 0xC0000104,
970 /// An internal LSA error has occurred.
971 /// An authentication package has requested the creation of a logon session but the ID of an already existing logon session has been specified.
972 LOGON_SESSION_COLLISION = 0xC0000105,
973 /// A specified name string is too long for its intended use.
974 NAME_TOO_LONG = 0xC0000106,
975 /// 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.
976 FILES_OPEN = 0xC0000107,
977 /// 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.
978 CONNECTION_IN_USE = 0xC0000108,
979 /// RtlFindMessage could not locate the requested message ID in the message table resource.
980 MESSAGE_NOT_FOUND = 0xC0000109,
981 /// An attempt was made to duplicate an object handle into or out of an exiting process.
982 PROCESS_IS_TERMINATING = 0xC000010A,
983 /// Indicates an invalid value has been provided for the LogonType requested.
984 INVALID_LOGON_TYPE = 0xC000010B,
985 /// 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.
986 /// This causes the protection attempt to fail, which might cause a file creation attempt to fail.
987 NO_GUID_TRANSLATION = 0xC000010C,
988 /// Indicates that an attempt has been made to impersonate via a named pipe that has not yet been read from.
989 CANNOT_IMPERSONATE = 0xC000010D,
990 /// Indicates that the specified image is already loaded.
991 IMAGE_ALREADY_LOADED = 0xC000010E,
992 /// Indicates that an attempt was made to change the size of the LDT for a process that has no LDT.
993 NO_LDT = 0xC0000117,
994 /// 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.
995 INVALID_LDT_SIZE = 0xC0000118,
996 /// Indicates that the starting value for the LDT information was not an integral multiple of the selector size.
997 INVALID_LDT_OFFSET = 0xC0000119,
998 /// Indicates that the user supplied an invalid descriptor when trying to set up LDT descriptors.
999 INVALID_LDT_DESCRIPTOR = 0xC000011A,
1000 /// The specified image file did not have the correct format. It appears to be NE format.
1001 INVALID_IMAGE_NE_FORMAT = 0xC000011B,
1002 /// Indicates that the transaction state of a registry subtree is incompatible with the requested operation.
1003 /// 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.
1004 RXACT_INVALID_STATE = 0xC000011C,
1005 /// Indicates an error has occurred during a registry transaction commit.
1006 /// The database has been left in an unknown, but probably inconsistent, state.
1007 /// The state of the registry transaction is left as COMMITTING.
1008 RXACT_COMMIT_FAILURE = 0xC000011D,
1009 /// An attempt was made to map a file of size zero with the maximum size specified as zero.
1010 MAPPED_FILE_SIZE_ZERO = 0xC000011E,
1011 /// Too many files are opened on a remote server.
1012 /// This error should only be returned by the Windows redirector on a remote drive.
1013 TOO_MANY_OPENED_FILES = 0xC000011F,
1014 /// The I/O request was canceled.
1015 CANCELLED = 0xC0000120,
1016 /// An attempt has been made to remove a file or directory that cannot be deleted.
1017 CANNOT_DELETE = 0xC0000121,
1018 /// Indicates a name that was specified as a remote computer name is syntactically invalid.
1019 INVALID_COMPUTER_NAME = 0xC0000122,
1020 /// 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.
1021 FILE_DELETED = 0xC0000123,
1022 /// 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.
1023 SPECIAL_ACCOUNT = 0xC0000124,
1024 /// The operation requested cannot be performed on the specified group because it is a built-in special group.
1025 SPECIAL_GROUP = 0xC0000125,
1026 /// The operation requested cannot be performed on the specified user because it is a built-in special user.
1027 SPECIAL_USER = 0xC0000126,
1028 /// Indicates a member cannot be removed from a group because the group is currently the member's primary group.
1029 MEMBERS_PRIMARY_GROUP = 0xC0000127,
1030 /// An I/O request other than close and several other special case operations was attempted using a file object that had already been closed.
1031 FILE_CLOSED = 0xC0000128,
1032 /// Indicates a process has too many threads to perform the requested action.
1033 /// For example, assignment of a primary token can be performed only when a process has zero or one threads.
1034 TOO_MANY_THREADS = 0xC0000129,
1035 /// An attempt was made to operate on a thread within a specific process, but the specified thread is not in the specified process.
1036 THREAD_NOT_IN_PROCESS = 0xC000012A,
1037 /// An attempt was made to establish a token for use as a primary token but the token is already in use.
1038 /// A token can only be the primary token of one process at a time.
1039 TOKEN_ALREADY_IN_USE = 0xC000012B,
1040 /// The page file quota was exceeded.
1041 PAGEFILE_QUOTA_EXCEEDED = 0xC000012C,
1042 /// {Out of Virtual Memory} Your system is low on virtual memory.
1043 /// To ensure that Windows runs correctly, increase the size of your virtual memory paging file. For more information, see Help.
1044 COMMITMENT_LIMIT = 0xC000012D,
1045 /// The specified image file did not have the correct format: it appears to be LE format.
1046 INVALID_IMAGE_LE_FORMAT = 0xC000012E,
1047 /// The specified image file did not have the correct format: it did not have an initial MZ.
1048 INVALID_IMAGE_NOT_MZ = 0xC000012F,
1049 /// The specified image file did not have the correct format: it did not have a proper e_lfarlc in the MZ header.
1050 INVALID_IMAGE_PROTECT = 0xC0000130,
1051 /// The specified image file did not have the correct format: it appears to be a 16-bit Windows image.
1052 INVALID_IMAGE_WIN_16 = 0xC0000131,
1053 /// The Netlogon service cannot start because another Netlogon service running in the domain conflicts with the specified role.
1054 LOGON_SERVER_CONFLICT = 0xC0000132,
1055 /// 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.
1056 TIME_DIFFERENCE_AT_DC = 0xC0000133,
1057 /// 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.
1058 SYNCHRONIZATION_REQUIRED = 0xC0000134,
1059 /// {Unable To Locate Component} This application has failed to start because %hs was not found.
1060 /// Reinstalling the application might fix this problem.
1061 DLL_NOT_FOUND = 0xC0000135,
1062 /// 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.
1063 OPEN_FAILED = 0xC0000136,
1064 /// {Privilege Failed} The I/O permissions for the process could not be changed.
1065 IO_PRIVILEGE_FAILED = 0xC0000137,
1066 /// {Ordinal Not Found} The ordinal %ld could not be located in the dynamic link library %hs.
1067 ORDINAL_NOT_FOUND = 0xC0000138,
1068 /// {Entry Point Not Found} The procedure entry point %hs could not be located in the dynamic link library %hs.
1069 ENTRYPOINT_NOT_FOUND = 0xC0000139,
1070 /// {Application Exit by CTRL+C} The application terminated as a result of a CTRL+C.
1071 CONTROL_C_EXIT = 0xC000013A,
1072 /// {Virtual Circuit Closed} The network transport on your computer has closed a network connection.
1073 /// There might or might not be I/O requests outstanding.
1074 LOCAL_DISCONNECT = 0xC000013B,
1075 /// {Virtual Circuit Closed} The network transport on a remote computer has closed a network connection.
1076 /// There might or might not be I/O requests outstanding.
1077 REMOTE_DISCONNECT = 0xC000013C,
1078 /// {Insufficient Resources on Remote Computer} The remote computer has insufficient resources to complete the network request.
1079 /// For example, the remote computer might not have enough available memory to carry out the request at this time.
1080 REMOTE_RESOURCES = 0xC000013D,
1081 /// {Virtual Circuit Closed} An existing connection (virtual circuit) has been broken at the remote computer.
1082 /// There is probably something wrong with the network software protocol or the network hardware on the remote computer.
1083 LINK_FAILED = 0xC000013E,
1084 /// {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.
1085 LINK_TIMEOUT = 0xC000013F,
1086 /// The connection handle that was given to the transport was invalid.
1087 INVALID_CONNECTION = 0xC0000140,
1088 /// The address handle that was given to the transport was invalid.
1089 INVALID_ADDRESS = 0xC0000141,
1090 /// {DLL Initialization Failed} Initialization of the dynamic link library %hs failed. The process is terminating abnormally.
1091 DLL_INIT_FAILED = 0xC0000142,
1092 /// {Missing System File} The required system file %hs is bad or missing.
1093 MISSING_SYSTEMFILE = 0xC0000143,
1094 /// {Application Error} The exception %s (0x%08lx) occurred in the application at location 0x%08lx.
1095 UNHANDLED_EXCEPTION = 0xC0000144,
1096 /// {Application Error} The application failed to initialize properly (0x%lx). Click OK to terminate the application.
1097 APP_INIT_FAILURE = 0xC0000145,
1098 /// {Unable to Create Paging File} The creation of the paging file %hs failed (%lx). The requested size was %ld.
1099 PAGEFILE_CREATE_FAILED = 0xC0000146,
1100 /// {No Paging File Specified} No paging file was specified in the system configuration.
1101 NO_PAGEFILE = 0xC0000147,
1102 /// {Incorrect System Call Level} An invalid level was passed into the specified system call.
1103 INVALID_LEVEL = 0xC0000148,
1104 /// {Incorrect Password to LAN Manager Server} You specified an incorrect password to a LAN Manager 2.x or MS-NET server.
1105 WRONG_PASSWORD_CORE = 0xC0000149,
1106 /// {EXCEPTION} A real-mode application issued a floating-point instruction and floating-point hardware is not present.
1107 ILLEGAL_FLOAT_CONTEXT = 0xC000014A,
1108 /// The pipe operation has failed because the other end of the pipe has been closed.
1109 PIPE_BROKEN = 0xC000014B,
1110 /// {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.
1111 REGISTRY_CORRUPT = 0xC000014C,
1112 /// An I/O operation initiated by the Registry failed and cannot be recovered.
1113 /// The registry could not read in, write out, or flush one of the files that contain the system's image of the registry.
1114 REGISTRY_IO_FAILED = 0xC000014D,
1115 /// 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.
1116 NO_EVENT_PAIR = 0xC000014E,
1117 /// The volume does not contain a recognized file system.
1118 /// Be sure that all required file system drivers are loaded and that the volume is not corrupt.
1119 UNRECOGNIZED_VOLUME = 0xC000014F,
1120 /// No serial device was successfully initialized. The serial driver will unload.
1121 SERIAL_NO_DEVICE_INITED = 0xC0000150,
1122 /// The specified local group does not exist.
1123 NO_SUCH_ALIAS = 0xC0000151,
1124 /// The specified account name is not a member of the group.
1125 MEMBER_NOT_IN_ALIAS = 0xC0000152,
1126 /// The specified account name is already a member of the group.
1127 MEMBER_IN_ALIAS = 0xC0000153,
1128 /// The specified local group already exists.
1129 ALIAS_EXISTS = 0xC0000154,
1130 /// A requested type of logon (for example, interactive, network, and service) is not granted by the local security policy of the target system.
1131 /// Ask the system administrator to grant the necessary form of logon.
1132 LOGON_NOT_GRANTED = 0xC0000155,
1133 /// The maximum number of secrets that can be stored in a single system was exceeded.
1134 /// The length and number of secrets is limited to satisfy U.S. State Department export restrictions.
1135 TOO_MANY_SECRETS = 0xC0000156,
1136 /// The length of a secret exceeds the maximum allowable length.
1137 /// The length and number of secrets is limited to satisfy U.S. State Department export restrictions.
1138 SECRET_TOO_LONG = 0xC0000157,
1139 /// The local security authority (LSA) database contains an internal inconsistency.
1140 INTERNAL_DB_ERROR = 0xC0000158,
1141 /// The requested operation cannot be performed in full-screen mode.
1142 FULLSCREEN_MODE = 0xC0000159,
1143 /// During a logon attempt, the user's security context accumulated too many security IDs. This is a very unusual situation.
1144 /// Remove the user from some global or local groups to reduce the number of security IDs to incorporate into the security context.
1145 TOO_MANY_CONTEXT_IDS = 0xC000015A,
1146 /// A user has requested a type of logon (for example, interactive or network) that has not been granted.
1147 /// An administrator has control over who can logon interactively and through the network.
1148 LOGON_TYPE_NOT_GRANTED = 0xC000015B,
1149 /// 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.
1150 NOT_REGISTRY_FILE = 0xC000015C,
1151 /// An attempt was made to change a user password in the security account manager without providing the necessary Windows cross-encrypted password.
1152 NT_CROSS_ENCRYPTION_REQUIRED = 0xC000015D,
1153 /// A domain server has an incorrect configuration.
1154 DOMAIN_CTRLR_CONFIG_ERROR = 0xC000015E,
1155 /// 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.
1156 FT_MISSING_MEMBER = 0xC000015F,
1157 /// A configuration registry node that represents a driver service entry was ill-formed and did not contain the required value entries.
1158 ILL_FORMED_SERVICE_ENTRY = 0xC0000160,
1159 /// An illegal character was encountered.
1160 /// For a multibyte character set, this includes a lead byte without a succeeding trail byte.
1161 /// For the Unicode character set this includes the characters 0xFFFF and 0xFFFE.
1162 ILLEGAL_CHARACTER = 0xC0000161,
1163 /// No mapping for the Unicode character exists in the target multibyte code page.
1164 UNMAPPABLE_CHARACTER = 0xC0000162,
1165 /// The Unicode character is not defined in the Unicode character set that is installed on the system.
1166 UNDEFINED_CHARACTER = 0xC0000163,
1167 /// The paging file cannot be created on a floppy disk.
1168 FLOPPY_VOLUME = 0xC0000164,
1169 /// {Floppy Disk Error} While accessing a floppy disk, an ID address mark was not found.
1170 FLOPPY_ID_MARK_NOT_FOUND = 0xC0000165,
1171 /// {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.
1172 FLOPPY_WRONG_CYLINDER = 0xC0000166,
1173 /// {Floppy Disk Error} The floppy disk controller reported an error that is not recognized by the floppy disk driver.
1174 FLOPPY_UNKNOWN_ERROR = 0xC0000167,
1175 /// {Floppy Disk Error} While accessing a floppy-disk, the controller returned inconsistent results via its registers.
1176 FLOPPY_BAD_REGISTERS = 0xC0000168,
1177 /// {Hard Disk Error} While accessing the hard disk, a recalibrate operation failed, even after retries.
1178 DISK_RECALIBRATE_FAILED = 0xC0000169,
1179 /// {Hard Disk Error} While accessing the hard disk, a disk operation failed even after retries.
1180 DISK_OPERATION_FAILED = 0xC000016A,
1181 /// {Hard Disk Error} While accessing the hard disk, a disk controller reset was needed, but even that failed.
1182 DISK_RESET_FAILED = 0xC000016B,
1183 /// An attempt was made to open a device that was sharing an interrupt request (IRQ) with other devices.
1184 /// At least one other device that uses that IRQ was already opened.
1185 /// 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.
1186 SHARED_IRQ_BUSY = 0xC000016C,
1187 /// {FT Orphaning} A disk that is part of a fault-tolerant volume can no longer be accessed.
1188 FT_ORPHANING = 0xC000016D,
1189 /// The basic input/output system (BIOS) failed to connect a system interrupt to the device or bus for which the device is connected.
1190 BIOS_FAILED_TO_CONNECT_INTERRUPT = 0xC000016E,
1191 /// The tape could not be partitioned.
1192 PARTITION_FAILURE = 0xC0000172,
1193 /// When accessing a new tape of a multi-volume partition, the current blocksize is incorrect.
1194 INVALID_BLOCK_LENGTH = 0xC0000173,
1195 /// The tape partition information could not be found when loading a tape.
1196 DEVICE_NOT_PARTITIONED = 0xC0000174,
1197 /// An attempt to lock the eject media mechanism failed.
1198 UNABLE_TO_LOCK_MEDIA = 0xC0000175,
1199 /// An attempt to unload media failed.
1200 UNABLE_TO_UNLOAD_MEDIA = 0xC0000176,
1201 /// The physical end of tape was detected.
1202 EOM_OVERFLOW = 0xC0000177,
1203 /// {No Media} There is no media in the drive. Insert media into drive %hs.
1204 NO_MEDIA = 0xC0000178,
1205 /// A member could not be added to or removed from the local group because the member does not exist.
1206 NO_SUCH_MEMBER = 0xC000017A,
1207 /// A new member could not be added to a local group because the member has the wrong account type.
1208 INVALID_MEMBER = 0xC000017B,
1209 /// An illegal operation was attempted on a registry key that has been marked for deletion.
1210 KEY_DELETED = 0xC000017C,
1211 /// The system could not allocate the required space in a registry log.
1212 NO_LOG_SPACE = 0xC000017D,
1213 /// Too many SIDs have been specified.
1214 TOO_MANY_SIDS = 0xC000017E,
1215 /// An attempt was made to change a user password in the security account manager without providing the necessary LM cross-encrypted password.
1216 LM_CROSS_ENCRYPTION_REQUIRED = 0xC000017F,
1217 /// An attempt was made to create a symbolic link in a registry key that already has subkeys or values.
1218 KEY_HAS_CHILDREN = 0xC0000180,
1219 /// An attempt was made to create a stable subkey under a volatile parent key.
1220 CHILD_MUST_BE_VOLATILE = 0xC0000181,
1221 /// The I/O device is configured incorrectly or the configuration parameters to the driver are incorrect.
1222 DEVICE_CONFIGURATION_ERROR = 0xC0000182,
1223 /// An error was detected between two drivers or within an I/O driver.
1224 DRIVER_INTERNAL_ERROR = 0xC0000183,
1225 /// The device is not in a valid state to perform this request.
1226 INVALID_DEVICE_STATE = 0xC0000184,
1227 /// The I/O device reported an I/O error.
1228 IO_DEVICE_ERROR = 0xC0000185,
1229 /// A protocol error was detected between the driver and the device.
1230 DEVICE_PROTOCOL_ERROR = 0xC0000186,
1231 /// This operation is only allowed for the primary domain controller of the domain.
1232 BACKUP_CONTROLLER = 0xC0000187,
1233 /// The log file space is insufficient to support this operation.
1234 LOG_FILE_FULL = 0xC0000188,
1235 /// A write operation was attempted to a volume after it was dismounted.
1236 TOO_LATE = 0xC0000189,
1237 /// The workstation does not have a trust secret for the primary domain in the local LSA database.
1238 NO_TRUST_LSA_SECRET = 0xC000018A,
1239 /// On applicable Windows Server releases, the SAM database does not have a computer account for this workstation trust relationship.
1240 NO_TRUST_SAM_ACCOUNT = 0xC000018B,
1241 /// The logon request failed because the trust relationship between the primary domain and the trusted domain failed.
1242 TRUSTED_DOMAIN_FAILURE = 0xC000018C,
1243 /// The logon request failed because the trust relationship between this workstation and the primary domain failed.
1244 TRUSTED_RELATIONSHIP_FAILURE = 0xC000018D,
1245 /// The Eventlog log file is corrupt.
1246 EVENTLOG_FILE_CORRUPT = 0xC000018E,
1247 /// No Eventlog log file could be opened. The Eventlog service did not start.
1248 EVENTLOG_CANT_START = 0xC000018F,
1249 /// The network logon failed. This might be because the validation authority cannot be reached.
1250 TRUST_FAILURE = 0xC0000190,
1251 /// An attempt was made to acquire a mutant such that its maximum count would have been exceeded.
1252 MUTANT_LIMIT_EXCEEDED = 0xC0000191,
1253 /// An attempt was made to logon, but the NetLogon service was not started.
1254 NETLOGON_NOT_STARTED = 0xC0000192,
1255 /// The user account has expired.
1256 ACCOUNT_EXPIRED = 0xC0000193,
1257 /// {EXCEPTION} Possible deadlock condition.
1258 POSSIBLE_DEADLOCK = 0xC0000194,
1259 /// Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed.
1260 /// Disconnect all previous connections to the server or shared resource and try again.
1261 NETWORK_CREDENTIAL_CONFLICT = 0xC0000195,
1262 /// An attempt was made to establish a session to a network server, but there are already too many sessions established to that server.
1263 REMOTE_SESSION_LIMIT = 0xC0000196,
1264 /// The log file has changed between reads.
1265 EVENTLOG_FILE_CHANGED = 0xC0000197,
1266 /// The account used is an interdomain trust account.
1267 /// Use your global user account or local user account to access this server.
1268 NOLOGON_INTERDOMAIN_TRUST_ACCOUNT = 0xC0000198,
1269 /// The account used is a computer account.
1270 /// Use your global user account or local user account to access this server.
1271 NOLOGON_WORKSTATION_TRUST_ACCOUNT = 0xC0000199,
1272 /// The account used is a server trust account.
1273 /// Use your global user account or local user account to access this server.
1274 NOLOGON_SERVER_TRUST_ACCOUNT = 0xC000019A,
1275 /// The name or SID of the specified domain is inconsistent with the trust information for that domain.
1276 DOMAIN_TRUST_INCONSISTENT = 0xC000019B,
1277 /// A volume has been accessed for which a file system driver is required that has not yet been loaded.
1278 FS_DRIVER_REQUIRED = 0xC000019C,
1279 /// Indicates that the specified image is already loaded as a DLL.
1280 IMAGE_ALREADY_LOADED_AS_DLL = 0xC000019D,
1281 /// Short name settings cannot be changed on this volume due to the global registry setting.
1282 INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING = 0xC000019E,
1283 /// Short names are not enabled on this volume.
1284 SHORT_NAMES_NOT_ENABLED_ON_VOLUME = 0xC000019F,
1285 /// The security stream for the given volume is in an inconsistent state. Please run CHKDSK on the volume.
1286 SECURITY_STREAM_IS_INCONSISTENT = 0xC00001A0,
1287 /// A requested file lock operation cannot be processed due to an invalid byte range.
1288 INVALID_LOCK_RANGE = 0xC00001A1,
1289 /// The specified access control entry (ACE) contains an invalid condition.
1290 INVALID_ACE_CONDITION = 0xC00001A2,
1291 /// The subsystem needed to support the image type is not present.
1292 IMAGE_SUBSYSTEM_NOT_PRESENT = 0xC00001A3,
1293 /// The specified file already has a notification GUID associated with it.
1294 NOTIFICATION_GUID_ALREADY_DEFINED = 0xC00001A4,
1295 /// A remote open failed because the network open restrictions were not satisfied.
1296 NETWORK_OPEN_RESTRICTION = 0xC0000201,
1297 /// There is no user session key for the specified logon session.
1298 NO_USER_SESSION_KEY = 0xC0000202,
1299 /// The remote user session has been deleted.
1300 USER_SESSION_DELETED = 0xC0000203,
1301 /// Indicates the specified resource language ID cannot be found in the image file.
1302 RESOURCE_LANG_NOT_FOUND = 0xC0000204,
1303 /// Insufficient server resources exist to complete the request.
1304 INSUFF_SERVER_RESOURCES = 0xC0000205,
1305 /// The size of the buffer is invalid for the specified operation.
1306 INVALID_BUFFER_SIZE = 0xC0000206,
1307 /// The transport rejected the specified network address as invalid.
1308 INVALID_ADDRESS_COMPONENT = 0xC0000207,
1309 /// The transport rejected the specified network address due to invalid use of a wildcard.
1310 INVALID_ADDRESS_WILDCARD = 0xC0000208,
1311 /// The transport address could not be opened because all the available addresses are in use.
1312 TOO_MANY_ADDRESSES = 0xC0000209,
1313 /// The transport address could not be opened because it already exists.
1314 ADDRESS_ALREADY_EXISTS = 0xC000020A,
1315 /// The transport address is now closed.
1316 ADDRESS_CLOSED = 0xC000020B,
1317 /// The transport connection is now disconnected.
1318 CONNECTION_DISCONNECTED = 0xC000020C,
1319 /// The transport connection has been reset.
1320 CONNECTION_RESET = 0xC000020D,
1321 /// The transport cannot dynamically acquire any more nodes.
1322 TOO_MANY_NODES = 0xC000020E,
1323 /// The transport aborted a pending transaction.
1324 TRANSACTION_ABORTED = 0xC000020F,
1325 /// The transport timed out a request that is waiting for a response.
1326 TRANSACTION_TIMED_OUT = 0xC0000210,
1327 /// The transport did not receive a release for a pending response.
1328 TRANSACTION_NO_RELEASE = 0xC0000211,
1329 /// The transport did not find a transaction that matches the specific token.
1330 TRANSACTION_NO_MATCH = 0xC0000212,
1331 /// The transport had previously responded to a transaction request.
1332 TRANSACTION_RESPONDED = 0xC0000213,
1333 /// The transport does not recognize the specified transaction request ID.
1334 TRANSACTION_INVALID_ID = 0xC0000214,
1335 /// The transport does not recognize the specified transaction request type.
1336 TRANSACTION_INVALID_TYPE = 0xC0000215,
1337 /// The transport can only process the specified request on the server side of a session.
1338 NOT_SERVER_SESSION = 0xC0000216,
1339 /// The transport can only process the specified request on the client side of a session.
1340 NOT_CLIENT_SESSION = 0xC0000217,
1341 /// {Registry File Failure} The registry cannot load the hive (file): %hs or its log or alternate. It is corrupt, absent, or not writable.
1342 CANNOT_LOAD_REGISTRY_FILE = 0xC0000218,
1343 /// {Unexpected Failure in DebugActiveProcess} An unexpected failure occurred while processing a DebugActiveProcess API request.
1344 /// Choosing OK will terminate the process, and choosing Cancel will ignore the error.
1345 DEBUG_ATTACH_FAILED = 0xC0000219,
1346 /// {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.
1347 SYSTEM_PROCESS_TERMINATED = 0xC000021A,
1348 /// {Data Not Accepted} The TDI client could not handle the data received during an indication.
1349 DATA_NOT_ACCEPTED = 0xC000021B,
1350 /// {Unable to Retrieve Browser Server List} The list of servers for this workgroup is not currently available.
1351 NO_BROWSER_SERVERS_FOUND = 0xC000021C,
1352 /// NTVDM encountered a hard error.
1353 VDM_HARD_ERROR = 0xC000021D,
1354 /// {Cancel Timeout} The driver %hs failed to complete a canceled I/O request in the allotted time.
1355 DRIVER_CANCEL_TIMEOUT = 0xC000021E,
1356 /// {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.
1357 REPLY_MESSAGE_MISMATCH = 0xC000021F,
1358 /// {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.
1359 MAPPED_ALIGNMENT = 0xC0000220,
1360 /// {Bad Image Checksum} The image %hs is possibly corrupt.
1361 /// The header checksum does not match the computed checksum.
1362 IMAGE_CHECKSUM_MISMATCH = 0xC0000221,
1363 /// {Delayed Write Failed} Windows was unable to save all the data for the file %hs. The data has been lost.
1364 /// This error might be caused by a failure of your computer hardware or network connection. Try to save this file elsewhere.
1365 LOST_WRITEBEHIND_DATA = 0xC0000222,
1366 /// The parameters passed to the server in the client/server shared memory window were invalid.
1367 /// Too much data might have been put in the shared memory window.
1368 CLIENT_SERVER_PARAMETERS_INVALID = 0xC0000223,
1369 /// The user password must be changed before logging on the first time.
1370 PASSWORD_MUST_CHANGE = 0xC0000224,
1371 /// The object was not found.
1372 NOT_FOUND = 0xC0000225,
1373 /// The stream is not a tiny stream.
1374 NOT_TINY_STREAM = 0xC0000226,
1375 /// A transaction recovery failed.
1376 RECOVERY_FAILURE = 0xC0000227,
1377 /// The request must be handled by the stack overflow code.
1378 STACK_OVERFLOW_READ = 0xC0000228,
1379 /// A consistency check failed.
1380 FAIL_CHECK = 0xC0000229,
1381 /// The attempt to insert the ID in the index failed because the ID is already in the index.
1382 DUPLICATE_OBJECTID = 0xC000022A,
1383 /// The attempt to set the object ID failed because the object already has an ID.
1384 OBJECTID_EXISTS = 0xC000022B,
1385 /// Internal OFS status codes indicating how an allocation operation is handled.
1386 /// Either it is retried after the containing oNode is moved or the extent stream is converted to a large stream.
1387 CONVERT_TO_LARGE = 0xC000022C,
1388 /// The request needs to be retried.
1389 RETRY = 0xC000022D,
1390 /// 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.
1391 FOUND_OUT_OF_SCOPE = 0xC000022E,
1392 /// The bucket array must be grown. Retry the transaction after doing so.
1393 ALLOCATE_BUCKET = 0xC000022F,
1394 /// The specified property set does not exist on the object.
1395 PROPSET_NOT_FOUND = 0xC0000230,
1396 /// The user/kernel marshaling buffer has overflowed.
1397 MARSHALL_OVERFLOW = 0xC0000231,
1398 /// The supplied variant structure contains invalid data.
1399 INVALID_VARIANT = 0xC0000232,
1400 /// A domain controller for this domain was not found.
1401 DOMAIN_CONTROLLER_NOT_FOUND = 0xC0000233,
1402 /// The user account has been automatically locked because too many invalid logon attempts or password change attempts have been requested.
1403 ACCOUNT_LOCKED_OUT = 0xC0000234,
1404 /// NtClose was called on a handle that was protected from close via NtSetInformationObject.
1405 HANDLE_NOT_CLOSABLE = 0xC0000235,
1406 /// The transport-connection attempt was refused by the remote system.
1407 CONNECTION_REFUSED = 0xC0000236,
1408 /// The transport connection was gracefully closed.
1409 GRACEFUL_DISCONNECT = 0xC0000237,
1410 /// The transport endpoint already has an address associated with it.
1411 ADDRESS_ALREADY_ASSOCIATED = 0xC0000238,
1412 /// An address has not yet been associated with the transport endpoint.
1413 ADDRESS_NOT_ASSOCIATED = 0xC0000239,
1414 /// An operation was attempted on a nonexistent transport connection.
1415 CONNECTION_INVALID = 0xC000023A,
1416 /// An invalid operation was attempted on an active transport connection.
1417 CONNECTION_ACTIVE = 0xC000023B,
1418 /// The remote network is not reachable by the transport.
1419 NETWORK_UNREACHABLE = 0xC000023C,
1420 /// The remote system is not reachable by the transport.
1421 HOST_UNREACHABLE = 0xC000023D,
1422 /// The remote system does not support the transport protocol.
1423 PROTOCOL_UNREACHABLE = 0xC000023E,
1424 /// No service is operating at the destination port of the transport on the remote system.
1425 PORT_UNREACHABLE = 0xC000023F,
1426 /// The request was aborted.
1427 REQUEST_ABORTED = 0xC0000240,
1428 /// The transport connection was aborted by the local system.
1429 CONNECTION_ABORTED = 0xC0000241,
1430 /// The specified buffer contains ill-formed data.
1431 BAD_COMPRESSION_BUFFER = 0xC0000242,
1432 /// The requested operation cannot be performed on a file with a user mapped section open.
1433 USER_MAPPED_FILE = 0xC0000243,
1434 /// {Audit Failed} An attempt to generate a security audit failed.
1435 AUDIT_FAILED = 0xC0000244,
1436 /// The timer resolution was not previously set by the current process.
1437 TIMER_RESOLUTION_NOT_SET = 0xC0000245,
1438 /// A connection to the server could not be made because the limit on the number of concurrent connections for this account has been reached.
1439 CONNECTION_COUNT_LIMIT = 0xC0000246,
1440 /// Attempting to log on during an unauthorized time of day for this account.
1441 LOGIN_TIME_RESTRICTION = 0xC0000247,
1442 /// The account is not authorized to log on from this station.
1443 LOGIN_WKSTA_RESTRICTION = 0xC0000248,
1444 /// {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.
1445 IMAGE_MP_UP_MISMATCH = 0xC0000249,
1446 /// There is insufficient account information to log you on.
1447 INSUFFICIENT_LOGON_INFO = 0xC0000250,
1448 /// {Invalid DLL Entrypoint} The dynamic link library %hs is not written correctly.
1449 /// The stack pointer has been left in an inconsistent state.
1450 /// The entry point should be declared as WINAPI or STDCALL.
1451 /// Select YES to fail the DLL load. Select NO to continue execution.
1452 /// Selecting NO might cause the application to operate incorrectly.
1453 BAD_DLL_ENTRYPOINT = 0xC0000251,
1454 /// {Invalid Service Callback Entrypoint} The %hs service is not written correctly.
1455 /// The stack pointer has been left in an inconsistent state.
1456 /// The callback entry point should be declared as WINAPI or STDCALL.
1457 /// Selecting OK will cause the service to continue operation.
1458 /// However, the service process might operate incorrectly.
1459 BAD_SERVICE_ENTRYPOINT = 0xC0000252,
1460 /// The server received the messages but did not send a reply.
1461 LPC_REPLY_LOST = 0xC0000253,
1462 /// There is an IP address conflict with another system on the network.
1463 IP_ADDRESS_CONFLICT1 = 0xC0000254,
1464 /// There is an IP address conflict with another system on the network.
1465 IP_ADDRESS_CONFLICT2 = 0xC0000255,
1466 /// {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.
1467 REGISTRY_QUOTA_LIMIT = 0xC0000256,
1468 /// The contacted server does not support the indicated part of the DFS namespace.
1469 PATH_NOT_COVERED = 0xC0000257,
1470 /// A callback return system service cannot be executed when no callback is active.
1471 NO_CALLBACK_ACTIVE = 0xC0000258,
1472 /// The service being accessed is licensed for a particular number of connections.
1473 /// No more connections can be made to the service at this time because the service has already accepted the maximum number of connections.
1474 LICENSE_QUOTA_EXCEEDED = 0xC0000259,
1475 /// The password provided is too short to meet the policy of your user account. Choose a longer password.
1476 PWD_TOO_SHORT = 0xC000025A,
1477 /// The policy of your user account does not allow you to change passwords too frequently.
1478 /// This is done to prevent users from changing back to a familiar, but potentially discovered, password.
1479 /// If you feel your password has been compromised, contact your administrator immediately to have a new one assigned.
1480 PWD_TOO_RECENT = 0xC000025B,
1481 /// You have attempted to change your password to one that you have used in the past.
1482 /// The policy of your user account does not allow this.
1483 /// Select a password that you have not previously used.
1484 PWD_HISTORY_CONFLICT = 0xC000025C,
1485 /// You have attempted to load a legacy device driver while its device instance had been disabled.
1486 PLUGPLAY_NO_DEVICE = 0xC000025E,
1487 /// The specified compression format is unsupported.
1488 UNSUPPORTED_COMPRESSION = 0xC000025F,
1489 /// The specified hardware profile configuration is invalid.
1490 INVALID_HW_PROFILE = 0xC0000260,
1491 /// The specified Plug and Play registry device path is invalid.
1492 INVALID_PLUGPLAY_DEVICE_PATH = 0xC0000261,
1493 /// {Driver Entry Point Not Found} The %hs device driver could not locate the ordinal %ld in driver %hs.
1494 DRIVER_ORDINAL_NOT_FOUND = 0xC0000262,
1495 /// {Driver Entry Point Not Found} The %hs device driver could not locate the entry point %hs in driver %hs.
1496 DRIVER_ENTRYPOINT_NOT_FOUND = 0xC0000263,
1497 /// {Application Error} The application attempted to release a resource it did not own. Click OK to terminate the application.
1498 RESOURCE_NOT_OWNED = 0xC0000264,
1499 /// An attempt was made to create more links on a file than the file system supports.
1500 TOO_MANY_LINKS = 0xC0000265,
1501 /// The specified quota list is internally inconsistent with its descriptor.
1502 QUOTA_LIST_INCONSISTENT = 0xC0000266,
1503 /// The specified file has been relocated to offline storage.
1504 FILE_IS_OFFLINE = 0xC0000267,
1505 /// {Windows Evaluation Notification} The evaluation period for this installation of Windows has expired. This system will shutdown in 1 hour.
1506 /// To restore access to this installation of Windows, upgrade this installation by using a licensed distribution of this product.
1507 EVALUATION_EXPIRATION = 0xC0000268,
1508 /// {Illegal System DLL Relocation} The system DLL %hs was relocated in memory. The application will not run properly.
1509 /// The relocation occurred because the DLL %hs occupied an address range that is reserved for Windows system DLLs.
1510 /// The vendor supplying the DLL should be contacted for a new DLL.
1511 ILLEGAL_DLL_RELOCATION = 0xC0000269,
1512 /// {License Violation} The system has detected tampering with your registered product type.
1513 /// This is a violation of your software license. Tampering with the product type is not permitted.
1514 LICENSE_VIOLATION = 0xC000026A,
1515 /// {DLL Initialization Failed} The application failed to initialize because the window station is shutting down.
1516 DLL_INIT_FAILED_LOGOFF = 0xC000026B,
1517 /// {Unable to Load Device Driver} %hs device driver could not be loaded. Error Status was 0x%x.
1518 DRIVER_UNABLE_TO_LOAD = 0xC000026C,
1519 /// DFS is unavailable on the contacted server.
1520 DFS_UNAVAILABLE = 0xC000026D,
1521 /// An operation was attempted to a volume after it was dismounted.
1522 VOLUME_DISMOUNTED = 0xC000026E,
1523 /// An internal error occurred in the Win32 x86 emulation subsystem.
1524 WX86_INTERNAL_ERROR = 0xC000026F,
1525 /// Win32 x86 emulation subsystem floating-point stack check.
1526 WX86_FLOAT_STACK_CHECK = 0xC0000270,
1527 /// The validation process needs to continue on to the next step.
1528 VALIDATE_CONTINUE = 0xC0000271,
1529 /// There was no match for the specified key in the index.
1530 NO_MATCH = 0xC0000272,
1531 /// There are no more matches for the current index enumeration.
1532 NO_MORE_MATCHES = 0xC0000273,
1533 /// The NTFS file or directory is not a reparse point.
1534 NOT_A_REPARSE_POINT = 0xC0000275,
1535 /// The Windows I/O reparse tag passed for the NTFS reparse point is invalid.
1536 IO_REPARSE_TAG_INVALID = 0xC0000276,
1537 /// The Windows I/O reparse tag does not match the one that is in the NTFS reparse point.
1538 IO_REPARSE_TAG_MISMATCH = 0xC0000277,
1539 /// The user data passed for the NTFS reparse point is invalid.
1540 IO_REPARSE_DATA_INVALID = 0xC0000278,
1541 /// The layered file system driver for this I/O tag did not handle it when needed.
1542 IO_REPARSE_TAG_NOT_HANDLED = 0xC0000279,
1543 /// The NTFS symbolic link could not be resolved even though the initial file name is valid.
1544 REPARSE_POINT_NOT_RESOLVED = 0xC0000280,
1545 /// The NTFS directory is a reparse point.
1546 DIRECTORY_IS_A_REPARSE_POINT = 0xC0000281,
1547 /// The range could not be added to the range list because of a conflict.
1548 RANGE_LIST_CONFLICT = 0xC0000282,
1549 /// The specified medium changer source element contains no media.
1550 SOURCE_ELEMENT_EMPTY = 0xC0000283,
1551 /// The specified medium changer destination element already contains media.
1552 DESTINATION_ELEMENT_FULL = 0xC0000284,
1553 /// The specified medium changer element does not exist.
1554 ILLEGAL_ELEMENT_ADDRESS = 0xC0000285,
1555 /// The specified element is contained in a magazine that is no longer present.
1556 MAGAZINE_NOT_PRESENT = 0xC0000286,
1557 /// The device requires re-initialization due to hardware errors.
1558 REINITIALIZATION_NEEDED = 0xC0000287,
1559 /// The file encryption attempt failed.
1560 ENCRYPTION_FAILED = 0xC000028A,
1561 /// The file decryption attempt failed.
1562 DECRYPTION_FAILED = 0xC000028B,
1563 /// The specified range could not be found in the range list.
1564 RANGE_NOT_FOUND = 0xC000028C,
1565 /// There is no encryption recovery policy configured for this system.
1566 NO_RECOVERY_POLICY = 0xC000028D,
1567 /// The required encryption driver is not loaded for this system.
1568 NO_EFS = 0xC000028E,
1569 /// The file was encrypted with a different encryption driver than is currently loaded.
1570 WRONG_EFS = 0xC000028F,
1571 /// There are no EFS keys defined for the user.
1572 NO_USER_KEYS = 0xC0000290,
1573 /// The specified file is not encrypted.
1574 FILE_NOT_ENCRYPTED = 0xC0000291,
1575 /// The specified file is not in the defined EFS export format.
1576 NOT_EXPORT_FORMAT = 0xC0000292,
1577 /// The specified file is encrypted and the user does not have the ability to decrypt it.
1578 FILE_ENCRYPTED = 0xC0000293,
1579 /// The GUID passed was not recognized as valid by a WMI data provider.
1580 WMI_GUID_NOT_FOUND = 0xC0000295,
1581 /// The instance name passed was not recognized as valid by a WMI data provider.
1582 WMI_INSTANCE_NOT_FOUND = 0xC0000296,
1583 /// The data item ID passed was not recognized as valid by a WMI data provider.
1584 WMI_ITEMID_NOT_FOUND = 0xC0000297,
1585 /// The WMI request could not be completed and should be retried.
1586 WMI_TRY_AGAIN = 0xC0000298,
1587 /// The policy object is shared and can only be modified at the root.
1588 SHARED_POLICY = 0xC0000299,
1589 /// The policy object does not exist when it should.
1590 POLICY_OBJECT_NOT_FOUND = 0xC000029A,
1591 /// The requested policy information only lives in the Ds.
1592 POLICY_ONLY_IN_DS = 0xC000029B,
1593 /// The volume must be upgraded to enable this feature.
1594 VOLUME_NOT_UPGRADED = 0xC000029C,
1595 /// The remote storage service is not operational at this time.
1596 REMOTE_STORAGE_NOT_ACTIVE = 0xC000029D,
1597 /// The remote storage service encountered a media error.
1598 REMOTE_STORAGE_MEDIA_ERROR = 0xC000029E,
1599 /// The tracking (workstation) service is not running.
1600 NO_TRACKING_SERVICE = 0xC000029F,
1601 /// The server process is running under a SID that is different from the SID that is required by client.
1602 SERVER_SID_MISMATCH = 0xC00002A0,
1603 /// The specified directory service attribute or value does not exist.
1604 DS_NO_ATTRIBUTE_OR_VALUE = 0xC00002A1,
1605 /// The attribute syntax specified to the directory service is invalid.
1606 DS_INVALID_ATTRIBUTE_SYNTAX = 0xC00002A2,
1607 /// The attribute type specified to the directory service is not defined.
1608 DS_ATTRIBUTE_TYPE_UNDEFINED = 0xC00002A3,
1609 /// The specified directory service attribute or value already exists.
1610 DS_ATTRIBUTE_OR_VALUE_EXISTS = 0xC00002A4,
1611 /// The directory service is busy.
1612 DS_BUSY = 0xC00002A5,
1613 /// The directory service is unavailable.
1614 DS_UNAVAILABLE = 0xC00002A6,
1615 /// The directory service was unable to allocate a relative identifier.
1616 DS_NO_RIDS_ALLOCATED = 0xC00002A7,
1617 /// The directory service has exhausted the pool of relative identifiers.
1618 DS_NO_MORE_RIDS = 0xC00002A8,
1619 /// The requested operation could not be performed because the directory service is not the master for that type of operation.
1620 DS_INCORRECT_ROLE_OWNER = 0xC00002A9,
1621 /// The directory service was unable to initialize the subsystem that allocates relative identifiers.
1622 DS_RIDMGR_INIT_ERROR = 0xC00002AA,
1623 /// The requested operation did not satisfy one or more constraints that are associated with the class of the object.
1624 DS_OBJ_CLASS_VIOLATION = 0xC00002AB,
1625 /// The directory service can perform the requested operation only on a leaf object.
1626 DS_CANT_ON_NON_LEAF = 0xC00002AC,
1627 /// The directory service cannot perform the requested operation on the Relatively Defined Name (RDN) attribute of an object.
1628 DS_CANT_ON_RDN = 0xC00002AD,
1629 /// The directory service detected an attempt to modify the object class of an object.
1630 DS_CANT_MOD_OBJ_CLASS = 0xC00002AE,
1631 /// An error occurred while performing a cross domain move operation.
1632 DS_CROSS_DOM_MOVE_FAILED = 0xC00002AF,
1633 /// Unable to contact the global catalog server.
1634 DS_GC_NOT_AVAILABLE = 0xC00002B0,
1635 /// The requested operation requires a directory service, and none was available.
1636 DIRECTORY_SERVICE_REQUIRED = 0xC00002B1,
1637 /// The reparse attribute cannot be set because it is incompatible with an existing attribute.
1638 REPARSE_ATTRIBUTE_CONFLICT = 0xC00002B2,
1639 /// A group marked "use for deny only" cannot be enabled.
1640 CANT_ENABLE_DENY_ONLY = 0xC00002B3,
1641 /// {EXCEPTION} Multiple floating-point faults.
1642 FLOAT_MULTIPLE_FAULTS = 0xC00002B4,
1643 /// {EXCEPTION} Multiple floating-point traps.
1644 FLOAT_MULTIPLE_TRAPS = 0xC00002B5,
1645 /// The device has been removed.
1646 DEVICE_REMOVED = 0xC00002B6,
1647 /// The volume change journal is being deleted.
1648 JOURNAL_DELETE_IN_PROGRESS = 0xC00002B7,
1649 /// The volume change journal is not active.
1650 JOURNAL_NOT_ACTIVE = 0xC00002B8,
1651 /// The requested interface is not supported.
1652 NOINTERFACE = 0xC00002B9,
1653 /// A directory service resource limit has been exceeded.
1654 DS_ADMIN_LIMIT_EXCEEDED = 0xC00002C1,
1655 /// {System Standby Failed} The driver %hs does not support standby mode.
1656 /// Updating this driver allows the system to go to standby mode.
1657 DRIVER_FAILED_SLEEP = 0xC00002C2,
1658 /// Mutual Authentication failed. The server password is out of date at the domain controller.
1659 MUTUAL_AUTHENTICATION_FAILED = 0xC00002C3,
1660 /// The system file %1 has become corrupt and has been replaced.
1661 CORRUPT_SYSTEM_FILE = 0xC00002C4,
1662 /// {EXCEPTION} Alignment Error A data type misalignment error was detected in a load or store instruction.
1663 DATATYPE_MISALIGNMENT_ERROR = 0xC00002C5,
1664 /// The WMI data item or data block is read-only.
1665 WMI_READ_ONLY = 0xC00002C6,
1666 /// The WMI data item or data block could not be changed.
1667 WMI_SET_FAILURE = 0xC00002C7,
1668 /// {Virtual Memory Minimum Too Low} Your system is low on virtual memory.
1669 /// Windows is increasing the size of your virtual memory paging file.
1670 /// During this process, memory requests for some applications might be denied. For more information, see Help.
1671 COMMITMENT_MINIMUM = 0xC00002C8,
1672 /// {EXCEPTION} Register NaT consumption faults.
1673 /// A NaT value is consumed on a non-speculative instruction.
1674 REG_NAT_CONSUMPTION = 0xC00002C9,
1675 /// The transport element of the medium changer contains media, which is causing the operation to fail.
1676 TRANSPORT_FULL = 0xC00002CA,
1677 /// Security Accounts Manager initialization failed because of the following error: %hs Error Status: 0x%x.
1678 /// Click OK to shut down this system and restart in Directory Services Restore Mode.
1679 /// Check the event log for more detailed information.
1680 DS_SAM_INIT_FAILURE = 0xC00002CB,
1681 /// This operation is supported only when you are connected to the server.
1682 ONLY_IF_CONNECTED = 0xC00002CC,
1683 /// Only an administrator can modify the membership list of an administrative group.
1684 DS_SENSITIVE_GROUP_VIOLATION = 0xC00002CD,
1685 /// A device was removed so enumeration must be restarted.
1686 PNP_RESTART_ENUMERATION = 0xC00002CE,
1687 /// The journal entry has been deleted from the journal.
1688 JOURNAL_ENTRY_DELETED = 0xC00002CF,
1689 /// Cannot change the primary group ID of a domain controller account.
1690 DS_CANT_MOD_PRIMARYGROUPID = 0xC00002D0,
1691 /// {Fatal System Error} The system image %s is not properly signed.
1692 /// The file has been replaced with the signed file. The system has been shut down.
1693 SYSTEM_IMAGE_BAD_SIGNATURE = 0xC00002D1,
1694 /// The device will not start without a reboot.
1695 PNP_REBOOT_REQUIRED = 0xC00002D2,
1696 /// The power state of the current device cannot support this request.
1697 POWER_STATE_INVALID = 0xC00002D3,
1698 /// The specified group type is invalid.
1699 DS_INVALID_GROUP_TYPE = 0xC00002D4,
1700 /// In a mixed domain, no nesting of a global group if the group is security enabled.
1701 DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN = 0xC00002D5,
1702 /// In a mixed domain, cannot nest local groups with other local groups, if the group is security enabled.
1703 DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN = 0xC00002D6,
1704 /// A global group cannot have a local group as a member.
1705 DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER = 0xC00002D7,
1706 /// A global group cannot have a universal group as a member.
1707 DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER = 0xC00002D8,
1708 /// A universal group cannot have a local group as a member.
1709 DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER = 0xC00002D9,
1710 /// A global group cannot have a cross-domain member.
1711 DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER = 0xC00002DA,
1712 /// A local group cannot have another cross-domain local group as a member.
1713 DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER = 0xC00002DB,
1714 /// Cannot change to a security-disabled group because primary members are in this group.
1715 DS_HAVE_PRIMARY_MEMBERS = 0xC00002DC,
1716 /// The WMI operation is not supported by the data block or method.
1717 WMI_NOT_SUPPORTED = 0xC00002DD,
1718 /// There is not enough power to complete the requested operation.
1719 INSUFFICIENT_POWER = 0xC00002DE,
1720 /// The Security Accounts Manager needs to get the boot password.
1721 SAM_NEED_BOOTKEY_PASSWORD = 0xC00002DF,
1722 /// The Security Accounts Manager needs to get the boot key from the floppy disk.
1723 SAM_NEED_BOOTKEY_FLOPPY = 0xC00002E0,
1724 /// The directory service cannot start.
1725 DS_CANT_START = 0xC00002E1,
1726 /// The directory service could not start because of the following error: %hs Error Status: 0x%x.
1727 /// Click OK to shut down this system and restart in Directory Services Restore Mode.
1728 /// Check the event log for more detailed information.
1729 DS_INIT_FAILURE = 0xC00002E2,
1730 /// The Security Accounts Manager initialization failed because of the following error: %hs Error Status: 0x%x.
1731 /// Click OK to shut down this system and restart in Safe Mode.
1732 /// Check the event log for more detailed information.
1733 SAM_INIT_FAILURE = 0xC00002E3,
1734 /// The requested operation can be performed only on a global catalog server.
1735 DS_GC_REQUIRED = 0xC00002E4,
1736 /// A local group can only be a member of other local groups in the same domain.
1737 DS_LOCAL_MEMBER_OF_LOCAL_ONLY = 0xC00002E5,
1738 /// Foreign security principals cannot be members of universal groups.
1739 DS_NO_FPO_IN_UNIVERSAL_GROUPS = 0xC00002E6,
1740 /// Your computer could not be joined to the domain.
1741 /// You have exceeded the maximum number of computer accounts you are allowed to create in this domain.
1742 /// Contact your system administrator to have this limit reset or increased.
1743 DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED = 0xC00002E7,
1744 /// This operation cannot be performed on the current domain.
1745 CURRENT_DOMAIN_NOT_ALLOWED = 0xC00002E9,
1746 /// The directory or file cannot be created.
1747 CANNOT_MAKE = 0xC00002EA,
1748 /// The system is in the process of shutting down.
1749 SYSTEM_SHUTDOWN = 0xC00002EB,
1750 /// Directory Services could not start because of the following error: %hs Error Status: 0x%x. Click OK to shut down the system.
1751 /// You can use the recovery console to diagnose the system further.
1752 DS_INIT_FAILURE_CONSOLE = 0xC00002EC,
1753 /// Security Accounts Manager initialization failed because of the following error: %hs Error Status: 0x%x. Click OK to shut down the system.
1754 /// You can use the recovery console to diagnose the system further.
1755 DS_SAM_INIT_FAILURE_CONSOLE = 0xC00002ED,
1756 /// A security context was deleted before the context was completed. This is considered a logon failure.
1757 UNFINISHED_CONTEXT_DELETED = 0xC00002EE,
1758 /// The client is trying to negotiate a context and the server requires user-to-user but did not send a TGT reply.
1759 NO_TGT_REPLY = 0xC00002EF,
1760 /// An object ID was not found in the file.
1761 OBJECTID_NOT_FOUND = 0xC00002F0,
1762 /// Unable to accomplish the requested task because the local machine does not have any IP addresses.
1763 NO_IP_ADDRESSES = 0xC00002F1,
1764 /// The supplied credential handle does not match the credential that is associated with the security context.
1765 WRONG_CREDENTIAL_HANDLE = 0xC00002F2,
1766 /// The crypto system or checksum function is invalid because a required function is unavailable.
1767 CRYPTO_SYSTEM_INVALID = 0xC00002F3,
1768 /// The number of maximum ticket referrals has been exceeded.
1769 MAX_REFERRALS_EXCEEDED = 0xC00002F4,
1770 /// The local machine must be a Kerberos KDC (domain controller) and it is not.
1771 MUST_BE_KDC = 0xC00002F5,
1772 /// The other end of the security negotiation requires strong crypto but it is not supported on the local machine.
1773 STRONG_CRYPTO_NOT_SUPPORTED = 0xC00002F6,
1774 /// The KDC reply contained more than one principal name.
1775 TOO_MANY_PRINCIPALS = 0xC00002F7,
1776 /// Expected to find PA data for a hint of what etype to use, but it was not found.
1777 NO_PA_DATA = 0xC00002F8,
1778 /// The client certificate does not contain a valid UPN, or does not match the client name in the logon request. Contact your administrator.
1779 PKINIT_NAME_MISMATCH = 0xC00002F9,
1780 /// Smart card logon is required and was not used.
1781 SMARTCARD_LOGON_REQUIRED = 0xC00002FA,
1782 /// An invalid request was sent to the KDC.
1783 KDC_INVALID_REQUEST = 0xC00002FB,
1784 /// The KDC was unable to generate a referral for the service requested.
1785 KDC_UNABLE_TO_REFER = 0xC00002FC,
1786 /// The encryption type requested is not supported by the KDC.
1787 KDC_UNKNOWN_ETYPE = 0xC00002FD,
1788 /// A system shutdown is in progress.
1789 SHUTDOWN_IN_PROGRESS = 0xC00002FE,
1790 /// The server machine is shutting down.
1791 SERVER_SHUTDOWN_IN_PROGRESS = 0xC00002FF,
1792 /// This operation is not supported on a computer running Windows Server 2003 operating system for Small Business Server.
1793 NOT_SUPPORTED_ON_SBS = 0xC0000300,
1794 /// The WMI GUID is no longer available.
1795 WMI_GUID_DISCONNECTED = 0xC0000301,
1796 /// Collection or events for the WMI GUID is already disabled.
1797 WMI_ALREADY_DISABLED = 0xC0000302,
1798 /// Collection or events for the WMI GUID is already enabled.
1799 WMI_ALREADY_ENABLED = 0xC0000303,
1800 /// The master file table on the volume is too fragmented to complete this operation.
1801 MFT_TOO_FRAGMENTED = 0xC0000304,
1802 /// Copy protection failure.
1803 COPY_PROTECTION_FAILURE = 0xC0000305,
1804 /// Copy protection error—DVD CSS Authentication failed.
1805 CSS_AUTHENTICATION_FAILURE = 0xC0000306,
1806 /// Copy protection error—The specified sector does not contain a valid key.
1807 CSS_KEY_NOT_PRESENT = 0xC0000307,
1808 /// Copy protection error—DVD session key not established.
1809 CSS_KEY_NOT_ESTABLISHED = 0xC0000308,
1810 /// Copy protection error—The read failed because the sector is encrypted.
1811 CSS_SCRAMBLED_SECTOR = 0xC0000309,
1812 /// Copy protection error—The region of the specified DVD does not correspond to the region setting of the drive.
1813 CSS_REGION_MISMATCH = 0xC000030A,
1814 /// Copy protection error—The region setting of the drive might be permanent.
1815 CSS_RESETS_EXHAUSTED = 0xC000030B,
1816 /// The Kerberos protocol encountered an error while validating the KDC certificate during smart card logon.
1817 /// There is more information in the system event log.
1818 PKINIT_FAILURE = 0xC0000320,
1819 /// The Kerberos protocol encountered an error while attempting to use the smart card subsystem.
1820 SMARTCARD_SUBSYSTEM_FAILURE = 0xC0000321,
1821 /// The target server does not have acceptable Kerberos credentials.
1822 NO_KERB_KEY = 0xC0000322,
1823 /// The transport determined that the remote system is down.
1824 HOST_DOWN = 0xC0000350,
1825 /// An unsupported pre-authentication mechanism was presented to the Kerberos package.
1826 UNSUPPORTED_PREAUTH = 0xC0000351,
1827 /// 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.
1828 EFS_ALG_BLOB_TOO_BIG = 0xC0000352,
1829 /// An attempt to remove a processes DebugPort was made, but a port was not already associated with the process.
1830 PORT_NOT_SET = 0xC0000353,
1831 /// An attempt to do an operation on a debug port failed because the port is in the process of being deleted.
1832 DEBUGGER_INACTIVE = 0xC0000354,
1833 /// This version of Windows is not compatible with the behavior version of the directory forest, domain, or domain controller.
1834 DS_VERSION_CHECK_FAILURE = 0xC0000355,
1835 /// The specified event is currently not being audited.
1836 AUDITING_DISABLED = 0xC0000356,
1837 /// The machine account was created prior to Windows NT 4.0 operating system. The account needs to be recreated.
1838 PRENT4_MACHINE_ACCOUNT = 0xC0000357,
1839 /// An account group cannot have a universal group as a member.
1840 DS_AG_CANT_HAVE_UNIVERSAL_MEMBER = 0xC0000358,
1841 /// The specified image file did not have the correct format; it appears to be a 32-bit Windows image.
1842 INVALID_IMAGE_WIN_32 = 0xC0000359,
1843 /// The specified image file did not have the correct format; it appears to be a 64-bit Windows image.
1844 INVALID_IMAGE_WIN_64 = 0xC000035A,
1845 /// The client's supplied SSPI channel bindings were incorrect.
1846 BAD_BINDINGS = 0xC000035B,
1847 /// The client session has expired; so the client must re-authenticate to continue accessing the remote resources.
1848 NETWORK_SESSION_EXPIRED = 0xC000035C,
1849 /// The AppHelp dialog box canceled; thus preventing the application from starting.
1850 APPHELP_BLOCK = 0xC000035D,
1851 /// The SID filtering operation removed all SIDs.
1852 ALL_SIDS_FILTERED = 0xC000035E,
1853 /// The driver was not loaded because the system is starting in safe mode.
1854 NOT_SAFE_MODE_DRIVER = 0xC000035F,
1855 /// Access to %1 has been restricted by your Administrator by the default software restriction policy level.
1856 ACCESS_DISABLED_BY_POLICY_DEFAULT = 0xC0000361,
1857 /// Access to %1 has been restricted by your Administrator by location with policy rule %2 placed on path %3.
1858 ACCESS_DISABLED_BY_POLICY_PATH = 0xC0000362,
1859 /// Access to %1 has been restricted by your Administrator by software publisher policy.
1860 ACCESS_DISABLED_BY_POLICY_PUBLISHER = 0xC0000363,
1861 /// Access to %1 has been restricted by your Administrator by policy rule %2.
1862 ACCESS_DISABLED_BY_POLICY_OTHER = 0xC0000364,
1863 /// The driver was not loaded because it failed its initialization call.
1864 FAILED_DRIVER_ENTRY = 0xC0000365,
1865 /// The device encountered an error while applying power or reading the device configuration.
1866 /// This might be caused by a failure of your hardware or by a poor connection.
1867 DEVICE_ENUMERATION_ERROR = 0xC0000366,
1868 /// 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.
1869 MOUNT_POINT_NOT_RESOLVED = 0xC0000368,
1870 /// 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.
1871 INVALID_DEVICE_OBJECT_PARAMETER = 0xC0000369,
1872 /// A machine check error has occurred.
1873 /// Check the system event log for additional information.
1874 MCA_OCCURED = 0xC000036A,
1875 /// Driver %2 has been blocked from loading.
1876 DRIVER_BLOCKED_CRITICAL = 0xC000036B,
1877 /// Driver %2 has been blocked from loading.
1878 DRIVER_BLOCKED = 0xC000036C,
1879 /// There was error [%2] processing the driver database.
1880 DRIVER_DATABASE_ERROR = 0xC000036D,
1881 /// System hive size has exceeded its limit.
1882 SYSTEM_HIVE_TOO_LARGE = 0xC000036E,
1883 /// A dynamic link library (DLL) referenced a module that was neither a DLL nor the process's executable image.
1884 INVALID_IMPORT_OF_NON_DLL = 0xC000036F,
1885 /// The local account store does not contain secret material for the specified account.
1886 NO_SECRETS = 0xC0000371,
1887 /// Access to %1 has been restricted by your Administrator by policy rule %2.
1888 ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY = 0xC0000372,
1889 /// The system was not able to allocate enough memory to perform a stack switch.
1890 FAILED_STACK_SWITCH = 0xC0000373,
1891 /// A heap has been corrupted.
1892 HEAP_CORRUPTION = 0xC0000374,
1893 /// An incorrect PIN was presented to the smart card.
1894 SMARTCARD_WRONG_PIN = 0xC0000380,
1895 /// The smart card is blocked.
1896 SMARTCARD_CARD_BLOCKED = 0xC0000381,
1897 /// No PIN was presented to the smart card.
1898 SMARTCARD_CARD_NOT_AUTHENTICATED = 0xC0000382,
1899 /// No smart card is available.
1900 SMARTCARD_NO_CARD = 0xC0000383,
1901 /// The requested key container does not exist on the smart card.
1902 SMARTCARD_NO_KEY_CONTAINER = 0xC0000384,
1903 /// The requested certificate does not exist on the smart card.
1904 SMARTCARD_NO_CERTIFICATE = 0xC0000385,
1905 /// The requested keyset does not exist.
1906 SMARTCARD_NO_KEYSET = 0xC0000386,
1907 /// A communication error with the smart card has been detected.
1908 SMARTCARD_IO_ERROR = 0xC0000387,
1909 /// The system detected a possible attempt to compromise security.
1910 /// Ensure that you can contact the server that authenticated you.
1911 DOWNGRADE_DETECTED = 0xC0000388,
1912 /// The smart card certificate used for authentication has been revoked. Contact your system administrator.
1913 /// There might be additional information in the event log.
1914 SMARTCARD_CERT_REVOKED = 0xC0000389,
1915 /// An untrusted certificate authority was detected while processing the smart card certificate that is used for authentication. Contact your system administrator.
1916 ISSUING_CA_UNTRUSTED = 0xC000038A,
1917 /// The revocation status of the smart card certificate that is used for authentication could not be determined. Contact your system administrator.
1918 REVOCATION_OFFLINE_C = 0xC000038B,
1919 /// The smart card certificate used for authentication was not trusted. Contact your system administrator.
1920 PKINIT_CLIENT_FAILURE = 0xC000038C,
1921 /// The smart card certificate used for authentication has expired. Contact your system administrator.
1922 SMARTCARD_CERT_EXPIRED = 0xC000038D,
1923 /// The driver could not be loaded because a previous version of the driver is still in memory.
1924 DRIVER_FAILED_PRIOR_UNLOAD = 0xC000038E,
1925 /// The smart card provider could not perform the action because the context was acquired as silent.
1926 SMARTCARD_SILENT_CONTEXT = 0xC000038F,
1927 /// The delegated trust creation quota of the current user has been exceeded.
1928 PER_USER_TRUST_QUOTA_EXCEEDED = 0xC0000401,
1929 /// The total delegated trust creation quota has been exceeded.
1930 ALL_USER_TRUST_QUOTA_EXCEEDED = 0xC0000402,
1931 /// The delegated trust deletion quota of the current user has been exceeded.
1932 USER_DELETE_TRUST_QUOTA_EXCEEDED = 0xC0000403,
1933 /// The requested name already exists as a unique identifier.
1934 DS_NAME_NOT_UNIQUE = 0xC0000404,
1935 /// The requested object has a non-unique identifier and cannot be retrieved.
1936 DS_DUPLICATE_ID_FOUND = 0xC0000405,
1937 /// The group cannot be converted due to attribute restrictions on the requested group type.
1938 DS_GROUP_CONVERSION_ERROR = 0xC0000406,
1939 /// {Volume Shadow Copy Service} Wait while the Volume Shadow Copy Service prepares volume %hs for hibernation.
1940 VOLSNAP_PREPARE_HIBERNATE = 0xC0000407,
1941 /// Kerberos sub-protocol User2User is required.
1942 USER2USER_REQUIRED = 0xC0000408,
1943 /// The system detected an overrun of a stack-based buffer in this application.
1944 /// This overrun could potentially allow a malicious user to gain control of this application.
1945 STACK_BUFFER_OVERRUN = 0xC0000409,
1946 /// The Kerberos subsystem encountered an error.
1947 /// A service for user protocol request was made against a domain controller which does not support service for user.
1948 NO_S4U_PROT_SUPPORT = 0xC000040A,
1949 /// An attempt was made by this server to make a Kerberos constrained delegation request for a target that is outside the server realm.
1950 /// 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.
1951 CROSSREALM_DELEGATION_FAILURE = 0xC000040B,
1952 /// The revocation status of the domain controller certificate used for smart card authentication could not be determined.
1953 /// There is additional information in the system event log. Contact your system administrator.
1954 REVOCATION_OFFLINE_KDC = 0xC000040C,
1955 /// An untrusted certificate authority was detected while processing the domain controller certificate used for authentication.
1956 /// There is additional information in the system event log. Contact your system administrator.
1957 ISSUING_CA_UNTRUSTED_KDC = 0xC000040D,
1958 /// The domain controller certificate used for smart card logon has expired.
1959 /// Contact your system administrator with the contents of your system event log.
1960 KDC_CERT_EXPIRED = 0xC000040E,
1961 /// The domain controller certificate used for smart card logon has been revoked.
1962 /// Contact your system administrator with the contents of your system event log.
1963 KDC_CERT_REVOKED = 0xC000040F,
1964 /// Data present in one of the parameters is more than the function can operate on.
1965 PARAMETER_QUOTA_EXCEEDED = 0xC0000410,
1966 /// The system has failed to hibernate (The error code is %hs).
1967 /// Hibernation will be disabled until the system is restarted.
1968 HIBERNATION_FAILURE = 0xC0000411,
1969 /// An attempt to delay-load a .dll or get a function address in a delay-loaded .dll failed.
1970 DELAY_LOAD_FAILED = 0xC0000412,
1971 /// Logon Failure: The machine you are logging onto is protected by an authentication firewall.
1972 /// The specified account is not allowed to authenticate to the machine.
1973 AUTHENTICATION_FIREWALL_FAILED = 0xC0000413,
1974 /// %hs is a 16-bit application. You do not have permissions to execute 16-bit applications.
1975 /// Check your permissions with your system administrator.
1976 VDM_DISALLOWED = 0xC0000414,
1977 /// {Display Driver Stopped Responding} The %hs display driver has stopped working normally.
1978 /// Save your work and reboot the system to restore full display functionality.
1979 /// The next time you reboot the machine a dialog will be displayed giving you a chance to report this failure to Microsoft.
1980 HUNG_DISPLAY_DRIVER_THREAD = 0xC0000415,
1981 /// The Desktop heap encountered an error while allocating session memory.
1982 /// There is more information in the system event log.
1983 INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE = 0xC0000416,
1984 /// An invalid parameter was passed to a C runtime function.
1985 INVALID_CRUNTIME_PARAMETER = 0xC0000417,
1986 /// The authentication failed because NTLM was blocked.
1987 NTLM_BLOCKED = 0xC0000418,
1988 /// The source object's SID already exists in destination forest.
1989 DS_SRC_SID_EXISTS_IN_FOREST = 0xC0000419,
1990 /// The domain name of the trusted domain already exists in the forest.
1991 DS_DOMAIN_NAME_EXISTS_IN_FOREST = 0xC000041A,
1992 /// The flat name of the trusted domain already exists in the forest.
1993 DS_FLAT_NAME_EXISTS_IN_FOREST = 0xC000041B,
1994 /// The User Principal Name (UPN) is invalid.
1995 INVALID_USER_PRINCIPAL_NAME = 0xC000041C,
1996 /// There has been an assertion failure.
1997 ASSERTION_FAILURE = 0xC0000420,
1998 /// Application verifier has found an error in the current process.
1999 VERIFIER_STOP = 0xC0000421,
2000 /// A user mode unwind is in progress.
2001 CALLBACK_POP_STACK = 0xC0000423,
2002 /// %2 has been blocked from loading due to incompatibility with this system.
2003 /// Contact your software vendor for a compatible version of the driver.
2004 INCOMPATIBLE_DRIVER_BLOCKED = 0xC0000424,
2005 /// Illegal operation attempted on a registry key which has already been unloaded.
2006 HIVE_UNLOADED = 0xC0000425,
2007 /// Compression is disabled for this volume.
2008 COMPRESSION_DISABLED = 0xC0000426,
2009 /// The requested operation could not be completed due to a file system limitation.
2010 FILE_SYSTEM_LIMITATION = 0xC0000427,
2011 /// The hash for image %hs cannot be found in the system catalogs.
2012 /// The image is likely corrupt or the victim of tampering.
2013 INVALID_IMAGE_HASH = 0xC0000428,
2014 /// The implementation is not capable of performing the request.
2015 NOT_CAPABLE = 0xC0000429,
2016 /// The requested operation is out of order with respect to other operations.
2017 REQUEST_OUT_OF_SEQUENCE = 0xC000042A,
2018 /// An operation attempted to exceed an implementation-defined limit.
2019 IMPLEMENTATION_LIMIT = 0xC000042B,
2020 /// The requested operation requires elevation.
2021 ELEVATION_REQUIRED = 0xC000042C,
2022 /// The required security context does not exist.
2023 NO_SECURITY_CONTEXT = 0xC000042D,
2024 /// The PKU2U protocol encountered an error while attempting to utilize the associated certificates.
2025 PKU2U_CERT_FAILURE = 0xC000042E,
2026 /// The operation was attempted beyond the valid data length of the file.
2027 BEYOND_VDL = 0xC0000432,
2028 /// The attempted write operation encountered a write already in progress for some portion of the range.
2029 ENCOUNTERED_WRITE_IN_PROGRESS = 0xC0000433,
2030 /// The page fault mappings changed in the middle of processing a fault so the operation must be retried.
2031 PTE_CHANGED = 0xC0000434,
2032 /// The attempt to purge this file from memory failed to purge some or all the data from memory.
2033 PURGE_FAILED = 0xC0000435,
2034 /// The requested credential requires confirmation.
2035 CRED_REQUIRES_CONFIRMATION = 0xC0000440,
2036 /// The remote server sent an invalid response for a file being opened with Client Side Encryption.
2037 CS_ENCRYPTION_INVALID_SERVER_RESPONSE = 0xC0000441,
2038 /// Client Side Encryption is not supported by the remote server even though it claims to support it.
2039 CS_ENCRYPTION_UNSUPPORTED_SERVER = 0xC0000442,
2040 /// File is encrypted and should be opened in Client Side Encryption mode.
2041 CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE = 0xC0000443,
2042 /// A new encrypted file is being created and a $EFS needs to be provided.
2043 CS_ENCRYPTION_NEW_ENCRYPTED_FILE = 0xC0000444,
2044 /// The SMB client requested a CSE FSCTL on a non-CSE file.
2045 CS_ENCRYPTION_FILE_NOT_CSE = 0xC0000445,
2046 /// Indicates a particular Security ID cannot be assigned as the label of an object.
2047 INVALID_LABEL = 0xC0000446,
2048 /// The process hosting the driver for this device has terminated.
2049 DRIVER_PROCESS_TERMINATED = 0xC0000450,
2050 /// The requested system device cannot be identified due to multiple indistinguishable devices potentially matching the identification criteria.
2051 AMBIGUOUS_SYSTEM_DEVICE = 0xC0000451,
2052 /// The requested system device cannot be found.
2053 SYSTEM_DEVICE_NOT_FOUND = 0xC0000452,
2054 /// This boot application must be restarted.
2055 RESTART_BOOT_APPLICATION = 0xC0000453,
2056 /// Insufficient NVRAM resources exist to complete the API. A reboot might be required.
2057 INSUFFICIENT_NVRAM_RESOURCES = 0xC0000454,
2058 /// No ranges for the specified operation were able to be processed.
2059 NO_RANGES_PROCESSED = 0xC0000460,
2060 /// The storage device does not support Offload Write.
2061 DEVICE_FEATURE_NOT_SUPPORTED = 0xC0000463,
2062 /// Data cannot be moved because the source device cannot communicate with the destination device.
2063 DEVICE_UNREACHABLE = 0xC0000464,
2064 /// The token representing the data is invalid or expired.
2065 INVALID_TOKEN = 0xC0000465,
2066 /// The file server is temporarily unavailable.
2067 SERVER_UNAVAILABLE = 0xC0000466,
2068 /// The specified task name is invalid.
2069 INVALID_TASK_NAME = 0xC0000500,
2070 /// The specified task index is invalid.
2071 INVALID_TASK_INDEX = 0xC0000501,
2072 /// The specified thread is already joining a task.
2073 THREAD_ALREADY_IN_TASK = 0xC0000502,
2074 /// A callback has requested to bypass native code.
2075 CALLBACK_BYPASS = 0xC0000503,
2076 /// A fail fast exception occurred.
2077 /// Exception handlers will not be invoked and the process will be terminated immediately.
2078 FAIL_FAST_EXCEPTION = 0xC0000602,
2079 /// Windows cannot verify the digital signature for this file.
2080 /// The signing certificate for this file has been revoked.
2081 IMAGE_CERT_REVOKED = 0xC0000603,
2082 /// The ALPC port is closed.
2083 PORT_CLOSED = 0xC0000700,
2084 /// The ALPC message requested is no longer available.
2085 MESSAGE_LOST = 0xC0000701,
2086 /// The ALPC message supplied is invalid.
2087 INVALID_MESSAGE = 0xC0000702,
2088 /// The ALPC message has been canceled.
2089 REQUEST_CANCELED = 0xC0000703,
2090 /// Invalid recursive dispatch attempt.
2091 RECURSIVE_DISPATCH = 0xC0000704,
2092 /// No receive buffer has been supplied in a synchronous request.
2093 LPC_RECEIVE_BUFFER_EXPECTED = 0xC0000705,
2094 /// The connection port is used in an invalid context.
2095 LPC_INVALID_CONNECTION_USAGE = 0xC0000706,
2096 /// The ALPC port does not accept new request messages.
2097 LPC_REQUESTS_NOT_ALLOWED = 0xC0000707,
2098 /// The resource requested is already in use.
2099 RESOURCE_IN_USE = 0xC0000708,
2100 /// The hardware has reported an uncorrectable memory error.
2101 HARDWARE_MEMORY_ERROR = 0xC0000709,
2102 /// Status 0x%08x was returned, waiting on handle 0x%x for wait 0x%p, in waiter 0x%p.
2103 THREADPOOL_HANDLE_EXCEPTION = 0xC000070A,
2104 /// After a callback to 0x%p(0x%p), a completion call to Set event(0x%p) failed with status 0x%08x.
2105 THREADPOOL_SET_EVENT_ON_COMPLETION_FAILED = 0xC000070B,
2106 /// After a callback to 0x%p(0x%p), a completion call to ReleaseSemaphore(0x%p, %d) failed with status 0x%08x.
2107 THREADPOOL_RELEASE_SEMAPHORE_ON_COMPLETION_FAILED = 0xC000070C,
2108 /// After a callback to 0x%p(0x%p), a completion call to ReleaseMutex(%p) failed with status 0x%08x.
2109 THREADPOOL_RELEASE_MUTEX_ON_COMPLETION_FAILED = 0xC000070D,
2110 /// After a callback to 0x%p(0x%p), a completion call to FreeLibrary(%p) failed with status 0x%08x.
2111 THREADPOOL_FREE_LIBRARY_ON_COMPLETION_FAILED = 0xC000070E,
2112 /// The thread pool 0x%p was released while a thread was posting a callback to 0x%p(0x%p) to it.
2113 THREADPOOL_RELEASED_DURING_OPERATION = 0xC000070F,
2114 /// A thread pool worker thread is impersonating a client, after a callback to 0x%p(0x%p).
2115 /// This is unexpected, indicating that the callback is missing a call to revert the impersonation.
2116 CALLBACK_RETURNED_WHILE_IMPERSONATING = 0xC0000710,
2117 /// A thread pool worker thread is impersonating a client, after executing an APC.
2118 /// This is unexpected, indicating that the APC is missing a call to revert the impersonation.
2119 APC_RETURNED_WHILE_IMPERSONATING = 0xC0000711,
2120 /// Either the target process, or the target thread's containing process, is a protected process.
2121 PROCESS_IS_PROTECTED = 0xC0000712,
2122 /// A thread is getting dispatched with MCA EXCEPTION because of MCA.
2123 MCA_EXCEPTION = 0xC0000713,
2124 /// The client certificate account mapping is not unique.
2125 CERTIFICATE_MAPPING_NOT_UNIQUE = 0xC0000714,
2126 /// The symbolic link cannot be followed because its type is disabled.
2127 SYMLINK_CLASS_DISABLED = 0xC0000715,
2128 /// Indicates that the specified string is not valid for IDN normalization.
2129 INVALID_IDN_NORMALIZATION = 0xC0000716,
2130 /// No mapping for the Unicode character exists in the target multi-byte code page.
2131 NO_UNICODE_TRANSLATION = 0xC0000717,
2132 /// The provided callback is already registered.
2133 ALREADY_REGISTERED = 0xC0000718,
2134 /// The provided context did not match the target.
2135 CONTEXT_MISMATCH = 0xC0000719,
2136 /// The specified port already has a completion list.
2137 PORT_ALREADY_HAS_COMPLETION_LIST = 0xC000071A,
2138 /// A threadpool worker thread entered a callback at thread base priority 0x%x and exited at priority 0x%x.
2139 /// This is unexpected, indicating that the callback missed restoring the priority.
2140 CALLBACK_RETURNED_THREAD_PRIORITY = 0xC000071B,
2141 /// An invalid thread, handle %p, is specified for this operation.
2142 /// Possibly, a threadpool worker thread was specified.
2143 INVALID_THREAD = 0xC000071C,
2144 /// A threadpool worker thread entered a callback, which left transaction state.
2145 /// This is unexpected, indicating that the callback missed clearing the transaction.
2146 CALLBACK_RETURNED_TRANSACTION = 0xC000071D,
2147 /// A threadpool worker thread entered a callback, which left the loader lock held.
2148 /// This is unexpected, indicating that the callback missed releasing the lock.
2149 CALLBACK_RETURNED_LDR_LOCK = 0xC000071E,
2150 /// A threadpool worker thread entered a callback, which left with preferred languages set.
2151 /// This is unexpected, indicating that the callback missed clearing them.
2152 CALLBACK_RETURNED_LANG = 0xC000071F,
2153 /// A threadpool worker thread entered a callback, which left with background priorities set.
2154 /// This is unexpected, indicating that the callback missed restoring the original priorities.
2155 CALLBACK_RETURNED_PRI_BACK = 0xC0000720,
2156 /// The attempted operation required self healing to be enabled.
2157 DISK_REPAIR_DISABLED = 0xC0000800,
2158 /// The directory service cannot perform the requested operation because a domain rename operation is in progress.
2159 DS_DOMAIN_RENAME_IN_PROGRESS = 0xC0000801,
2160 /// An operation failed because the storage quota was exceeded.
2161 DISK_QUOTA_EXCEEDED = 0xC0000802,
2162 /// An operation failed because the content was blocked.
2163 CONTENT_BLOCKED = 0xC0000804,
2164 /// The operation could not be completed due to bad clusters on disk.
2165 BAD_CLUSTERS = 0xC0000805,
2166 /// The operation could not be completed because the volume is dirty. Please run the Chkdsk utility and try again.
2167 VOLUME_DIRTY = 0xC0000806,
2168 /// This file is checked out or locked for editing by another user.
2169 FILE_CHECKED_OUT = 0xC0000901,
2170 /// The file must be checked out before saving changes.
2171 CHECKOUT_REQUIRED = 0xC0000902,
2172 /// The file type being saved or retrieved has been blocked.
2173 BAD_FILE_TYPE = 0xC0000903,
2174 /// The file size exceeds the limit allowed and cannot be saved.
2175 FILE_TOO_LARGE = 0xC0000904,
2176 /// Access Denied. Before opening files in this location, you must first browse to the e.g.
2177 /// site and select the option to log on automatically.
2178 FORMS_AUTH_REQUIRED = 0xC0000905,
2179 /// The operation did not complete successfully because the file contains a virus.
2180 VIRUS_INFECTED = 0xC0000906,
2181 /// This file contains a virus and cannot be opened.
2182 /// Due to the nature of this virus, the file has been removed from this location.
2183 VIRUS_DELETED = 0xC0000907,
2184 /// The resources required for this device conflict with the MCFG table.
2185 BAD_MCFG_TABLE = 0xC0000908,
2186 /// The operation did not complete successfully because it would cause an oplock to be broken.
2187 /// The caller has requested that existing oplocks not be broken.
2188 CANNOT_BREAK_OPLOCK = 0xC0000909,
2189 /// WOW Assertion Error.
2190 WOW_ASSERTION = 0xC0009898,
2191 /// The cryptographic signature is invalid.
2192 INVALID_SIGNATURE = 0xC000A000,
2193 /// The cryptographic provider does not support HMAC.
2194 HMAC_NOT_SUPPORTED = 0xC000A001,
2195 /// The IPsec queue overflowed.
2196 IPSEC_QUEUE_OVERFLOW = 0xC000A010,
2197 /// The neighbor discovery queue overflowed.
2198 ND_QUEUE_OVERFLOW = 0xC000A011,
2199 /// An Internet Control Message Protocol (ICMP) hop limit exceeded error was received.
2200 HOPLIMIT_EXCEEDED = 0xC000A012,
2201 /// The protocol is not installed on the local machine.
2202 PROTOCOL_NOT_SUPPORTED = 0xC000A013,
2203 /// {Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost.
2204 /// This error might be caused by network connectivity issues. Try to save this file elsewhere.
2205 LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED = 0xC000A080,
2206 /// {Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost.
2207 /// This error was returned by the server on which the file exists. Try to save this file elsewhere.
2208 LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR = 0xC000A081,
2209 /// {Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost.
2210 /// This error might be caused if the device has been removed or the media is write-protected.
2211 LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR = 0xC000A082,
2212 /// Windows was unable to parse the requested XML data.
2213 XML_PARSE_ERROR = 0xC000A083,
2214 /// An error was encountered while processing an XML digital signature.
2215 XMLDSIG_ERROR = 0xC000A084,
2216 /// This indicates that the caller made the connection request in the wrong routing compartment.
2217 WRONG_COMPARTMENT = 0xC000A085,
2218 /// This indicates that there was an AuthIP failure when attempting to connect to the remote host.
2219 AUTHIP_FAILURE = 0xC000A086,
2220 /// OID mapped groups cannot have members.
2221 DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS = 0xC000A087,
2222 /// The specified OID cannot be found.
2223 DS_OID_NOT_FOUND = 0xC000A088,
2224 /// Hash generation for the specified version and hash type is not enabled on server.
2225 HASH_NOT_SUPPORTED = 0xC000A100,
2226 /// The hash requests is not present or not up to date with the current file contents.
2227 HASH_NOT_PRESENT = 0xC000A101,
2228 /// A file system filter on the server has not opted in for Offload Read support.
2229 OFFLOAD_READ_FLT_NOT_SUPPORTED = 0xC000A2A1,
2230 /// A file system filter on the server has not opted in for Offload Write support.
2231 OFFLOAD_WRITE_FLT_NOT_SUPPORTED = 0xC000A2A2,
2232 /// Offload read operations cannot be performed on:
2233 /// - Compressed files
2234 /// - Sparse files
2235 /// - Encrypted files
2236 /// - File system metadata files
2237 OFFLOAD_READ_FILE_NOT_SUPPORTED = 0xC000A2A3,
2238 /// Offload write operations cannot be performed on:
2239 /// - Compressed files
2240 /// - Sparse files
2241 /// - Encrypted files
2242 /// - File system metadata files
2243 OFFLOAD_WRITE_FILE_NOT_SUPPORTED = 0xC000A2A4,
2244 /// The debugger did not perform a state change.
2245 DBG_NO_STATE_CHANGE = 0xC0010001,
2246 /// The debugger found that the application is not idle.
2247 DBG_APP_NOT_IDLE = 0xC0010002,
2248 /// The string binding is invalid.
2249 RPC_NT_INVALID_STRING_BINDING = 0xC0020001,
2250 /// The binding handle is not the correct type.
2251 RPC_NT_WRONG_KIND_OF_BINDING = 0xC0020002,
2252 /// The binding handle is invalid.
2253 RPC_NT_INVALID_BINDING = 0xC0020003,
2254 /// The RPC protocol sequence is not supported.
2255 RPC_NT_PROTSEQ_NOT_SUPPORTED = 0xC0020004,
2256 /// The RPC protocol sequence is invalid.
2257 RPC_NT_INVALID_RPC_PROTSEQ = 0xC0020005,
2258 /// The string UUID is invalid.
2259 RPC_NT_INVALID_STRING_UUID = 0xC0020006,
2260 /// The endpoint format is invalid.
2261 RPC_NT_INVALID_ENDPOINT_FORMAT = 0xC0020007,
2262 /// The network address is invalid.
2263 RPC_NT_INVALID_NET_ADDR = 0xC0020008,
2264 /// No endpoint was found.
2265 RPC_NT_NO_ENDPOINT_FOUND = 0xC0020009,
2266 /// The time-out value is invalid.
2267 RPC_NT_INVALID_TIMEOUT = 0xC002000A,
2268 /// The object UUID was not found.
2269 RPC_NT_OBJECT_NOT_FOUND = 0xC002000B,
2270 /// The object UUID has already been registered.
2271 RPC_NT_ALREADY_REGISTERED = 0xC002000C,
2272 /// The type UUID has already been registered.
2273 RPC_NT_TYPE_ALREADY_REGISTERED = 0xC002000D,
2274 /// The RPC server is already listening.
2275 RPC_NT_ALREADY_LISTENING = 0xC002000E,
2276 /// No protocol sequences have been registered.
2277 RPC_NT_NO_PROTSEQS_REGISTERED = 0xC002000F,
2278 /// The RPC server is not listening.
2279 RPC_NT_NOT_LISTENING = 0xC0020010,
2280 /// The manager type is unknown.
2281 RPC_NT_UNKNOWN_MGR_TYPE = 0xC0020011,
2282 /// The interface is unknown.
2283 RPC_NT_UNKNOWN_IF = 0xC0020012,
2284 /// There are no bindings.
2285 RPC_NT_NO_BINDINGS = 0xC0020013,
2286 /// There are no protocol sequences.
2287 RPC_NT_NO_PROTSEQS = 0xC0020014,
2288 /// The endpoint cannot be created.
2289 RPC_NT_CANT_CREATE_ENDPOINT = 0xC0020015,
2290 /// Insufficient resources are available to complete this operation.
2291 RPC_NT_OUT_OF_RESOURCES = 0xC0020016,
2292 /// The RPC server is unavailable.
2293 RPC_NT_SERVER_UNAVAILABLE = 0xC0020017,
2294 /// The RPC server is too busy to complete this operation.
2295 RPC_NT_SERVER_TOO_BUSY = 0xC0020018,
2296 /// The network options are invalid.
2297 RPC_NT_INVALID_NETWORK_OPTIONS = 0xC0020019,
2298 /// No RPCs are active on this thread.
2299 RPC_NT_NO_CALL_ACTIVE = 0xC002001A,
2300 /// The RPC failed.
2301 RPC_NT_CALL_FAILED = 0xC002001B,
2302 /// The RPC failed and did not execute.
2303 RPC_NT_CALL_FAILED_DNE = 0xC002001C,
2304 /// An RPC protocol error occurred.
2305 RPC_NT_PROTOCOL_ERROR = 0xC002001D,
2306 /// The RPC server does not support the transfer syntax.
2307 RPC_NT_UNSUPPORTED_TRANS_SYN = 0xC002001F,
2308 /// The type UUID is not supported.
2309 RPC_NT_UNSUPPORTED_TYPE = 0xC0020021,
2310 /// The tag is invalid.
2311 RPC_NT_INVALID_TAG = 0xC0020022,
2312 /// The array bounds are invalid.
2313 RPC_NT_INVALID_BOUND = 0xC0020023,
2314 /// The binding does not contain an entry name.
2315 RPC_NT_NO_ENTRY_NAME = 0xC0020024,
2316 /// The name syntax is invalid.
2317 RPC_NT_INVALID_NAME_SYNTAX = 0xC0020025,
2318 /// The name syntax is not supported.
2319 RPC_NT_UNSUPPORTED_NAME_SYNTAX = 0xC0020026,
2320 /// No network address is available to construct a UUID.
2321 RPC_NT_UUID_NO_ADDRESS = 0xC0020028,
2322 /// The endpoint is a duplicate.
2323 RPC_NT_DUPLICATE_ENDPOINT = 0xC0020029,
2324 /// The authentication type is unknown.
2325 RPC_NT_UNKNOWN_AUTHN_TYPE = 0xC002002A,
2326 /// The maximum number of calls is too small.
2327 RPC_NT_MAX_CALLS_TOO_SMALL = 0xC002002B,
2328 /// The string is too long.
2329 RPC_NT_STRING_TOO_LONG = 0xC002002C,
2330 /// The RPC protocol sequence was not found.
2331 RPC_NT_PROTSEQ_NOT_FOUND = 0xC002002D,
2332 /// The procedure number is out of range.
2333 RPC_NT_PROCNUM_OUT_OF_RANGE = 0xC002002E,
2334 /// The binding does not contain any authentication information.
2335 RPC_NT_BINDING_HAS_NO_AUTH = 0xC002002F,
2336 /// The authentication service is unknown.
2337 RPC_NT_UNKNOWN_AUTHN_SERVICE = 0xC0020030,
2338 /// The authentication level is unknown.
2339 RPC_NT_UNKNOWN_AUTHN_LEVEL = 0xC0020031,
2340 /// The security context is invalid.
2341 RPC_NT_INVALID_AUTH_IDENTITY = 0xC0020032,
2342 /// The authorization service is unknown.
2343 RPC_NT_UNKNOWN_AUTHZ_SERVICE = 0xC0020033,
2344 /// The entry is invalid.
2345 EPT_NT_INVALID_ENTRY = 0xC0020034,
2346 /// The operation cannot be performed.
2347 EPT_NT_CANT_PERFORM_OP = 0xC0020035,
2348 /// No more endpoints are available from the endpoint mapper.
2349 EPT_NT_NOT_REGISTERED = 0xC0020036,
2350 /// No interfaces have been exported.
2351 RPC_NT_NOTHING_TO_EXPORT = 0xC0020037,
2352 /// The entry name is incomplete.
2353 RPC_NT_INCOMPLETE_NAME = 0xC0020038,
2354 /// The version option is invalid.
2355 RPC_NT_INVALID_VERS_OPTION = 0xC0020039,
2356 /// There are no more members.
2357 RPC_NT_NO_MORE_MEMBERS = 0xC002003A,
2358 /// There is nothing to unexport.
2359 RPC_NT_NOT_ALL_OBJS_UNEXPORTED = 0xC002003B,
2360 /// The interface was not found.
2361 RPC_NT_INTERFACE_NOT_FOUND = 0xC002003C,
2362 /// The entry already exists.
2363 RPC_NT_ENTRY_ALREADY_EXISTS = 0xC002003D,
2364 /// The entry was not found.
2365 RPC_NT_ENTRY_NOT_FOUND = 0xC002003E,
2366 /// The name service is unavailable.
2367 RPC_NT_NAME_SERVICE_UNAVAILABLE = 0xC002003F,
2368 /// The network address family is invalid.
2369 RPC_NT_INVALID_NAF_ID = 0xC0020040,
2370 /// The requested operation is not supported.
2371 RPC_NT_CANNOT_SUPPORT = 0xC0020041,
2372 /// No security context is available to allow impersonation.
2373 RPC_NT_NO_CONTEXT_AVAILABLE = 0xC0020042,
2374 /// An internal error occurred in the RPC.
2375 RPC_NT_INTERNAL_ERROR = 0xC0020043,
2376 /// The RPC server attempted to divide an integer by zero.
2377 RPC_NT_ZERO_DIVIDE = 0xC0020044,
2378 /// An addressing error occurred in the RPC server.
2379 RPC_NT_ADDRESS_ERROR = 0xC0020045,
2380 /// A floating point operation at the RPC server caused a divide by zero.
2381 RPC_NT_FP_DIV_ZERO = 0xC0020046,
2382 /// A floating point underflow occurred at the RPC server.
2383 RPC_NT_FP_UNDERFLOW = 0xC0020047,
2384 /// A floating point overflow occurred at the RPC server.
2385 RPC_NT_FP_OVERFLOW = 0xC0020048,
2386 /// An RPC is already in progress for this thread.
2387 RPC_NT_CALL_IN_PROGRESS = 0xC0020049,
2388 /// There are no more bindings.
2389 RPC_NT_NO_MORE_BINDINGS = 0xC002004A,
2390 /// The group member was not found.
2391 RPC_NT_GROUP_MEMBER_NOT_FOUND = 0xC002004B,
2392 /// The endpoint mapper database entry could not be created.
2393 EPT_NT_CANT_CREATE = 0xC002004C,
2394 /// The object UUID is the nil UUID.
2395 RPC_NT_INVALID_OBJECT = 0xC002004D,
2396 /// No interfaces have been registered.
2397 RPC_NT_NO_INTERFACES = 0xC002004F,
2398 /// The RPC was canceled.
2399 RPC_NT_CALL_CANCELLED = 0xC0020050,
2400 /// The binding handle does not contain all the required information.
2401 RPC_NT_BINDING_INCOMPLETE = 0xC0020051,
2402 /// A communications failure occurred during an RPC.
2403 RPC_NT_COMM_FAILURE = 0xC0020052,
2404 /// The requested authentication level is not supported.
2405 RPC_NT_UNSUPPORTED_AUTHN_LEVEL = 0xC0020053,
2406 /// No principal name was registered.
2407 RPC_NT_NO_PRINC_NAME = 0xC0020054,
2408 /// The error specified is not a valid Windows RPC error code.
2409 RPC_NT_NOT_RPC_ERROR = 0xC0020055,
2410 /// A security package-specific error occurred.
2411 RPC_NT_SEC_PKG_ERROR = 0xC0020057,
2412 /// The thread was not canceled.
2413 RPC_NT_NOT_CANCELLED = 0xC0020058,
2414 /// Invalid asynchronous RPC handle.
2415 RPC_NT_INVALID_ASYNC_HANDLE = 0xC0020062,
2416 /// Invalid asynchronous RPC call handle for this operation.
2417 RPC_NT_INVALID_ASYNC_CALL = 0xC0020063,
2418 /// Access to the HTTP proxy is denied.
2419 RPC_NT_PROXY_ACCESS_DENIED = 0xC0020064,
2420 /// The list of RPC servers available for auto-handle binding has been exhausted.
2421 RPC_NT_NO_MORE_ENTRIES = 0xC0030001,
2422 /// The file designated by DCERPCCHARTRANS cannot be opened.
2423 RPC_NT_SS_CHAR_TRANS_OPEN_FAIL = 0xC0030002,
2424 /// The file containing the character translation table has fewer than 512 bytes.
2425 RPC_NT_SS_CHAR_TRANS_SHORT_FILE = 0xC0030003,
2426 /// A null context handle is passed as an [in] parameter.
2427 RPC_NT_SS_IN_NULL_CONTEXT = 0xC0030004,
2428 /// The context handle does not match any known context handles.
2429 RPC_NT_SS_CONTEXT_MISMATCH = 0xC0030005,
2430 /// The context handle changed during a call.
2431 RPC_NT_SS_CONTEXT_DAMAGED = 0xC0030006,
2432 /// The binding handles passed to an RPC do not match.
2433 RPC_NT_SS_HANDLES_MISMATCH = 0xC0030007,
2434 /// The stub is unable to get the call handle.
2435 RPC_NT_SS_CANNOT_GET_CALL_HANDLE = 0xC0030008,
2436 /// A null reference pointer was passed to the stub.
2437 RPC_NT_NULL_REF_POINTER = 0xC0030009,
2438 /// The enumeration value is out of range.
2439 RPC_NT_ENUM_VALUE_OUT_OF_RANGE = 0xC003000A,
2440 /// The byte count is too small.
2441 RPC_NT_BYTE_COUNT_TOO_SMALL = 0xC003000B,
2442 /// The stub received bad data.
2443 RPC_NT_BAD_STUB_DATA = 0xC003000C,
2444 /// Invalid operation on the encoding/decoding handle.
2445 RPC_NT_INVALID_ES_ACTION = 0xC0030059,
2446 /// Incompatible version of the serializing package.
2447 RPC_NT_WRONG_ES_VERSION = 0xC003005A,
2448 /// Incompatible version of the RPC stub.
2449 RPC_NT_WRONG_STUB_VERSION = 0xC003005B,
2450 /// The RPC pipe object is invalid or corrupt.
2451 RPC_NT_INVALID_PIPE_OBJECT = 0xC003005C,
2452 /// An invalid operation was attempted on an RPC pipe object.
2453 RPC_NT_INVALID_PIPE_OPERATION = 0xC003005D,
2454 /// Unsupported RPC pipe version.
2455 RPC_NT_WRONG_PIPE_VERSION = 0xC003005E,
2456 /// The RPC pipe object has already been closed.
2457 RPC_NT_PIPE_CLOSED = 0xC003005F,
2458 /// The RPC call completed before all pipes were processed.
2459 RPC_NT_PIPE_DISCIPLINE_ERROR = 0xC0030060,
2460 /// No more data is available from the RPC pipe.
2461 RPC_NT_PIPE_EMPTY = 0xC0030061,
2462 /// A device is missing in the system BIOS MPS table. This device will not be used.
2463 /// Contact your system vendor for a system BIOS update.
2464 PNP_BAD_MPS_TABLE = 0xC0040035,
2465 /// A translator failed to translate resources.
2466 PNP_TRANSLATION_FAILED = 0xC0040036,
2467 /// An IRQ translator failed to translate resources.
2468 PNP_IRQ_TRANSLATION_FAILED = 0xC0040037,
2469 /// Driver %2 returned an invalid ID for a child device (%3).
2470 PNP_INVALID_ID = 0xC0040038,
2471 /// Reissue the given operation as a cached I/O operation
2472 IO_REISSUE_AS_CACHED = 0xC0040039,
2473 /// Session name %1 is invalid.
2474 CTX_WINSTATION_NAME_INVALID = 0xC00A0001,
2475 /// The protocol driver %1 is invalid.
2476 CTX_INVALID_PD = 0xC00A0002,
2477 /// The protocol driver %1 was not found in the system path.
2478 CTX_PD_NOT_FOUND = 0xC00A0003,
2479 /// A close operation is pending on the terminal connection.
2480 CTX_CLOSE_PENDING = 0xC00A0006,
2481 /// No free output buffers are available.
2482 CTX_NO_OUTBUF = 0xC00A0007,
2483 /// The MODEM.INF file was not found.
2484 CTX_MODEM_INF_NOT_FOUND = 0xC00A0008,
2485 /// The modem (%1) was not found in the MODEM.INF file.
2486 CTX_INVALID_MODEMNAME = 0xC00A0009,
2487 /// The modem did not accept the command sent to it.
2488 /// Verify that the configured modem name matches the attached modem.
2489 CTX_RESPONSE_ERROR = 0xC00A000A,
2490 /// The modem did not respond to the command sent to it.
2491 /// Verify that the modem cable is properly attached and the modem is turned on.
2492 CTX_MODEM_RESPONSE_TIMEOUT = 0xC00A000B,
2493 /// Carrier detection has failed or the carrier has been dropped due to disconnection.
2494 CTX_MODEM_RESPONSE_NO_CARRIER = 0xC00A000C,
2495 /// A dial tone was not detected within the required time.
2496 /// Verify that the phone cable is properly attached and functional.
2497 CTX_MODEM_RESPONSE_NO_DIALTONE = 0xC00A000D,
2498 /// A busy signal was detected at a remote site on callback.
2499 CTX_MODEM_RESPONSE_BUSY = 0xC00A000E,
2500 /// A voice was detected at a remote site on callback.
2501 CTX_MODEM_RESPONSE_VOICE = 0xC00A000F,
2502 /// Transport driver error.
2503 CTX_TD_ERROR = 0xC00A0010,
2504 /// The client you are using is not licensed to use this system. Your logon request is denied.
2505 CTX_LICENSE_CLIENT_INVALID = 0xC00A0012,
2506 /// The system has reached its licensed logon limit. Try again later.
2507 CTX_LICENSE_NOT_AVAILABLE = 0xC00A0013,
2508 /// The system license has expired. Your logon request is denied.
2509 CTX_LICENSE_EXPIRED = 0xC00A0014,
2510 /// The specified session cannot be found.
2511 CTX_WINSTATION_NOT_FOUND = 0xC00A0015,
2512 /// The specified session name is already in use.
2513 CTX_WINSTATION_NAME_COLLISION = 0xC00A0016,
2514 /// The requested operation cannot be completed because the terminal connection is currently processing a connect, disconnect, reset, or delete operation.
2515 CTX_WINSTATION_BUSY = 0xC00A0017,
2516 /// An attempt has been made to connect to a session whose video mode is not supported by the current client.
2517 CTX_BAD_VIDEO_MODE = 0xC00A0018,
2518 /// The application attempted to enable DOS graphics mode. DOS graphics mode is not supported.
2519 CTX_GRAPHICS_INVALID = 0xC00A0022,
2520 /// The requested operation can be performed only on the system console.
2521 /// This is most often the result of a driver or system DLL requiring direct console access.
2522 CTX_NOT_CONSOLE = 0xC00A0024,
2523 /// The client failed to respond to the server connect message.
2524 CTX_CLIENT_QUERY_TIMEOUT = 0xC00A0026,
2525 /// Disconnecting the console session is not supported.
2526 CTX_CONSOLE_DISCONNECT = 0xC00A0027,
2527 /// Reconnecting a disconnected session to the console is not supported.
2528 CTX_CONSOLE_CONNECT = 0xC00A0028,
2529 /// The request to control another session remotely was denied.
2530 CTX_SHADOW_DENIED = 0xC00A002A,
2531 /// A process has requested access to a session, but has not been granted those access rights.
2532 CTX_WINSTATION_ACCESS_DENIED = 0xC00A002B,
2533 /// The terminal connection driver %1 is invalid.
2534 CTX_INVALID_WD = 0xC00A002E,
2535 /// The terminal connection driver %1 was not found in the system path.
2536 CTX_WD_NOT_FOUND = 0xC00A002F,
2537 /// The requested session cannot be controlled remotely.
2538 /// 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.
2539 CTX_SHADOW_INVALID = 0xC00A0030,
2540 /// The requested session is not configured to allow remote control.
2541 CTX_SHADOW_DISABLED = 0xC00A0031,
2542 /// The RDP protocol component %2 detected an error in the protocol stream and has disconnected the client.
2543 RDP_PROTOCOL_ERROR = 0xC00A0032,
2544 /// Your request to connect to this terminal server has been rejected.
2545 /// Your terminal server client license number has not been entered for this copy of the terminal client.
2546 /// Contact your system administrator for help in entering a valid, unique license number for this terminal server client. Click OK to continue.
2547 CTX_CLIENT_LICENSE_NOT_SET = 0xC00A0033,
2548 /// Your request to connect to this terminal server has been rejected.
2549 /// Your terminal server client license number is currently being used by another user.
2550 /// Contact your system administrator to obtain a new copy of the terminal server client with a valid, unique license number. Click OK to continue.
2551 CTX_CLIENT_LICENSE_IN_USE = 0xC00A0034,
2552 /// The remote control of the console was terminated because the display mode was changed.
2553 /// Changing the display mode in a remote control session is not supported.
2554 CTX_SHADOW_ENDED_BY_MODE_CHANGE = 0xC00A0035,
2555 /// Remote control could not be terminated because the specified session is not currently being remotely controlled.
2556 CTX_SHADOW_NOT_RUNNING = 0xC00A0036,
2557 /// Your interactive logon privilege has been disabled. Contact your system administrator.
2558 CTX_LOGON_DISABLED = 0xC00A0037,
2559 /// The terminal server security layer detected an error in the protocol stream and has disconnected the client.
2560 CTX_SECURITY_LAYER_ERROR = 0xC00A0038,
2561 /// The target session is incompatible with the current session.
2562 TS_INCOMPATIBLE_SESSIONS = 0xC00A0039,
2563 /// The resource loader failed to find an MUI file.
2564 MUI_FILE_NOT_FOUND = 0xC00B0001,
2565 /// The resource loader failed to load an MUI file because the file failed to pass validation.
2566 MUI_INVALID_FILE = 0xC00B0002,
2567 /// The RC manifest is corrupted with garbage data, is an unsupported version, or is missing a required item.
2568 MUI_INVALID_RC_CONFIG = 0xC00B0003,
2569 /// The RC manifest has an invalid culture name.
2570 MUI_INVALID_LOCALE_NAME = 0xC00B0004,
2571 /// The RC manifest has and invalid ultimate fallback name.
2572 MUI_INVALID_ULTIMATEFALLBACK_NAME = 0xC00B0005,
2573 /// The resource loader cache does not have a loaded MUI entry.
2574 MUI_FILE_NOT_LOADED = 0xC00B0006,
2575 /// The user stopped resource enumeration.
2576 RESOURCE_ENUM_USER_STOP = 0xC00B0007,
2577 /// The cluster node is not valid.
2578 CLUSTER_INVALID_NODE = 0xC0130001,
2579 /// The cluster node already exists.
2580 CLUSTER_NODE_EXISTS = 0xC0130002,
2581 /// A node is in the process of joining the cluster.
2582 CLUSTER_JOIN_IN_PROGRESS = 0xC0130003,
2583 /// The cluster node was not found.
2584 CLUSTER_NODE_NOT_FOUND = 0xC0130004,
2585 /// The cluster local node information was not found.
2586 CLUSTER_LOCAL_NODE_NOT_FOUND = 0xC0130005,
2587 /// The cluster network already exists.
2588 CLUSTER_NETWORK_EXISTS = 0xC0130006,
2589 /// The cluster network was not found.
2590 CLUSTER_NETWORK_NOT_FOUND = 0xC0130007,
2591 /// The cluster network interface already exists.
2592 CLUSTER_NETINTERFACE_EXISTS = 0xC0130008,
2593 /// The cluster network interface was not found.
2594 CLUSTER_NETINTERFACE_NOT_FOUND = 0xC0130009,
2595 /// The cluster request is not valid for this object.
2596 CLUSTER_INVALID_REQUEST = 0xC013000A,
2597 /// The cluster network provider is not valid.
2598 CLUSTER_INVALID_NETWORK_PROVIDER = 0xC013000B,
2599 /// The cluster node is down.
2600 CLUSTER_NODE_DOWN = 0xC013000C,
2601 /// The cluster node is not reachable.
2602 CLUSTER_NODE_UNREACHABLE = 0xC013000D,
2603 /// The cluster node is not a member of the cluster.
2604 CLUSTER_NODE_NOT_MEMBER = 0xC013000E,
2605 /// A cluster join operation is not in progress.
2606 CLUSTER_JOIN_NOT_IN_PROGRESS = 0xC013000F,
2607 /// The cluster network is not valid.
2608 CLUSTER_INVALID_NETWORK = 0xC0130010,
2609 /// No network adapters are available.
2610 CLUSTER_NO_NET_ADAPTERS = 0xC0130011,
2611 /// The cluster node is up.
2612 CLUSTER_NODE_UP = 0xC0130012,
2613 /// The cluster node is paused.
2614 CLUSTER_NODE_PAUSED = 0xC0130013,
2615 /// The cluster node is not paused.
2616 CLUSTER_NODE_NOT_PAUSED = 0xC0130014,
2617 /// No cluster security context is available.
2618 CLUSTER_NO_SECURITY_CONTEXT = 0xC0130015,
2619 /// The cluster network is not configured for internal cluster communication.
2620 CLUSTER_NETWORK_NOT_INTERNAL = 0xC0130016,
2621 /// The cluster node has been poisoned.
2622 CLUSTER_POISONED = 0xC0130017,
2623 /// An attempt was made to run an invalid AML opcode.
2624 ACPI_INVALID_OPCODE = 0xC0140001,
2625 /// The AML interpreter stack has overflowed.
2626 ACPI_STACK_OVERFLOW = 0xC0140002,
2627 /// An inconsistent state has occurred.
2628 ACPI_ASSERT_FAILED = 0xC0140003,
2629 /// An attempt was made to access an array outside its bounds.
2630 ACPI_INVALID_INDEX = 0xC0140004,
2631 /// A required argument was not specified.
2632 ACPI_INVALID_ARGUMENT = 0xC0140005,
2633 /// A fatal error has occurred.
2634 ACPI_FATAL = 0xC0140006,
2635 /// An invalid SuperName was specified.
2636 ACPI_INVALID_SUPERNAME = 0xC0140007,
2637 /// An argument with an incorrect type was specified.
2638 ACPI_INVALID_ARGTYPE = 0xC0140008,
2639 /// An object with an incorrect type was specified.
2640 ACPI_INVALID_OBJTYPE = 0xC0140009,
2641 /// A target with an incorrect type was specified.
2642 ACPI_INVALID_TARGETTYPE = 0xC014000A,
2643 /// An incorrect number of arguments was specified.
2644 ACPI_INCORRECT_ARGUMENT_COUNT = 0xC014000B,
2645 /// An address failed to translate.
2646 ACPI_ADDRESS_NOT_MAPPED = 0xC014000C,
2647 /// An incorrect event type was specified.
2648 ACPI_INVALID_EVENTTYPE = 0xC014000D,
2649 /// A handler for the target already exists.
2650 ACPI_HANDLER_COLLISION = 0xC014000E,
2651 /// Invalid data for the target was specified.
2652 ACPI_INVALID_DATA = 0xC014000F,
2653 /// An invalid region for the target was specified.
2654 ACPI_INVALID_REGION = 0xC0140010,
2655 /// An attempt was made to access a field outside the defined range.
2656 ACPI_INVALID_ACCESS_SIZE = 0xC0140011,
2657 /// The global system lock could not be acquired.
2658 ACPI_ACQUIRE_GLOBAL_LOCK = 0xC0140012,
2659 /// An attempt was made to reinitialize the ACPI subsystem.
2660 ACPI_ALREADY_INITIALIZED = 0xC0140013,
2661 /// The ACPI subsystem has not been initialized.
2662 ACPI_NOT_INITIALIZED = 0xC0140014,
2663 /// An incorrect mutex was specified.
2664 ACPI_INVALID_MUTEX_LEVEL = 0xC0140015,
2665 /// The mutex is not currently owned.
2666 ACPI_MUTEX_NOT_OWNED = 0xC0140016,
2667 /// An attempt was made to access the mutex by a process that was not the owner.
2668 ACPI_MUTEX_NOT_OWNER = 0xC0140017,
2669 /// An error occurred during an access to region space.
2670 ACPI_RS_ACCESS = 0xC0140018,
2671 /// An attempt was made to use an incorrect table.
2672 ACPI_INVALID_TABLE = 0xC0140019,
2673 /// The registration of an ACPI event failed.
2674 ACPI_REG_HANDLER_FAILED = 0xC0140020,
2675 /// An ACPI power object failed to transition state.
2676 ACPI_POWER_REQUEST_FAILED = 0xC0140021,
2677 /// The requested section is not present in the activation context.
2678 SXS_SECTION_NOT_FOUND = 0xC0150001,
2679 /// Windows was unble to process the application binding information.
2680 /// Refer to the system event log for further information.
2681 SXS_CANT_GEN_ACTCTX = 0xC0150002,
2682 /// The application binding data format is invalid.
2683 SXS_INVALID_ACTCTXDATA_FORMAT = 0xC0150003,
2684 /// The referenced assembly is not installed on the system.
2685 SXS_ASSEMBLY_NOT_FOUND = 0xC0150004,
2686 /// The manifest file does not begin with the required tag and format information.
2687 SXS_MANIFEST_FORMAT_ERROR = 0xC0150005,
2688 /// The manifest file contains one or more syntax errors.
2689 SXS_MANIFEST_PARSE_ERROR = 0xC0150006,
2690 /// The application attempted to activate a disabled activation context.
2691 SXS_ACTIVATION_CONTEXT_DISABLED = 0xC0150007,
2692 /// The requested lookup key was not found in any active activation context.
2693 SXS_KEY_NOT_FOUND = 0xC0150008,
2694 /// A component version required by the application conflicts with another component version that is already active.
2695 SXS_VERSION_CONFLICT = 0xC0150009,
2696 /// The type requested activation context section does not match the query API used.
2697 SXS_WRONG_SECTION_TYPE = 0xC015000A,
2698 /// Lack of system resources has required isolated activation to be disabled for the current thread of execution.
2699 SXS_THREAD_QUERIES_DISABLED = 0xC015000B,
2700 /// The referenced assembly could not be found.
2701 SXS_ASSEMBLY_MISSING = 0xC015000C,
2702 /// An attempt to set the process default activation context failed because the process default activation context was already set.
2703 SXS_PROCESS_DEFAULT_ALREADY_SET = 0xC015000E,
2704 /// The activation context being deactivated is not the most recently activated one.
2705 SXS_EARLY_DEACTIVATION = 0xC015000F,
2706 /// The activation context being deactivated is not active for the current thread of execution.
2707 SXS_INVALID_DEACTIVATION = 0xC0150010,
2708 /// The activation context being deactivated has already been deactivated.
2709 SXS_MULTIPLE_DEACTIVATION = 0xC0150011,
2710 /// The activation context of the system default assembly could not be generated.
2711 SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY = 0xC0150012,
2712 /// A component used by the isolation facility has requested that the process be terminated.
2713 SXS_PROCESS_TERMINATION_REQUESTED = 0xC0150013,
2714 /// The activation context activation stack for the running thread of execution is corrupt.
2715 SXS_CORRUPT_ACTIVATION_STACK = 0xC0150014,
2716 /// The application isolation metadata for this process or thread has become corrupt.
2717 SXS_CORRUPTION = 0xC0150015,
2718 /// The value of an attribute in an identity is not within the legal range.
2719 SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE = 0xC0150016,
2720 /// The name of an attribute in an identity is not within the legal range.
2721 SXS_INVALID_IDENTITY_ATTRIBUTE_NAME = 0xC0150017,
2722 /// An identity contains two definitions for the same attribute.
2723 SXS_IDENTITY_DUPLICATE_ATTRIBUTE = 0xC0150018,
2724 /// The identity string is malformed.
2725 /// This might be due to a trailing comma, more than two unnamed attributes, a missing attribute name, or a missing attribute value.
2726 SXS_IDENTITY_PARSE_ERROR = 0xC0150019,
2727 /// The component store has become corrupted.
2728 SXS_COMPONENT_STORE_CORRUPT = 0xC015001A,
2729 /// A component's file does not match the verification information present in the component manifest.
2730 SXS_FILE_HASH_MISMATCH = 0xC015001B,
2731 /// The identities of the manifests are identical, but their contents are different.
2732 SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT = 0xC015001C,
2733 /// The component identities are different.
2734 SXS_IDENTITIES_DIFFERENT = 0xC015001D,
2735 /// The assembly is not a deployment.
2736 SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT = 0xC015001E,
2737 /// The file is not a part of the assembly.
2738 SXS_FILE_NOT_PART_OF_ASSEMBLY = 0xC015001F,
2739 /// An advanced installer failed during setup or servicing.
2740 ADVANCED_INSTALLER_FAILED = 0xC0150020,
2741 /// The character encoding in the XML declaration did not match the encoding used in the document.
2742 XML_ENCODING_MISMATCH = 0xC0150021,
2743 /// The size of the manifest exceeds the maximum allowed.
2744 SXS_MANIFEST_TOO_BIG = 0xC0150022,
2745 /// The setting is not registered.
2746 SXS_SETTING_NOT_REGISTERED = 0xC0150023,
2747 /// One or more required transaction members are not present.
2748 SXS_TRANSACTION_CLOSURE_INCOMPLETE = 0xC0150024,
2749 /// The SMI primitive installer failed during setup or servicing.
2750 SMI_PRIMITIVE_INSTALLER_FAILED = 0xC0150025,
2751 /// A generic command executable returned a result that indicates failure.
2752 GENERIC_COMMAND_FAILED = 0xC0150026,
2753 /// A component is missing file verification information in its manifest.
2754 SXS_FILE_HASH_MISSING = 0xC0150027,
2755 /// The function attempted to use a name that is reserved for use by another transaction.
2756 TRANSACTIONAL_CONFLICT = 0xC0190001,
2757 /// The transaction handle associated with this operation is invalid.
2758 INVALID_TRANSACTION = 0xC0190002,
2759 /// The requested operation was made in the context of a transaction that is no longer active.
2760 TRANSACTION_NOT_ACTIVE = 0xC0190003,
2761 /// The transaction manager was unable to be successfully initialized. Transacted operations are not supported.
2762 TM_INITIALIZATION_FAILED = 0xC0190004,
2763 /// Transaction support within the specified file system resource manager was not started or was shut down due to an error.
2764 RM_NOT_ACTIVE = 0xC0190005,
2765 /// The metadata of the resource manager has been corrupted. The resource manager will not function.
2766 RM_METADATA_CORRUPT = 0xC0190006,
2767 /// The resource manager attempted to prepare a transaction that it has not successfully joined.
2768 TRANSACTION_NOT_JOINED = 0xC0190007,
2769 /// The specified directory does not contain a file system resource manager.
2770 DIRECTORY_NOT_RM = 0xC0190008,
2771 /// The remote server or share does not support transacted file operations.
2772 TRANSACTIONS_UNSUPPORTED_REMOTE = 0xC019000A,
2773 /// The requested log size for the file system resource manager is invalid.
2774 LOG_RESIZE_INVALID_SIZE = 0xC019000B,
2775 /// The remote server sent mismatching version number or Fid for a file opened with transactions.
2776 REMOTE_FILE_VERSION_MISMATCH = 0xC019000C,
2777 /// The resource manager tried to register a protocol that already exists.
2778 CRM_PROTOCOL_ALREADY_EXISTS = 0xC019000F,
2779 /// The attempt to propagate the transaction failed.
2780 TRANSACTION_PROPAGATION_FAILED = 0xC0190010,
2781 /// The requested propagation protocol was not registered as a CRM.
2782 CRM_PROTOCOL_NOT_FOUND = 0xC0190011,
2783 /// 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.
2784 TRANSACTION_SUPERIOR_EXISTS = 0xC0190012,
2785 /// The requested operation is not valid on the transaction object in its current state.
2786 TRANSACTION_REQUEST_NOT_VALID = 0xC0190013,
2787 /// 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.
2788 TRANSACTION_NOT_REQUESTED = 0xC0190014,
2789 /// It is too late to perform the requested operation, because the transaction has already been aborted.
2790 TRANSACTION_ALREADY_ABORTED = 0xC0190015,
2791 /// It is too late to perform the requested operation, because the transaction has already been committed.
2792 TRANSACTION_ALREADY_COMMITTED = 0xC0190016,
2793 /// The buffer passed in to NtPushTransaction or NtPullTransaction is not in a valid format.
2794 TRANSACTION_INVALID_MARSHALL_BUFFER = 0xC0190017,
2795 /// The current transaction context associated with the thread is not a valid handle to a transaction object.
2796 CURRENT_TRANSACTION_NOT_VALID = 0xC0190018,
2797 /// An attempt to create space in the transactional resource manager's log failed.
2798 /// The failure status has been recorded in the event log.
2799 LOG_GROWTH_FAILED = 0xC0190019,
2800 /// The object (file, stream, or link) that corresponds to the handle has been deleted by a transaction savepoint rollback.
2801 OBJECT_NO_LONGER_EXISTS = 0xC0190021,
2802 /// The specified file miniversion was not found for this transacted file open.
2803 STREAM_MINIVERSION_NOT_FOUND = 0xC0190022,
2804 /// The specified file miniversion was found but has been invalidated.
2805 /// The most likely cause is a transaction savepoint rollback.
2806 STREAM_MINIVERSION_NOT_VALID = 0xC0190023,
2807 /// A miniversion can be opened only in the context of the transaction that created it.
2808 MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION = 0xC0190024,
2809 /// It is not possible to open a miniversion with modify access.
2810 CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT = 0xC0190025,
2811 /// It is not possible to create any more miniversions for this stream.
2812 CANT_CREATE_MORE_STREAM_MINIVERSIONS = 0xC0190026,
2813 /// The handle has been invalidated by a transaction.
2814 /// 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.
2815 HANDLE_NO_LONGER_VALID = 0xC0190028,
2816 /// The log data is corrupt.
2817 LOG_CORRUPTION_DETECTED = 0xC0190030,
2818 /// The transaction outcome is unavailable because the resource manager responsible for it is disconnected.
2819 RM_DISCONNECTED = 0xC0190032,
2820 /// The request was rejected because the enlistment in question is not a superior enlistment.
2821 ENLISTMENT_NOT_SUPERIOR = 0xC0190033,
2822 /// The file cannot be opened in a transaction because its identity depends on the outcome of an unresolved transaction.
2823 FILE_IDENTITY_NOT_PERSISTENT = 0xC0190036,
2824 /// The operation cannot be performed because another transaction is depending on this property not changing.
2825 CANT_BREAK_TRANSACTIONAL_DEPENDENCY = 0xC0190037,
2826 /// The operation would involve a single file with two transactional resource managers and is, therefore, not allowed.
2827 CANT_CROSS_RM_BOUNDARY = 0xC0190038,
2828 /// The $Txf directory must be empty for this operation to succeed.
2829 TXF_DIR_NOT_EMPTY = 0xC0190039,
2830 /// The operation would leave a transactional resource manager in an inconsistent state and is therefore not allowed.
2831 INDOUBT_TRANSACTIONS_EXIST = 0xC019003A,
2832 /// The operation could not be completed because the transaction manager does not have a log.
2833 TM_VOLATILE = 0xC019003B,
2834 /// A rollback could not be scheduled because a previously scheduled rollback has already executed or been queued for execution.
2835 ROLLBACK_TIMER_EXPIRED = 0xC019003C,
2836 /// The transactional metadata attribute on the file or directory %hs is corrupt and unreadable.
2837 TXF_ATTRIBUTE_CORRUPT = 0xC019003D,
2838 /// The encryption operation could not be completed because a transaction is active.
2839 EFS_NOT_ALLOWED_IN_TRANSACTION = 0xC019003E,
2840 /// This object is not allowed to be opened in a transaction.
2841 TRANSACTIONAL_OPEN_NOT_ALLOWED = 0xC019003F,
2842 /// Memory mapping (creating a mapped section) a remote file under a transaction is not supported.
2843 TRANSACTED_MAPPING_UNSUPPORTED_REMOTE = 0xC0190040,
2844 /// Promotion was required to allow the resource manager to enlist, but the transaction was set to disallow it.
2845 TRANSACTION_REQUIRED_PROMOTION = 0xC0190043,
2846 /// This file is open for modification in an unresolved transaction and can be opened for execute only by a transacted reader.
2847 CANNOT_EXECUTE_FILE_IN_TRANSACTION = 0xC0190044,
2848 /// The request to thaw frozen transactions was ignored because transactions were not previously frozen.
2849 TRANSACTIONS_NOT_FROZEN = 0xC0190045,
2850 /// Transactions cannot be frozen because a freeze is already in progress.
2851 TRANSACTION_FREEZE_IN_PROGRESS = 0xC0190046,
2852 /// The target volume is not a snapshot volume.
2853 /// This operation is valid only on a volume mounted as a snapshot.
2854 NOT_SNAPSHOT_VOLUME = 0xC0190047,
2855 /// The savepoint operation failed because files are open on the transaction, which is not permitted.
2856 NO_SAVEPOINT_WITH_OPEN_FILES = 0xC0190048,
2857 /// The sparse operation could not be completed because a transaction is active on the file.
2858 SPARSE_NOT_ALLOWED_IN_TRANSACTION = 0xC0190049,
2859 /// 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.
2860 TM_IDENTITY_MISMATCH = 0xC019004A,
2861 /// I/O was attempted on a section object that has been floated as a result of a transaction ending. There is no valid data.
2862 FLOATED_SECTION = 0xC019004B,
2863 /// The transactional resource manager cannot currently accept transacted work due to a transient condition, such as low resources.
2864 CANNOT_ACCEPT_TRANSACTED_WORK = 0xC019004C,
2865 /// The transactional resource manager had too many transactions outstanding that could not be aborted.
2866 /// The transactional resource manager has been shut down.
2867 CANNOT_ABORT_TRANSACTIONS = 0xC019004D,
2868 /// The specified transaction was unable to be opened because it was not found.
2869 TRANSACTION_NOT_FOUND = 0xC019004E,
2870 /// The specified resource manager was unable to be opened because it was not found.
2871 RESOURCEMANAGER_NOT_FOUND = 0xC019004F,
2872 /// The specified enlistment was unable to be opened because it was not found.
2873 ENLISTMENT_NOT_FOUND = 0xC0190050,
2874 /// The specified transaction manager was unable to be opened because it was not found.
2875 TRANSACTIONMANAGER_NOT_FOUND = 0xC0190051,
2876 /// The specified resource manager was unable to create an enlistment because its associated transaction manager is not online.
2877 TRANSACTIONMANAGER_NOT_ONLINE = 0xC0190052,
2878 /// The specified transaction manager was unable to create the objects contained in its log file in the Ob namespace.
2879 /// Therefore, the transaction manager was unable to recover.
2880 TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION = 0xC0190053,
2881 /// 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.
2882 /// Only the root of the transaction can be enlisted as a superior.
2883 TRANSACTION_NOT_ROOT = 0xC0190054,
2884 /// Because the associated transaction manager or resource manager has been closed, the handle is no longer valid.
2885 TRANSACTION_OBJECT_EXPIRED = 0xC0190055,
2886 /// The compression operation could not be completed because a transaction is active on the file.
2887 COMPRESSION_NOT_ALLOWED_IN_TRANSACTION = 0xC0190056,
2888 /// 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.
2889 TRANSACTION_RESPONSE_NOT_ENLISTED = 0xC0190057,
2890 /// The specified operation could not be performed because the record to be logged was too long.
2891 /// 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.
2892 TRANSACTION_RECORD_TOO_LONG = 0xC0190058,
2893 /// The link-tracking operation could not be completed because a transaction is active.
2894 NO_LINK_TRACKING_IN_TRANSACTION = 0xC0190059,
2895 /// This operation cannot be performed in a transaction.
2896 OPERATION_NOT_SUPPORTED_IN_TRANSACTION = 0xC019005A,
2897 /// The kernel transaction manager had to abort or forget the transaction because it blocked forward progress.
2898 TRANSACTION_INTEGRITY_VIOLATED = 0xC019005B,
2899 /// The handle is no longer properly associated with its transaction.
2900 /// 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.
2901 EXPIRED_HANDLE = 0xC0190060,
2902 /// The specified operation could not be performed because the resource manager is not enlisted in the transaction.
2903 TRANSACTION_NOT_ENLISTED = 0xC0190061,
2904 /// The log service found an invalid log sector.
2905 LOG_SECTOR_INVALID = 0xC01A0001,
2906 /// The log service encountered a log sector with invalid block parity.
2907 LOG_SECTOR_PARITY_INVALID = 0xC01A0002,
2908 /// The log service encountered a remapped log sector.
2909 LOG_SECTOR_REMAPPED = 0xC01A0003,
2910 /// The log service encountered a partial or incomplete log block.
2911 LOG_BLOCK_INCOMPLETE = 0xC01A0004,
2912 /// The log service encountered an attempt to access data outside the active log range.
2913 LOG_INVALID_RANGE = 0xC01A0005,
2914 /// The log service user-log marshaling buffers are exhausted.
2915 LOG_BLOCKS_EXHAUSTED = 0xC01A0006,
2916 /// The log service encountered an attempt to read from a marshaling area with an invalid read context.
2917 LOG_READ_CONTEXT_INVALID = 0xC01A0007,
2918 /// The log service encountered an invalid log restart area.
2919 LOG_RESTART_INVALID = 0xC01A0008,
2920 /// The log service encountered an invalid log block version.
2921 LOG_BLOCK_VERSION = 0xC01A0009,
2922 /// The log service encountered an invalid log block.
2923 LOG_BLOCK_INVALID = 0xC01A000A,
2924 /// The log service encountered an attempt to read the log with an invalid read mode.
2925 LOG_READ_MODE_INVALID = 0xC01A000B,
2926 /// The log service encountered a corrupted metadata file.
2927 LOG_METADATA_CORRUPT = 0xC01A000D,
2928 /// The log service encountered a metadata file that could not be created by the log file system.
2929 LOG_METADATA_INVALID = 0xC01A000E,
2930 /// The log service encountered a metadata file with inconsistent data.
2931 LOG_METADATA_INCONSISTENT = 0xC01A000F,
2932 /// The log service encountered an attempt to erroneously allocate or dispose reservation space.
2933 LOG_RESERVATION_INVALID = 0xC01A0010,
2934 /// The log service cannot delete the log file or the file system container.
2935 LOG_CANT_DELETE = 0xC01A0011,
2936 /// The log service has reached the maximum allowable containers allocated to a log file.
2937 LOG_CONTAINER_LIMIT_EXCEEDED = 0xC01A0012,
2938 /// The log service has attempted to read or write backward past the start of the log.
2939 LOG_START_OF_LOG = 0xC01A0013,
2940 /// The log policy could not be installed because a policy of the same type is already present.
2941 LOG_POLICY_ALREADY_INSTALLED = 0xC01A0014,
2942 /// The log policy in question was not installed at the time of the request.
2943 LOG_POLICY_NOT_INSTALLED = 0xC01A0015,
2944 /// The installed set of policies on the log is invalid.
2945 LOG_POLICY_INVALID = 0xC01A0016,
2946 /// A policy on the log in question prevented the operation from completing.
2947 LOG_POLICY_CONFLICT = 0xC01A0017,
2948 /// The log space cannot be reclaimed because the log is pinned by the archive tail.
2949 LOG_PINNED_ARCHIVE_TAIL = 0xC01A0018,
2950 /// The log record is not a record in the log file.
2951 LOG_RECORD_NONEXISTENT = 0xC01A0019,
2952 /// The number of reserved log records or the adjustment of the number of reserved log records is invalid.
2953 LOG_RECORDS_RESERVED_INVALID = 0xC01A001A,
2954 /// The reserved log space or the adjustment of the log space is invalid.
2955 LOG_SPACE_RESERVED_INVALID = 0xC01A001B,
2956 /// A new or existing archive tail or the base of the active log is invalid.
2957 LOG_TAIL_INVALID = 0xC01A001C,
2958 /// The log space is exhausted.
2959 LOG_FULL = 0xC01A001D,
2960 /// The log is multiplexed; no direct writes to the physical log are allowed.
2961 LOG_MULTIPLEXED = 0xC01A001E,
2962 /// The operation failed because the log is dedicated.
2963 LOG_DEDICATED = 0xC01A001F,
2964 /// The operation requires an archive context.
2965 LOG_ARCHIVE_NOT_IN_PROGRESS = 0xC01A0020,
2966 /// Log archival is in progress.
2967 LOG_ARCHIVE_IN_PROGRESS = 0xC01A0021,
2968 /// The operation requires a nonephemeral log, but the log is ephemeral.
2969 LOG_EPHEMERAL = 0xC01A0022,
2970 /// The log must have at least two containers before it can be read from or written to.
2971 LOG_NOT_ENOUGH_CONTAINERS = 0xC01A0023,
2972 /// A log client has already registered on the stream.
2973 LOG_CLIENT_ALREADY_REGISTERED = 0xC01A0024,
2974 /// A log client has not been registered on the stream.
2975 LOG_CLIENT_NOT_REGISTERED = 0xC01A0025,
2976 /// A request has already been made to handle the log full condition.
2977 LOG_FULL_HANDLER_IN_PROGRESS = 0xC01A0026,
2978 /// The log service encountered an error when attempting to read from a log container.
2979 LOG_CONTAINER_READ_FAILED = 0xC01A0027,
2980 /// The log service encountered an error when attempting to write to a log container.
2981 LOG_CONTAINER_WRITE_FAILED = 0xC01A0028,
2982 /// The log service encountered an error when attempting to open a log container.
2983 LOG_CONTAINER_OPEN_FAILED = 0xC01A0029,
2984 /// The log service encountered an invalid container state when attempting a requested action.
2985 LOG_CONTAINER_STATE_INVALID = 0xC01A002A,
2986 /// The log service is not in the correct state to perform a requested action.
2987 LOG_STATE_INVALID = 0xC01A002B,
2988 /// The log space cannot be reclaimed because the log is pinned.
2989 LOG_PINNED = 0xC01A002C,
2990 /// The log metadata flush failed.
2991 LOG_METADATA_FLUSH_FAILED = 0xC01A002D,
2992 /// Security on the log and its containers is inconsistent.
2993 LOG_INCONSISTENT_SECURITY = 0xC01A002E,
2994 /// Records were appended to the log or reservation changes were made, but the log could not be flushed.
2995 LOG_APPENDED_FLUSH_FAILED = 0xC01A002F,
2996 /// The log is pinned due to reservation consuming most of the log space.
2997 /// Free some reserved records to make space available.
2998 LOG_PINNED_RESERVATION = 0xC01A0030,
2999 /// {Display Driver Stopped Responding} The %hs display driver has stopped working normally.
3000 /// Save your work and reboot the system to restore full display functionality.
3001 /// The next time you reboot the computer, a dialog box will allow you to upload data about this failure to Microsoft.
3002 VIDEO_HUNG_DISPLAY_DRIVER_THREAD = 0xC01B00EA,
3003 /// A handler was not defined by the filter for this operation.
3004 FLT_NO_HANDLER_DEFINED = 0xC01C0001,
3005 /// A context is already defined for this object.
3006 FLT_CONTEXT_ALREADY_DEFINED = 0xC01C0002,
3007 /// Asynchronous requests are not valid for this operation.
3008 FLT_INVALID_ASYNCHRONOUS_REQUEST = 0xC01C0003,
3009 /// 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.
3010 FLT_DISALLOW_FAST_IO = 0xC01C0004,
3011 /// An invalid name request was made.
3012 /// The name requested cannot be retrieved at this time.
3013 FLT_INVALID_NAME_REQUEST = 0xC01C0005,
3014 /// Posting this operation to a worker thread for further processing is not safe at this time because it could lead to a system deadlock.
3015 FLT_NOT_SAFE_TO_POST_OPERATION = 0xC01C0006,
3016 /// The Filter Manager was not initialized when a filter tried to register.
3017 /// Make sure that the Filter Manager is loaded as a driver.
3018 FLT_NOT_INITIALIZED = 0xC01C0007,
3019 /// The filter is not ready for attachment to volumes because it has not finished initializing (FltStartFiltering has not been called).
3020 FLT_FILTER_NOT_READY = 0xC01C0008,
3021 /// 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.
3022 FLT_POST_OPERATION_CLEANUP = 0xC01C0009,
3023 /// The Filter Manager had an internal error from which it cannot recover; therefore, the operation has failed.
3024 /// This is usually the result of a filter returning an invalid value from a pre-operation callback.
3025 FLT_INTERNAL_ERROR = 0xC01C000A,
3026 /// The object specified for this action is in the process of being deleted; therefore, the action requested cannot be completed at this time.
3027 FLT_DELETING_OBJECT = 0xC01C000B,
3028 /// A nonpaged pool must be used for this type of context.
3029 FLT_MUST_BE_NONPAGED_POOL = 0xC01C000C,
3030 /// A duplicate handler definition has been provided for an operation.
3031 FLT_DUPLICATE_ENTRY = 0xC01C000D,
3032 /// The callback data queue has been disabled.
3033 FLT_CBDQ_DISABLED = 0xC01C000E,
3034 /// Do not attach the filter to the volume at this time.
3035 FLT_DO_NOT_ATTACH = 0xC01C000F,
3036 /// Do not detach the filter from the volume at this time.
3037 FLT_DO_NOT_DETACH = 0xC01C0010,
3038 /// An instance already exists at this altitude on the volume specified.
3039 FLT_INSTANCE_ALTITUDE_COLLISION = 0xC01C0011,
3040 /// An instance already exists with this name on the volume specified.
3041 FLT_INSTANCE_NAME_COLLISION = 0xC01C0012,
3042 /// The system could not find the filter specified.
3043 FLT_FILTER_NOT_FOUND = 0xC01C0013,
3044 /// The system could not find the volume specified.
3045 FLT_VOLUME_NOT_FOUND = 0xC01C0014,
3046 /// The system could not find the instance specified.
3047 FLT_INSTANCE_NOT_FOUND = 0xC01C0015,
3048 /// No registered context allocation definition was found for the given request.
3049 FLT_CONTEXT_ALLOCATION_NOT_FOUND = 0xC01C0016,
3050 /// An invalid parameter was specified during context registration.
3051 FLT_INVALID_CONTEXT_REGISTRATION = 0xC01C0017,
3052 /// The name requested was not found in the Filter Manager name cache and could not be retrieved from the file system.
3053 FLT_NAME_CACHE_MISS = 0xC01C0018,
3054 /// The requested device object does not exist for the given volume.
3055 FLT_NO_DEVICE_OBJECT = 0xC01C0019,
3056 /// The specified volume is already mounted.
3057 FLT_VOLUME_ALREADY_MOUNTED = 0xC01C001A,
3058 /// The specified transaction context is already enlisted in a transaction.
3059 FLT_ALREADY_ENLISTED = 0xC01C001B,
3060 /// The specified context is already attached to another object.
3061 FLT_CONTEXT_ALREADY_LINKED = 0xC01C001C,
3062 /// No waiter is present for the filter's reply to this message.
3063 FLT_NO_WAITER_FOR_REPLY = 0xC01C0020,
3064 /// A monitor descriptor could not be obtained.
3065 MONITOR_NO_DESCRIPTOR = 0xC01D0001,
3066 /// This release does not support the format of the obtained monitor descriptor.
3067 MONITOR_UNKNOWN_DESCRIPTOR_FORMAT = 0xC01D0002,
3068 /// The checksum of the obtained monitor descriptor is invalid.
3069 MONITOR_INVALID_DESCRIPTOR_CHECKSUM = 0xC01D0003,
3070 /// The monitor descriptor contains an invalid standard timing block.
3071 MONITOR_INVALID_STANDARD_TIMING_BLOCK = 0xC01D0004,
3072 /// WMI data-block registration failed for one of the MSMonitorClass WMI subclasses.
3073 MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED = 0xC01D0005,
3074 /// The provided monitor descriptor block is either corrupted or does not contain the monitor's detailed serial number.
3075 MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK = 0xC01D0006,
3076 /// The provided monitor descriptor block is either corrupted or does not contain the monitor's user-friendly name.
3077 MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK = 0xC01D0007,
3078 /// There is no monitor descriptor data at the specified (offset or size) region.
3079 MONITOR_NO_MORE_DESCRIPTOR_DATA = 0xC01D0008,
3080 /// The monitor descriptor contains an invalid detailed timing block.
3081 MONITOR_INVALID_DETAILED_TIMING_BLOCK = 0xC01D0009,
3082 /// Monitor descriptor contains invalid manufacture date.
3083 MONITOR_INVALID_MANUFACTURE_DATE = 0xC01D000A,
3084 /// Exclusive mode ownership is needed to create an unmanaged primary allocation.
3085 GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER = 0xC01E0000,
3086 /// The driver needs more DMA buffer space to complete the requested operation.
3087 GRAPHICS_INSUFFICIENT_DMA_BUFFER = 0xC01E0001,
3088 /// The specified display adapter handle is invalid.
3089 GRAPHICS_INVALID_DISPLAY_ADAPTER = 0xC01E0002,
3090 /// The specified display adapter and all of its state have been reset.
3091 GRAPHICS_ADAPTER_WAS_RESET = 0xC01E0003,
3092 /// The driver stack does not match the expected driver model.
3093 GRAPHICS_INVALID_DRIVER_MODEL = 0xC01E0004,
3094 /// Present happened but ended up into the changed desktop mode.
3095 GRAPHICS_PRESENT_MODE_CHANGED = 0xC01E0005,
3096 /// Nothing to present due to desktop occlusion.
3097 GRAPHICS_PRESENT_OCCLUDED = 0xC01E0006,
3098 /// Not able to present due to denial of desktop access.
3099 GRAPHICS_PRESENT_DENIED = 0xC01E0007,
3100 /// Not able to present with color conversion.
3101 GRAPHICS_CANNOTCOLORCONVERT = 0xC01E0008,
3102 /// Present redirection is disabled (desktop windowing management subsystem is off).
3103 GRAPHICS_PRESENT_REDIRECTION_DISABLED = 0xC01E000B,
3104 /// Previous exclusive VidPn source owner has released its ownership
3105 GRAPHICS_PRESENT_UNOCCLUDED = 0xC01E000C,
3106 /// Not enough video memory is available to complete the operation.
3107 GRAPHICS_NO_VIDEO_MEMORY = 0xC01E0100,
3108 /// Could not probe and lock the underlying memory of an allocation.
3109 GRAPHICS_CANT_LOCK_MEMORY = 0xC01E0101,
3110 /// The allocation is currently busy.
3111 GRAPHICS_ALLOCATION_BUSY = 0xC01E0102,
3112 /// An object being referenced has already reached the maximum reference count and cannot be referenced further.
3113 GRAPHICS_TOO_MANY_REFERENCES = 0xC01E0103,
3114 /// A problem could not be solved due to an existing condition. Try again later.
3115 GRAPHICS_TRY_AGAIN_LATER = 0xC01E0104,
3116 /// A problem could not be solved due to an existing condition. Try again now.
3117 GRAPHICS_TRY_AGAIN_NOW = 0xC01E0105,
3118 /// The allocation is invalid.
3119 GRAPHICS_ALLOCATION_INVALID = 0xC01E0106,
3120 /// No more unswizzling apertures are currently available.
3121 GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE = 0xC01E0107,
3122 /// The current allocation cannot be unswizzled by an aperture.
3123 GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED = 0xC01E0108,
3124 /// The request failed because a pinned allocation cannot be evicted.
3125 GRAPHICS_CANT_EVICT_PINNED_ALLOCATION = 0xC01E0109,
3126 /// The allocation cannot be used from its current segment location for the specified operation.
3127 GRAPHICS_INVALID_ALLOCATION_USAGE = 0xC01E0110,
3128 /// A locked allocation cannot be used in the current command buffer.
3129 GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION = 0xC01E0111,
3130 /// The allocation being referenced has been closed permanently.
3131 GRAPHICS_ALLOCATION_CLOSED = 0xC01E0112,
3132 /// An invalid allocation instance is being referenced.
3133 GRAPHICS_INVALID_ALLOCATION_INSTANCE = 0xC01E0113,
3134 /// An invalid allocation handle is being referenced.
3135 GRAPHICS_INVALID_ALLOCATION_HANDLE = 0xC01E0114,
3136 /// The allocation being referenced does not belong to the current device.
3137 GRAPHICS_WRONG_ALLOCATION_DEVICE = 0xC01E0115,
3138 /// The specified allocation lost its content.
3139 GRAPHICS_ALLOCATION_CONTENT_LOST = 0xC01E0116,
3140 /// A GPU exception was detected on the given device. The device cannot be scheduled.
3141 GRAPHICS_GPU_EXCEPTION_ON_DEVICE = 0xC01E0200,
3142 /// The specified VidPN topology is invalid.
3143 GRAPHICS_INVALID_VIDPN_TOPOLOGY = 0xC01E0300,
3144 /// The specified VidPN topology is valid but is not supported by this model of the display adapter.
3145 GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED = 0xC01E0301,
3146 /// The specified VidPN topology is valid but is not currently supported by the display adapter due to allocation of its resources.
3147 GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED = 0xC01E0302,
3148 /// The specified VidPN handle is invalid.
3149 GRAPHICS_INVALID_VIDPN = 0xC01E0303,
3150 /// The specified video present source is invalid.
3151 GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE = 0xC01E0304,
3152 /// The specified video present target is invalid.
3153 GRAPHICS_INVALID_VIDEO_PRESENT_TARGET = 0xC01E0305,
3154 /// The specified VidPN modality is not supported (for example, at least two of the pinned modes are not co-functional).
3155 GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED = 0xC01E0306,
3156 /// The specified VidPN source mode set is invalid.
3157 GRAPHICS_INVALID_VIDPN_SOURCEMODESET = 0xC01E0308,
3158 /// The specified VidPN target mode set is invalid.
3159 GRAPHICS_INVALID_VIDPN_TARGETMODESET = 0xC01E0309,
3160 /// The specified video signal frequency is invalid.
3161 GRAPHICS_INVALID_FREQUENCY = 0xC01E030A,
3162 /// The specified video signal active region is invalid.
3163 GRAPHICS_INVALID_ACTIVE_REGION = 0xC01E030B,
3164 /// The specified video signal total region is invalid.
3165 GRAPHICS_INVALID_TOTAL_REGION = 0xC01E030C,
3166 /// The specified video present source mode is invalid.
3167 GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE = 0xC01E0310,
3168 /// The specified video present target mode is invalid.
3169 GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE = 0xC01E0311,
3170 /// The pinned mode must remain in the set on the VidPN's co-functional modality enumeration.
3171 GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET = 0xC01E0312,
3172 /// The specified video present path is already in the VidPN's topology.
3173 GRAPHICS_PATH_ALREADY_IN_TOPOLOGY = 0xC01E0313,
3174 /// The specified mode is already in the mode set.
3175 GRAPHICS_MODE_ALREADY_IN_MODESET = 0xC01E0314,
3176 /// The specified video present source set is invalid.
3177 GRAPHICS_INVALID_VIDEOPRESENTSOURCESET = 0xC01E0315,
3178 /// The specified video present target set is invalid.
3179 GRAPHICS_INVALID_VIDEOPRESENTTARGETSET = 0xC01E0316,
3180 /// The specified video present source is already in the video present source set.
3181 GRAPHICS_SOURCE_ALREADY_IN_SET = 0xC01E0317,
3182 /// The specified video present target is already in the video present target set.
3183 GRAPHICS_TARGET_ALREADY_IN_SET = 0xC01E0318,
3184 /// The specified VidPN present path is invalid.
3185 GRAPHICS_INVALID_VIDPN_PRESENT_PATH = 0xC01E0319,
3186 /// The miniport has no recommendation for augmenting the specified VidPN's topology.
3187 GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY = 0xC01E031A,
3188 /// The specified monitor frequency range set is invalid.
3189 GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET = 0xC01E031B,
3190 /// The specified monitor frequency range is invalid.
3191 GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE = 0xC01E031C,
3192 /// The specified frequency range is not in the specified monitor frequency range set.
3193 GRAPHICS_FREQUENCYRANGE_NOT_IN_SET = 0xC01E031D,
3194 /// The specified frequency range is already in the specified monitor frequency range set.
3195 GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET = 0xC01E031F,
3196 /// The specified mode set is stale. Reacquire the new mode set.
3197 GRAPHICS_STALE_MODESET = 0xC01E0320,
3198 /// The specified monitor source mode set is invalid.
3199 GRAPHICS_INVALID_MONITOR_SOURCEMODESET = 0xC01E0321,
3200 /// The specified monitor source mode is invalid.
3201 GRAPHICS_INVALID_MONITOR_SOURCE_MODE = 0xC01E0322,
3202 /// The miniport does not have a recommendation regarding the request to provide a functional VidPN given the current display adapter configuration.
3203 GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN = 0xC01E0323,
3204 /// The ID of the specified mode is being used by another mode in the set.
3205 GRAPHICS_MODE_ID_MUST_BE_UNIQUE = 0xC01E0324,
3206 /// The system failed to determine a mode that is supported by both the display adapter and the monitor connected to it.
3207 GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION = 0xC01E0325,
3208 /// The number of video present targets must be greater than or equal to the number of video present sources.
3209 GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES = 0xC01E0326,
3210 /// The specified present path is not in the VidPN's topology.
3211 GRAPHICS_PATH_NOT_IN_TOPOLOGY = 0xC01E0327,
3212 /// The display adapter must have at least one video present source.
3213 GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE = 0xC01E0328,
3214 /// The display adapter must have at least one video present target.
3215 GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET = 0xC01E0329,
3216 /// The specified monitor descriptor set is invalid.
3217 GRAPHICS_INVALID_MONITORDESCRIPTORSET = 0xC01E032A,
3218 /// The specified monitor descriptor is invalid.
3219 GRAPHICS_INVALID_MONITORDESCRIPTOR = 0xC01E032B,
3220 /// The specified descriptor is not in the specified monitor descriptor set.
3221 GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET = 0xC01E032C,
3222 /// The specified descriptor is already in the specified monitor descriptor set.
3223 GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET = 0xC01E032D,
3224 /// The ID of the specified monitor descriptor is being used by another descriptor in the set.
3225 GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE = 0xC01E032E,
3226 /// The specified video present target subset type is invalid.
3227 GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE = 0xC01E032F,
3228 /// Two or more of the specified resources are not related to each other, as defined by the interface semantics.
3229 GRAPHICS_RESOURCES_NOT_RELATED = 0xC01E0330,
3230 /// The ID of the specified video present source is being used by another source in the set.
3231 GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE = 0xC01E0331,
3232 /// The ID of the specified video present target is being used by another target in the set.
3233 GRAPHICS_TARGET_ID_MUST_BE_UNIQUE = 0xC01E0332,
3234 /// The specified VidPN source cannot be used because there is no available VidPN target to connect it to.
3235 GRAPHICS_NO_AVAILABLE_VIDPN_TARGET = 0xC01E0333,
3236 /// The newly arrived monitor could not be associated with a display adapter.
3237 GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER = 0xC01E0334,
3238 /// The particular display adapter does not have an associated VidPN manager.
3239 GRAPHICS_NO_VIDPNMGR = 0xC01E0335,
3240 /// The VidPN manager of the particular display adapter does not have an active VidPN.
3241 GRAPHICS_NO_ACTIVE_VIDPN = 0xC01E0336,
3242 /// The specified VidPN topology is stale; obtain the new topology.
3243 GRAPHICS_STALE_VIDPN_TOPOLOGY = 0xC01E0337,
3244 /// No monitor is connected on the specified video present target.
3245 GRAPHICS_MONITOR_NOT_CONNECTED = 0xC01E0338,
3246 /// The specified source is not part of the specified VidPN's topology.
3247 GRAPHICS_SOURCE_NOT_IN_TOPOLOGY = 0xC01E0339,
3248 /// The specified primary surface size is invalid.
3249 GRAPHICS_INVALID_PRIMARYSURFACE_SIZE = 0xC01E033A,
3250 /// The specified visible region size is invalid.
3251 GRAPHICS_INVALID_VISIBLEREGION_SIZE = 0xC01E033B,
3252 /// The specified stride is invalid.
3253 GRAPHICS_INVALID_STRIDE = 0xC01E033C,
3254 /// The specified pixel format is invalid.
3255 GRAPHICS_INVALID_PIXELFORMAT = 0xC01E033D,
3256 /// The specified color basis is invalid.
3257 GRAPHICS_INVALID_COLORBASIS = 0xC01E033E,
3258 /// The specified pixel value access mode is invalid.
3259 GRAPHICS_INVALID_PIXELVALUEACCESSMODE = 0xC01E033F,
3260 /// The specified target is not part of the specified VidPN's topology.
3261 GRAPHICS_TARGET_NOT_IN_TOPOLOGY = 0xC01E0340,
3262 /// Failed to acquire the display mode management interface.
3263 GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT = 0xC01E0341,
3264 /// The specified VidPN source is already owned by a DMM client and cannot be used until that client releases it.
3265 GRAPHICS_VIDPN_SOURCE_IN_USE = 0xC01E0342,
3266 /// The specified VidPN is active and cannot be accessed.
3267 GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN = 0xC01E0343,
3268 /// The specified VidPN's present path importance ordinal is invalid.
3269 GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL = 0xC01E0344,
3270 /// The specified VidPN's present path content geometry transformation is invalid.
3271 GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION = 0xC01E0345,
3272 /// The specified content geometry transformation is not supported on the respective VidPN present path.
3273 GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED = 0xC01E0346,
3274 /// The specified gamma ramp is invalid.
3275 GRAPHICS_INVALID_GAMMA_RAMP = 0xC01E0347,
3276 /// The specified gamma ramp is not supported on the respective VidPN present path.
3277 GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED = 0xC01E0348,
3278 /// Multisampling is not supported on the respective VidPN present path.
3279 GRAPHICS_MULTISAMPLING_NOT_SUPPORTED = 0xC01E0349,
3280 /// The specified mode is not in the specified mode set.
3281 GRAPHICS_MODE_NOT_IN_MODESET = 0xC01E034A,
3282 /// The specified VidPN topology recommendation reason is invalid.
3283 GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON = 0xC01E034D,
3284 /// The specified VidPN present path content type is invalid.
3285 GRAPHICS_INVALID_PATH_CONTENT_TYPE = 0xC01E034E,
3286 /// The specified VidPN present path copy protection type is invalid.
3287 GRAPHICS_INVALID_COPYPROTECTION_TYPE = 0xC01E034F,
3288 /// Only one unassigned mode set can exist at any one time for a particular VidPN source or target.
3289 GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS = 0xC01E0350,
3290 /// The specified scan line ordering type is invalid.
3291 GRAPHICS_INVALID_SCANLINE_ORDERING = 0xC01E0352,
3292 /// The topology changes are not allowed for the specified VidPN.
3293 GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED = 0xC01E0353,
3294 /// All available importance ordinals are being used in the specified topology.
3295 GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS = 0xC01E0354,
3296 /// The specified primary surface has a different private-format attribute than the current primary surface.
3297 GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT = 0xC01E0355,
3298 /// The specified mode-pruning algorithm is invalid.
3299 GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM = 0xC01E0356,
3300 /// The specified monitor-capability origin is invalid.
3301 GRAPHICS_INVALID_MONITOR_CAPABILITY_ORIGIN = 0xC01E0357,
3302 /// The specified monitor-frequency range constraint is invalid.
3303 GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE_CONSTRAINT = 0xC01E0358,
3304 /// The maximum supported number of present paths has been reached.
3305 GRAPHICS_MAX_NUM_PATHS_REACHED = 0xC01E0359,
3306 /// The miniport requested that augmentation be canceled for the specified source of the specified VidPN's topology.
3307 GRAPHICS_CANCEL_VIDPN_TOPOLOGY_AUGMENTATION = 0xC01E035A,
3308 /// The specified client type was not recognized.
3309 GRAPHICS_INVALID_CLIENT_TYPE = 0xC01E035B,
3310 /// The client VidPN is not set on this adapter (for example, no user mode-initiated mode changes have taken place on this adapter).
3311 GRAPHICS_CLIENTVIDPN_NOT_SET = 0xC01E035C,
3312 /// The specified display adapter child device already has an external device connected to it.
3313 GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED = 0xC01E0400,
3314 /// The display adapter child device does not support reporting a descriptor.
3315 GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED = 0xC01E0401,
3316 /// The display adapter is not linked to any other adapters.
3317 GRAPHICS_NOT_A_LINKED_ADAPTER = 0xC01E0430,
3318 /// The lead adapter in a linked configuration was not enumerated yet.
3319 GRAPHICS_LEADLINK_NOT_ENUMERATED = 0xC01E0431,
3320 /// Some chain adapters in a linked configuration have not yet been enumerated.
3321 GRAPHICS_CHAINLINKS_NOT_ENUMERATED = 0xC01E0432,
3322 /// The chain of linked adapters is not ready to start because of an unknown failure.
3323 GRAPHICS_ADAPTER_CHAIN_NOT_READY = 0xC01E0433,
3324 /// An attempt was made to start a lead link display adapter when the chain links had not yet started.
3325 GRAPHICS_CHAINLINKS_NOT_STARTED = 0xC01E0434,
3326 /// An attempt was made to turn on a lead link display adapter when the chain links were turned off.
3327 GRAPHICS_CHAINLINKS_NOT_POWERED_ON = 0xC01E0435,
3328 /// The adapter link was found in an inconsistent state.
3329 /// Not all adapters are in an expected PNP/power state.
3330 GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE = 0xC01E0436,
3331 /// The driver trying to start is not the same as the driver for the posted display adapter.
3332 GRAPHICS_NOT_POST_DEVICE_DRIVER = 0xC01E0438,
3333 /// An operation is being attempted that requires the display adapter to be in a quiescent state.
3334 GRAPHICS_ADAPTER_ACCESS_NOT_EXCLUDED = 0xC01E043B,
3335 /// The driver does not support OPM.
3336 GRAPHICS_OPM_NOT_SUPPORTED = 0xC01E0500,
3337 /// The driver does not support COPP.
3338 GRAPHICS_COPP_NOT_SUPPORTED = 0xC01E0501,
3339 /// The driver does not support UAB.
3340 GRAPHICS_UAB_NOT_SUPPORTED = 0xC01E0502,
3341 /// The specified encrypted parameters are invalid.
3342 GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS = 0xC01E0503,
3343 /// An array passed to a function cannot hold all of the data that the function wants to put in it.
3344 GRAPHICS_OPM_PARAMETER_ARRAY_TOO_SMALL = 0xC01E0504,
3345 /// The GDI display device passed to this function does not have any active protected outputs.
3346 GRAPHICS_OPM_NO_PROTECTED_OUTPUTS_EXIST = 0xC01E0505,
3347 /// The PVP cannot find an actual GDI display device that corresponds to the passed-in GDI display device name.
3348 GRAPHICS_PVP_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME = 0xC01E0506,
3349 /// This function failed because the GDI display device passed to it was not attached to the Windows desktop.
3350 GRAPHICS_PVP_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP = 0xC01E0507,
3351 /// The PVP does not support mirroring display devices because they do not have any protected outputs.
3352 GRAPHICS_PVP_MIRRORING_DEVICES_NOT_SUPPORTED = 0xC01E0508,
3353 /// The function failed because an invalid pointer parameter was passed to it.
3354 /// 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.
3355 GRAPHICS_OPM_INVALID_POINTER = 0xC01E050A,
3356 /// An internal error caused an operation to fail.
3357 GRAPHICS_OPM_INTERNAL_ERROR = 0xC01E050B,
3358 /// The function failed because the caller passed in an invalid OPM user-mode handle.
3359 GRAPHICS_OPM_INVALID_HANDLE = 0xC01E050C,
3360 /// This function failed because the GDI device passed to it did not have any monitors associated with it.
3361 GRAPHICS_PVP_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE = 0xC01E050D,
3362 /// A certificate could not be returned because the certificate buffer passed to the function was too small.
3363 GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH = 0xC01E050E,
3364 /// DxgkDdiOpmCreateProtectedOutput() could not create a protected output because the video present yarget is in spanning mode.
3365 GRAPHICS_OPM_SPANNING_MODE_ENABLED = 0xC01E050F,
3366 /// DxgkDdiOpmCreateProtectedOutput() could not create a protected output because the video present target is in theater mode.
3367 GRAPHICS_OPM_THEATER_MODE_ENABLED = 0xC01E0510,
3368 /// The function call failed because the display adapter's hardware functionality scan (HFS) failed to validate the graphics hardware.
3369 GRAPHICS_PVP_HFS_FAILED = 0xC01E0511,
3370 /// The HDCP SRM passed to this function did not comply with section 5 of the HDCP 1.1 specification.
3371 GRAPHICS_OPM_INVALID_SRM = 0xC01E0512,
3372 /// The protected output cannot enable the HDCP system because it does not support it.
3373 GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP = 0xC01E0513,
3374 /// The protected output cannot enable analog copy protection because it does not support it.
3375 GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP = 0xC01E0514,
3376 /// The protected output cannot enable the CGMS-A protection technology because it does not support it.
3377 GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA = 0xC01E0515,
3378 /// DxgkDdiOPMGetInformation() cannot return the version of the SRM being used because the application never successfully passed an SRM to the protected output.
3379 GRAPHICS_OPM_HDCP_SRM_NEVER_SET = 0xC01E0516,
3380 /// DxgkDdiOPMConfigureProtectedOutput() cannot enable the specified output protection technology because the output's screen resolution is too high.
3381 GRAPHICS_OPM_RESOLUTION_TOO_HIGH = 0xC01E0517,
3382 /// DxgkDdiOPMConfigureProtectedOutput() cannot enable HDCP because other physical outputs are using the display adapter's HDCP hardware.
3383 GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE = 0xC01E0518,
3384 /// The operating system asynchronously destroyed this OPM-protected output because the operating system state changed.
3385 /// 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.
3386 GRAPHICS_OPM_PROTECTED_OUTPUT_NO_LONGER_EXISTS = 0xC01E051A,
3387 /// OPM functions cannot be called when a session is changing its type.
3388 /// Three types of sessions currently exist: console, disconnected, and remote (RDP or ICA).
3389 GRAPHICS_OPM_SESSION_TYPE_CHANGE_IN_PROGRESS = 0xC01E051B,
3390 /// The DxgkDdiOPMGetCOPPCompatibleInformation, DxgkDdiOPMGetInformation, or DxgkDdiOPMConfigureProtectedOutput function failed.
3391 /// This error is returned only if a protected output has OPM semantics.
3392 /// DxgkDdiOPMGetCOPPCompatibleInformation always returns this error if a protected output has OPM semantics.
3393 /// DxgkDdiOPMGetInformation returns this error code if the caller requested COPP-specific information.
3394 /// DxgkDdiOPMConfigureProtectedOutput returns this error when the caller tries to use a COPP-specific command.
3395 GRAPHICS_OPM_PROTECTED_OUTPUT_DOES_NOT_HAVE_COPP_SEMANTICS = 0xC01E051C,
3396 /// 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.
3397 GRAPHICS_OPM_INVALID_INFORMATION_REQUEST = 0xC01E051D,
3398 /// The function failed because an unexpected error occurred inside a display driver.
3399 GRAPHICS_OPM_DRIVER_INTERNAL_ERROR = 0xC01E051E,
3400 /// The DxgkDdiOPMGetCOPPCompatibleInformation, DxgkDdiOPMGetInformation, or DxgkDdiOPMConfigureProtectedOutput function failed.
3401 /// This error is returned only if a protected output has COPP semantics.
3402 /// DxgkDdiOPMGetCOPPCompatibleInformation returns this error code if the caller requested OPM-specific information.
3403 /// DxgkDdiOPMGetInformation always returns this error if a protected output has COPP semantics.
3404 /// DxgkDdiOPMConfigureProtectedOutput returns this error when the caller tries to use an OPM-specific command.
3405 GRAPHICS_OPM_PROTECTED_OUTPUT_DOES_NOT_HAVE_OPM_SEMANTICS = 0xC01E051F,
3406 /// 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.
3407 GRAPHICS_OPM_SIGNALING_NOT_SUPPORTED = 0xC01E0520,
3408 /// 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.
3409 GRAPHICS_OPM_INVALID_CONFIGURATION_REQUEST = 0xC01E0521,
3410 /// The monitor connected to the specified video output does not have an I2C bus.
3411 GRAPHICS_I2C_NOT_SUPPORTED = 0xC01E0580,
3412 /// No device on the I2C bus has the specified address.
3413 GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST = 0xC01E0581,
3414 /// An error occurred while transmitting data to the device on the I2C bus.
3415 GRAPHICS_I2C_ERROR_TRANSMITTING_DATA = 0xC01E0582,
3416 /// An error occurred while receiving data from the device on the I2C bus.
3417 GRAPHICS_I2C_ERROR_RECEIVING_DATA = 0xC01E0583,
3418 /// The monitor does not support the specified VCP code.
3419 GRAPHICS_DDCCI_VCP_NOT_SUPPORTED = 0xC01E0584,
3420 /// The data received from the monitor is invalid.
3421 GRAPHICS_DDCCI_INVALID_DATA = 0xC01E0585,
3422 /// 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.
3423 GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE = 0xC01E0586,
3424 /// 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.
3425 GRAPHICS_DDCCI_INVALID_CAPABILITIES_STRING = 0xC01E0587,
3426 /// An internal error caused an operation to fail.
3427 GRAPHICS_MCA_INTERNAL_ERROR = 0xC01E0588,
3428 /// An operation failed because a DDC/CI message had an invalid value in its command field.
3429 GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND = 0xC01E0589,
3430 /// This error occurred because a DDC/CI message had an invalid value in its length field.
3431 GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH = 0xC01E058A,
3432 /// This error occurred because the value in a DDC/CI message's checksum field did not match the message's computed checksum value.
3433 /// This error implies that the data was corrupted while it was being transmitted from a monitor to a computer.
3434 GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM = 0xC01E058B,
3435 /// This function failed because an invalid monitor handle was passed to it.
3436 GRAPHICS_INVALID_PHYSICAL_MONITOR_HANDLE = 0xC01E058C,
3437 /// The operating system asynchronously destroyed the monitor that corresponds to this handle because the operating system's state changed.
3438 /// This error typically occurs because the monitor PDO associated with this handle was removed or stopped, or a display mode change occurred.
3439 /// A display mode change occurs when Windows sends a WM_DISPLAYCHANGE message to applications.
3440 GRAPHICS_MONITOR_NO_LONGER_EXISTS = 0xC01E058D,
3441 /// This function can be used only if a program is running in the local console session.
3442 /// It cannot be used if a program is running on a remote desktop session or on a terminal server session.
3443 GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED = 0xC01E05E0,
3444 /// This function cannot find an actual GDI display device that corresponds to the specified GDI display device name.
3445 GRAPHICS_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME = 0xC01E05E1,
3446 /// The function failed because the specified GDI display device was not attached to the Windows desktop.
3447 GRAPHICS_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP = 0xC01E05E2,
3448 /// This function does not support GDI mirroring display devices because GDI mirroring display devices do not have any physical monitors associated with them.
3449 GRAPHICS_MIRRORING_DEVICES_NOT_SUPPORTED = 0xC01E05E3,
3450 /// The function failed because an invalid pointer parameter was passed to it.
3451 /// 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.
3452 GRAPHICS_INVALID_POINTER = 0xC01E05E4,
3453 /// This function failed because the GDI device passed to it did not have a monitor associated with it.
3454 GRAPHICS_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE = 0xC01E05E5,
3455 /// An array passed to the function cannot hold all of the data that the function must copy into the array.
3456 GRAPHICS_PARAMETER_ARRAY_TOO_SMALL = 0xC01E05E6,
3457 /// An internal error caused an operation to fail.
3458 GRAPHICS_INTERNAL_ERROR = 0xC01E05E7,
3459 /// The function failed because the current session is changing its type.
3460 /// This function cannot be called when the current session is changing its type.
3461 /// Three types of sessions currently exist: console, disconnected, and remote (RDP or ICA).
3462 GRAPHICS_SESSION_TYPE_CHANGE_IN_PROGRESS = 0xC01E05E8,
3463 /// The volume must be unlocked before it can be used.
3464 FVE_LOCKED_VOLUME = 0xC0210000,
3465 /// The volume is fully decrypted and no key is available.
3466 FVE_NOT_ENCRYPTED = 0xC0210001,
3467 /// The control block for the encrypted volume is not valid.
3468 FVE_BAD_INFORMATION = 0xC0210002,
3469 /// Not enough free space remains on the volume to allow encryption.
3470 FVE_TOO_SMALL = 0xC0210003,
3471 /// The partition cannot be encrypted because the file system is not supported.
3472 FVE_FAILED_WRONG_FS = 0xC0210004,
3473 /// The file system is inconsistent. Run the Check Disk utility.
3474 FVE_FAILED_BAD_FS = 0xC0210005,
3475 /// The file system does not extend to the end of the volume.
3476 FVE_FS_NOT_EXTENDED = 0xC0210006,
3477 /// This operation cannot be performed while a file system is mounted on the volume.
3478 FVE_FS_MOUNTED = 0xC0210007,
3479 /// BitLocker Drive Encryption is not included with this version of Windows.
3480 FVE_NO_LICENSE = 0xC0210008,
3481 /// The requested action was denied by the FVE control engine.
3482 FVE_ACTION_NOT_ALLOWED = 0xC0210009,
3483 /// The data supplied is malformed.
3484 FVE_BAD_DATA = 0xC021000A,
3485 /// The volume is not bound to the system.
3486 FVE_VOLUME_NOT_BOUND = 0xC021000B,
3487 /// The volume specified is not a data volume.
3488 FVE_NOT_DATA_VOLUME = 0xC021000C,
3489 /// A read operation failed while converting the volume.
3490 FVE_CONV_READ_ERROR = 0xC021000D,
3491 /// A write operation failed while converting the volume.
3492 FVE_CONV_WRITE_ERROR = 0xC021000E,
3493 /// The control block for the encrypted volume was updated by another thread. Try again.
3494 FVE_OVERLAPPED_UPDATE = 0xC021000F,
3495 /// The volume encryption algorithm cannot be used on this sector size.
3496 FVE_FAILED_SECTOR_SIZE = 0xC0210010,
3497 /// BitLocker recovery authentication failed.
3498 FVE_FAILED_AUTHENTICATION = 0xC0210011,
3499 /// The volume specified is not the boot operating system volume.
3500 FVE_NOT_OS_VOLUME = 0xC0210012,
3501 /// The BitLocker startup key or recovery password could not be read from external media.
3502 FVE_KEYFILE_NOT_FOUND = 0xC0210013,
3503 /// The BitLocker startup key or recovery password file is corrupt or invalid.
3504 FVE_KEYFILE_INVALID = 0xC0210014,
3505 /// The BitLocker encryption key could not be obtained from the startup key or the recovery password.
3506 FVE_KEYFILE_NO_VMK = 0xC0210015,
3507 /// The TPM is disabled.
3508 FVE_TPM_DISABLED = 0xC0210016,
3509 /// The authorization data for the SRK of the TPM is not zero.
3510 FVE_TPM_SRK_AUTH_NOT_ZERO = 0xC0210017,
3511 /// The system boot information changed or the TPM locked out access to BitLocker encryption keys until the computer is restarted.
3512 FVE_TPM_INVALID_PCR = 0xC0210018,
3513 /// The BitLocker encryption key could not be obtained from the TPM.
3514 FVE_TPM_NO_VMK = 0xC0210019,
3515 /// The BitLocker encryption key could not be obtained from the TPM and PIN.
3516 FVE_PIN_INVALID = 0xC021001A,
3517 /// A boot application hash does not match the hash computed when BitLocker was turned on.
3518 FVE_AUTH_INVALID_APPLICATION = 0xC021001B,
3519 /// The Boot Configuration Data (BCD) settings are not supported or have changed because BitLocker was enabled.
3520 FVE_AUTH_INVALID_CONFIG = 0xC021001C,
3521 /// Boot debugging is enabled. Run Windows Boot Configuration Data Store Editor (bcdedit.exe) to turn it off.
3522 FVE_DEBUGGER_ENABLED = 0xC021001D,
3523 /// The BitLocker encryption key could not be obtained.
3524 FVE_DRY_RUN_FAILED = 0xC021001E,
3525 /// The metadata disk region pointer is incorrect.
3526 FVE_BAD_METADATA_POINTER = 0xC021001F,
3527 /// The backup copy of the metadata is out of date.
3528 FVE_OLD_METADATA_COPY = 0xC0210020,
3529 /// No action was taken because a system restart is required.
3530 FVE_REBOOT_REQUIRED = 0xC0210021,
3531 /// No action was taken because BitLocker Drive Encryption is in RAW access mode.
3532 FVE_RAW_ACCESS = 0xC0210022,
3533 /// BitLocker Drive Encryption cannot enter RAW access mode for this volume.
3534 FVE_RAW_BLOCKED = 0xC0210023,
3535 /// This feature of BitLocker Drive Encryption is not included with this version of Windows.
3536 FVE_NO_FEATURE_LICENSE = 0xC0210026,
3537 /// Group policy does not permit turning off BitLocker Drive Encryption on roaming data volumes.
3538 FVE_POLICY_USER_DISABLE_RDV_NOT_ALLOWED = 0xC0210027,
3539 /// Bitlocker Drive Encryption failed to recover from aborted conversion.
3540 /// This could be due to either all conversion logs being corrupted or the media being write-protected.
3541 FVE_CONV_RECOVERY_FAILED = 0xC0210028,
3542 /// The requested virtualization size is too big.
3543 FVE_VIRTUALIZED_SPACE_TOO_BIG = 0xC0210029,
3544 /// The drive is too small to be protected using BitLocker Drive Encryption.
3545 FVE_VOLUME_TOO_SMALL = 0xC0210030,
3546 /// The callout does not exist.
3547 FWP_CALLOUT_NOT_FOUND = 0xC0220001,
3548 /// The filter condition does not exist.
3549 FWP_CONDITION_NOT_FOUND = 0xC0220002,
3550 /// The filter does not exist.
3551 FWP_FILTER_NOT_FOUND = 0xC0220003,
3552 /// The layer does not exist.
3553 FWP_LAYER_NOT_FOUND = 0xC0220004,
3554 /// The provider does not exist.
3555 FWP_PROVIDER_NOT_FOUND = 0xC0220005,
3556 /// The provider context does not exist.
3557 FWP_PROVIDER_CONTEXT_NOT_FOUND = 0xC0220006,
3558 /// The sublayer does not exist.
3559 FWP_SUBLAYER_NOT_FOUND = 0xC0220007,
3560 /// The object does not exist.
3561 FWP_NOT_FOUND = 0xC0220008,
3562 /// An object with that GUID or LUID already exists.
3563 FWP_ALREADY_EXISTS = 0xC0220009,
3564 /// The object is referenced by other objects and cannot be deleted.
3565 FWP_IN_USE = 0xC022000A,
3566 /// The call is not allowed from within a dynamic session.
3567 FWP_DYNAMIC_SESSION_IN_PROGRESS = 0xC022000B,
3568 /// The call was made from the wrong session and cannot be completed.
3569 FWP_WRONG_SESSION = 0xC022000C,
3570 /// The call must be made from within an explicit transaction.
3571 FWP_NO_TXN_IN_PROGRESS = 0xC022000D,
3572 /// The call is not allowed from within an explicit transaction.
3573 FWP_TXN_IN_PROGRESS = 0xC022000E,
3574 /// The explicit transaction has been forcibly canceled.
3575 FWP_TXN_ABORTED = 0xC022000F,
3576 /// The session has been canceled.
3577 FWP_SESSION_ABORTED = 0xC0220010,
3578 /// The call is not allowed from within a read-only transaction.
3579 FWP_INCOMPATIBLE_TXN = 0xC0220011,
3580 /// The call timed out while waiting to acquire the transaction lock.
3581 FWP_TIMEOUT = 0xC0220012,
3582 /// The collection of network diagnostic events is disabled.
3583 FWP_NET_EVENTS_DISABLED = 0xC0220013,
3584 /// The operation is not supported by the specified layer.
3585 FWP_INCOMPATIBLE_LAYER = 0xC0220014,
3586 /// The call is allowed for kernel-mode callers only.
3587 FWP_KM_CLIENTS_ONLY = 0xC0220015,
3588 /// The call tried to associate two objects with incompatible lifetimes.
3589 FWP_LIFETIME_MISMATCH = 0xC0220016,
3590 /// The object is built-in and cannot be deleted.
3591 FWP_BUILTIN_OBJECT = 0xC0220017,
3592 /// The maximum number of callouts has been reached.
3593 FWP_TOO_MANY_CALLOUTS = 0xC0220018,
3594 /// A notification could not be delivered because a message queue has reached maximum capacity.
3595 FWP_NOTIFICATION_DROPPED = 0xC0220019,
3596 /// The traffic parameters do not match those for the security association context.
3597 FWP_TRAFFIC_MISMATCH = 0xC022001A,
3598 /// The call is not allowed for the current security association state.
3599 FWP_INCOMPATIBLE_SA_STATE = 0xC022001B,
3600 /// A required pointer is null.
3601 FWP_NULL_POINTER = 0xC022001C,
3602 /// An enumerator is not valid.
3603 FWP_INVALID_ENUMERATOR = 0xC022001D,
3604 /// The flags field contains an invalid value.
3605 FWP_INVALID_FLAGS = 0xC022001E,
3606 /// A network mask is not valid.
3607 FWP_INVALID_NET_MASK = 0xC022001F,
3608 /// An FWP_RANGE is not valid.
3609 FWP_INVALID_RANGE = 0xC0220020,
3610 /// The time interval is not valid.
3611 FWP_INVALID_INTERVAL = 0xC0220021,
3612 /// An array that must contain at least one element has a zero length.
3613 FWP_ZERO_LENGTH_ARRAY = 0xC0220022,
3614 /// The displayData.name field cannot be null.
3615 FWP_NULL_DISPLAY_NAME = 0xC0220023,
3616 /// The action type is not one of the allowed action types for a filter.
3617 FWP_INVALID_ACTION_TYPE = 0xC0220024,
3618 /// The filter weight is not valid.
3619 FWP_INVALID_WEIGHT = 0xC0220025,
3620 /// A filter condition contains a match type that is not compatible with the operands.
3621 FWP_MATCH_TYPE_MISMATCH = 0xC0220026,
3622 /// An FWP_VALUE or FWPM_CONDITION_VALUE is of the wrong type.
3623 FWP_TYPE_MISMATCH = 0xC0220027,
3624 /// An integer value is outside the allowed range.
3625 FWP_OUT_OF_BOUNDS = 0xC0220028,
3626 /// A reserved field is nonzero.
3627 FWP_RESERVED = 0xC0220029,
3628 /// A filter cannot contain multiple conditions operating on a single field.
3629 FWP_DUPLICATE_CONDITION = 0xC022002A,
3630 /// A policy cannot contain the same keying module more than once.
3631 FWP_DUPLICATE_KEYMOD = 0xC022002B,
3632 /// The action type is not compatible with the layer.
3633 FWP_ACTION_INCOMPATIBLE_WITH_LAYER = 0xC022002C,
3634 /// The action type is not compatible with the sublayer.
3635 FWP_ACTION_INCOMPATIBLE_WITH_SUBLAYER = 0xC022002D,
3636 /// The raw context or the provider context is not compatible with the layer.
3637 FWP_CONTEXT_INCOMPATIBLE_WITH_LAYER = 0xC022002E,
3638 /// The raw context or the provider context is not compatible with the callout.
3639 FWP_CONTEXT_INCOMPATIBLE_WITH_CALLOUT = 0xC022002F,
3640 /// The authentication method is not compatible with the policy type.
3641 FWP_INCOMPATIBLE_AUTH_METHOD = 0xC0220030,
3642 /// The Diffie-Hellman group is not compatible with the policy type.
3643 FWP_INCOMPATIBLE_DH_GROUP = 0xC0220031,
3644 /// An IKE policy cannot contain an Extended Mode policy.
3645 FWP_EM_NOT_SUPPORTED = 0xC0220032,
3646 /// The enumeration template or subscription will never match any objects.
3647 FWP_NEVER_MATCH = 0xC0220033,
3648 /// The provider context is of the wrong type.
3649 FWP_PROVIDER_CONTEXT_MISMATCH = 0xC0220034,
3650 /// The parameter is incorrect.
3651 FWP_INVALID_PARAMETER = 0xC0220035,
3652 /// The maximum number of sublayers has been reached.
3653 FWP_TOO_MANY_SUBLAYERS = 0xC0220036,
3654 /// The notification function for a callout returned an error.
3655 FWP_CALLOUT_NOTIFICATION_FAILED = 0xC0220037,
3656 /// The IPsec authentication configuration is not compatible with the authentication type.
3657 FWP_INCOMPATIBLE_AUTH_CONFIG = 0xC0220038,
3658 /// The IPsec cipher configuration is not compatible with the cipher type.
3659 FWP_INCOMPATIBLE_CIPHER_CONFIG = 0xC0220039,
3660 /// A policy cannot contain the same auth method more than once.
3661 FWP_DUPLICATE_AUTH_METHOD = 0xC022003C,
3662 /// The TCP/IP stack is not ready.
3663 FWP_TCPIP_NOT_READY = 0xC0220100,
3664 /// The injection handle is being closed by another thread.
3665 FWP_INJECT_HANDLE_CLOSING = 0xC0220101,
3666 /// The injection handle is stale.
3667 FWP_INJECT_HANDLE_STALE = 0xC0220102,
3668 /// The classify cannot be pended.
3669 FWP_CANNOT_PEND = 0xC0220103,
3670 /// The binding to the network interface is being closed.
3671 NDIS_CLOSING = 0xC0230002,
3672 /// An invalid version was specified.
3673 NDIS_BAD_VERSION = 0xC0230004,
3674 /// An invalid characteristics table was used.
3675 NDIS_BAD_CHARACTERISTICS = 0xC0230005,
3676 /// Failed to find the network interface or the network interface is not ready.
3677 NDIS_ADAPTER_NOT_FOUND = 0xC0230006,
3678 /// Failed to open the network interface.
3679 NDIS_OPEN_FAILED = 0xC0230007,
3680 /// The network interface has encountered an internal unrecoverable failure.
3681 NDIS_DEVICE_FAILED = 0xC0230008,
3682 /// The multicast list on the network interface is full.
3683 NDIS_MULTICAST_FULL = 0xC0230009,
3684 /// An attempt was made to add a duplicate multicast address to the list.
3685 NDIS_MULTICAST_EXISTS = 0xC023000A,
3686 /// At attempt was made to remove a multicast address that was never added.
3687 NDIS_MULTICAST_NOT_FOUND = 0xC023000B,
3688 /// The network interface aborted the request.
3689 NDIS_REQUEST_ABORTED = 0xC023000C,
3690 /// The network interface cannot process the request because it is being reset.
3691 NDIS_RESET_IN_PROGRESS = 0xC023000D,
3692 /// An attempt was made to send an invalid packet on a network interface.
3693 NDIS_INVALID_PACKET = 0xC023000F,
3694 /// The specified request is not a valid operation for the target device.
3695 NDIS_INVALID_DEVICE_REQUEST = 0xC0230010,
3696 /// The network interface is not ready to complete this operation.
3697 NDIS_ADAPTER_NOT_READY = 0xC0230011,
3698 /// The length of the buffer submitted for this operation is not valid.
3699 NDIS_INVALID_LENGTH = 0xC0230014,
3700 /// The data used for this operation is not valid.
3701 NDIS_INVALID_DATA = 0xC0230015,
3702 /// The length of the submitted buffer for this operation is too small.
3703 NDIS_BUFFER_TOO_SHORT = 0xC0230016,
3704 /// The network interface does not support this object identifier.
3705 NDIS_INVALID_OID = 0xC0230017,
3706 /// The network interface has been removed.
3707 NDIS_ADAPTER_REMOVED = 0xC0230018,
3708 /// The network interface does not support this media type.
3709 NDIS_UNSUPPORTED_MEDIA = 0xC0230019,
3710 /// An attempt was made to remove a token ring group address that is in use by other components.
3711 NDIS_GROUP_ADDRESS_IN_USE = 0xC023001A,
3712 /// An attempt was made to map a file that cannot be found.
3713 NDIS_FILE_NOT_FOUND = 0xC023001B,
3714 /// An error occurred while NDIS tried to map the file.
3715 NDIS_ERROR_READING_FILE = 0xC023001C,
3716 /// An attempt was made to map a file that is already mapped.
3717 NDIS_ALREADY_MAPPED = 0xC023001D,
3718 /// An attempt to allocate a hardware resource failed because the resource is used by another component.
3719 NDIS_RESOURCE_CONFLICT = 0xC023001E,
3720 /// The I/O operation failed because the network media is disconnected or the wireless access point is out of range.
3721 NDIS_MEDIA_DISCONNECTED = 0xC023001F,
3722 /// The network address used in the request is invalid.
3723 NDIS_INVALID_ADDRESS = 0xC0230022,
3724 /// The offload operation on the network interface has been paused.
3725 NDIS_PAUSED = 0xC023002A,
3726 /// The network interface was not found.
3727 NDIS_INTERFACE_NOT_FOUND = 0xC023002B,
3728 /// The revision number specified in the structure is not supported.
3729 NDIS_UNSUPPORTED_REVISION = 0xC023002C,
3730 /// The specified port does not exist on this network interface.
3731 NDIS_INVALID_PORT = 0xC023002D,
3732 /// The current state of the specified port on this network interface does not support the requested operation.
3733 NDIS_INVALID_PORT_STATE = 0xC023002E,
3734 /// The miniport adapter is in a lower power state.
3735 NDIS_LOW_POWER_STATE = 0xC023002F,
3736 /// The network interface does not support this request.
3737 NDIS_NOT_SUPPORTED = 0xC02300BB,
3738 /// The TCP connection is not offloadable because of a local policy setting.
3739 NDIS_OFFLOAD_POLICY = 0xC023100F,
3740 /// The TCP connection is not offloadable by the Chimney offload target.
3741 NDIS_OFFLOAD_CONNECTION_REJECTED = 0xC0231012,
3742 /// The IP Path object is not in an offloadable state.
3743 NDIS_OFFLOAD_PATH_REJECTED = 0xC0231013,
3744 /// The wireless LAN interface is in auto-configuration mode and does not support the requested parameter change operation.
3745 NDIS_DOT11_AUTO_CONFIG_ENABLED = 0xC0232000,
3746 /// The wireless LAN interface is busy and cannot perform the requested operation.
3747 NDIS_DOT11_MEDIA_IN_USE = 0xC0232001,
3748 /// The wireless LAN interface is power down and does not support the requested operation.
3749 NDIS_DOT11_POWER_STATE_INVALID = 0xC0232002,
3750 /// The list of wake on LAN patterns is full.
3751 NDIS_PM_WOL_PATTERN_LIST_FULL = 0xC0232003,
3752 /// The list of low power protocol offloads is full.
3753 NDIS_PM_PROTOCOL_OFFLOAD_LIST_FULL = 0xC0232004,
3754 /// The SPI in the packet does not match a valid IPsec SA.
3755 IPSEC_BAD_SPI = 0xC0360001,
3756 /// The packet was received on an IPsec SA whose lifetime has expired.
3757 IPSEC_SA_LIFETIME_EXPIRED = 0xC0360002,
3758 /// The packet was received on an IPsec SA that does not match the packet characteristics.
3759 IPSEC_WRONG_SA = 0xC0360003,
3760 /// The packet sequence number replay check failed.
3761 IPSEC_REPLAY_CHECK_FAILED = 0xC0360004,
3762 /// The IPsec header and/or trailer in the packet is invalid.
3763 IPSEC_INVALID_PACKET = 0xC0360005,
3764 /// The IPsec integrity check failed.
3765 IPSEC_INTEGRITY_CHECK_FAILED = 0xC0360006,
3766 /// IPsec dropped a clear text packet.
3767 IPSEC_CLEAR_TEXT_DROP = 0xC0360007,
3768 /// IPsec dropped an incoming ESP packet in authenticated firewall mode. This drop is benign.
3769 IPSEC_AUTH_FIREWALL_DROP = 0xC0360008,
3770 /// IPsec dropped a packet due to DOS throttle.
3771 IPSEC_THROTTLE_DROP = 0xC0360009,
3772 /// IPsec Dos Protection matched an explicit block rule.
3773 IPSEC_DOSP_BLOCK = 0xC0368000,
3774 /// IPsec Dos Protection received an IPsec specific multicast packet which is not allowed.
3775 IPSEC_DOSP_RECEIVED_MULTICAST = 0xC0368001,
3776 /// IPsec Dos Protection received an incorrectly formatted packet.
3777 IPSEC_DOSP_INVALID_PACKET = 0xC0368002,
3778 /// IPsec Dos Protection failed to lookup state.
3779 IPSEC_DOSP_STATE_LOOKUP_FAILED = 0xC0368003,
3780 /// IPsec Dos Protection failed to create state because there are already maximum number of entries allowed by policy.
3781 IPSEC_DOSP_MAX_ENTRIES = 0xC0368004,
3782 /// IPsec Dos Protection received an IPsec negotiation packet for a keying module which is not allowed by policy.
3783 IPSEC_DOSP_KEYMOD_NOT_ALLOWED = 0xC0368005,
3784 /// IPsec Dos Protection failed to create per internal IP ratelimit queue because there is already maximum number of queues allowed by policy.
3785 IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES = 0xC0368006,
3786 /// The system does not support mirrored volumes.
3787 VOLMGR_MIRROR_NOT_SUPPORTED = 0xC038005B,
3788 /// The system does not support RAID-5 volumes.
3789 VOLMGR_RAID5_NOT_SUPPORTED = 0xC038005C,
3790 /// A virtual disk support provider for the specified file was not found.
3791 VIRTDISK_PROVIDER_NOT_FOUND = 0xC03A0014,
3792 /// The specified disk is not a virtual disk.
3793 VIRTDISK_NOT_VIRTUAL_DISK = 0xC03A0015,
3794 /// The chain of virtual hard disks is inaccessible.
3795 /// The process has not been granted access rights to the parent virtual hard disk for the differencing disk.
3796 VHD_PARENT_VHD_ACCESS_DENIED = 0xC03A0016,
3797 /// The chain of virtual hard disks is corrupted.
3798 /// There is a mismatch in the virtual sizes of the parent virtual hard disk and differencing disk.
3799 VHD_CHILD_PARENT_SIZE_MISMATCH = 0xC03A0017,
3800 /// The chain of virtual hard disks is corrupted.
3801 /// A differencing disk is indicated in its own parent chain.
3802 VHD_DIFFERENCING_CHAIN_CYCLE_DETECTED = 0xC03A0018,
3803 /// The chain of virtual hard disks is inaccessible.
3804 /// There was an error opening a virtual hard disk further up the chain.
3805 VHD_DIFFERENCING_CHAIN_ERROR_IN_PARENT = 0xC03A0019,
3806 _,
3807};