JwaNtStatus.pas
资源名称:win32api.zip [点击查看]
上传用户:davidchvip
上传日期:2009-07-28
资源大小:1749k
文件大小:243k
源码类别:
Windows编程
开发平台:
Delphi
- {******************************************************************************}
- { }
- { NT Status Codes API interface Unit for Object Pascal }
- { }
- { Portions created by Microsoft are Copyright (C) 1995-2001 Microsoft }
- { Corporation. All Rights Reserved. }
- { }
- { The original file is: ntstatus.h, released June 2000. The original Pascal }
- { code is: Nt_Status.pas, released December 2000. The initial developer of the }
- { Pascal code is Marcel van Brakel (brakelm@chello.nl). }
- { }
- { Portions created by Marcel van Brakel are Copyright (C) 1999-2001 }
- { Marcel van Brakel. All Rights Reserved. }
- { }
- { Obtained through: Joint Endeavour of Delphi Innovators (Project JEDI) }
- { }
- { You may retrieve the latest version of this file at the Project JEDI home }
- { page, located at http://delphi-jedi.org or my personal homepage located at }
- { http://members.chello.nl/m.vanbrakel2 }
- { }
- { The contents of this file are used with permission, subject to the Mozilla }
- { Public License Version 1.1 (the "License"); you may not use this file except }
- { in compliance with the License. You may obtain a copy of the License at }
- { http://www.mozilla.org/MPL/MPL-1.1.html }
- { }
- { Software distributed under the License is distributed on an "AS IS" basis, }
- { WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for }
- { the specific language governing rights and limitations under the License. }
- { }
- { Alternatively, the contents of this file may be used under the terms of the }
- { GNU Lesser General Public License (the "LGPL License"), in which case the }
- { provisions of the LGPL License are applicable instead of those above. }
- { If you wish to allow use of your version of this file only under the terms }
- { of the LGPL License and not to allow others to use your version of this file }
- { under the MPL, indicate your decision by deleting the provisions above and }
- { replace them with the notice and other provisions required by the LGPL }
- { License. If you do not delete the provisions above, a recipient may use }
- { your version of this file under either the MPL or the LGPL License. }
- { }
- { For more information about the LGPL: http://www.gnu.org/copyleft/lesser.html }
- { }
- {******************************************************************************}
- unit JwaNtStatus;
- {$WEAKPACKAGEUNIT}
- {$HPPEMIT ''}
- {$HPPEMIT '#include "ntstatus.h"'}
- {$HPPEMIT ''}
- {$I WINDEFINES.INC}
- interface
- uses
- JwaWinType;
- /////////////////////////////////////////////////////////////////////////
- //
- // Standard Success values
- //
- //
- /////////////////////////////////////////////////////////////////////////
- //
- // The success status codes 0 - 63 are reserved for wait completion status.
- // FacilityCodes 0x5 - 0xF have been allocated by various drivers.
- //
- const
- STATUS_SUCCESS = NTSTATUS($00000000); // ntsubauth
- {$EXTERNALSYM STATUS_SUCCESS}
- //
- // Values are 32 bit values layed out as follows:
- //
- // 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
- // 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
- // +---+-+-+-----------------------+-------------------------------+
- // |Sev|C|R| Facility | Code |
- // +---+-+-+-----------------------+-------------------------------+
- //
- // where
- //
- // Sev - is the severity code
- //
- // 00 - Success
- // 01 - Informational
- // 10 - Warning
- // 11 - Error
- //
- // C - is the Customer code flag
- //
- // R - is a reserved bit
- //
- // Facility - is the facility code
- //
- // Code - is the facility's status code
- //
- //
- // Define the facility codes
- //
- FACILITY_USB_ERROR_CODE = $10;
- {$EXTERNALSYM FACILITY_USB_ERROR_CODE}
- FACILITY_TERMINAL_SERVER = $A;
- {$EXTERNALSYM FACILITY_TERMINAL_SERVER}
- FACILITY_RPC_STUBS = $3;
- {$EXTERNALSYM FACILITY_RPC_STUBS}
- FACILITY_RPC_RUNTIME = $2;
- {$EXTERNALSYM FACILITY_RPC_RUNTIME}
- FACILITY_IO_ERROR_CODE = $4;
- {$EXTERNALSYM FACILITY_IO_ERROR_CODE}
- FACILITY_HID_ERROR_CODE = $11;
- {$EXTERNALSYM FACILITY_HID_ERROR_CODE}
- FACILITY_FIREWIRE_ERROR_CODE = $12;
- {$EXTERNALSYM FACILITY_FIREWIRE_ERROR_CODE}
- FACILITY_DEBUGGER = $1;
- {$EXTERNALSYM FACILITY_DEBUGGER}
- FACILITY_CLUSTER_ERROR_CODE = $13;
- {$EXTERNALSYM FACILITY_CLUSTER_ERROR_CODE}
- FACILITY_ACPI_ERROR_CODE = $14;
- {$EXTERNALSYM FACILITY_ACPI_ERROR_CODE}
- //
- // Define the severity codes
- //
- STATUS_SEVERITY_WARNING = $2;
- {$EXTERNALSYM STATUS_SEVERITY_WARNING}
- STATUS_SEVERITY_SUCCESS = $0;
- {$EXTERNALSYM STATUS_SEVERITY_SUCCESS}
- STATUS_SEVERITY_INFORMATIONAL = $1;
- {$EXTERNALSYM STATUS_SEVERITY_INFORMATIONAL}
- STATUS_SEVERITY_ERROR = $3;
- {$EXTERNALSYM STATUS_SEVERITY_ERROR}
- //
- // MessageId: STATUS_WAIT_0
- //
- // MessageText:
- //
- // STATUS_WAIT_0
- //
- STATUS_WAIT_0 = NTSTATUS($00000000); // winnt
- {$EXTERNALSYM STATUS_WAIT_0}
- //
- // MessageId: STATUS_WAIT_1
- //
- // MessageText:
- //
- // STATUS_WAIT_1
- //
- STATUS_WAIT_1 = NTSTATUS($00000001);
- {$EXTERNALSYM STATUS_WAIT_1}
- //
- // MessageId: STATUS_WAIT_2
- //
- // MessageText:
- //
- // STATUS_WAIT_2
- //
- STATUS_WAIT_2 = NTSTATUS($00000002);
- {$EXTERNALSYM STATUS_WAIT_2}
- //
- // MessageId: STATUS_WAIT_3
- //
- // MessageText:
- //
- // STATUS_WAIT_3
- //
- STATUS_WAIT_3 = NTSTATUS($00000003);
- {$EXTERNALSYM STATUS_WAIT_3}
- //
- // MessageId: STATUS_WAIT_63
- //
- // MessageText:
- //
- // STATUS_WAIT_63
- //
- STATUS_WAIT_63 = NTSTATUS($0000003F);
- {$EXTERNALSYM STATUS_WAIT_63}
- //
- // The success status codes 128 - 191 are reserved for wait completion
- // status with an abandoned mutant object.
- //
- STATUS_ABANDONED = NTSTATUS($00000080);
- {$EXTERNALSYM STATUS_ABANDONED}
- //
- // MessageId: STATUS_ABANDONED_WAIT_0
- //
- // MessageText:
- //
- // STATUS_ABANDONED_WAIT_0
- //
- STATUS_ABANDONED_WAIT_0 = NTSTATUS($00000080); // winnt
- {$EXTERNALSYM STATUS_ABANDONED_WAIT_0}
- //
- // MessageId: STATUS_ABANDONED_WAIT_63
- //
- // MessageText:
- //
- // STATUS_ABANDONED_WAIT_63
- //
- STATUS_ABANDONED_WAIT_63 = NTSTATUS($000000BF);
- {$EXTERNALSYM STATUS_ABANDONED_WAIT_63}
- //
- // The success status codes 256, 257, 258, and 258 are reserved for
- // User APC, Kernel APC, Alerted, and Timeout.
- //
- //
- // MessageId: STATUS_USER_APC
- //
- // MessageText:
- //
- // STATUS_USER_APC
- //
- STATUS_USER_APC = NTSTATUS($000000C0); // winnt
- {$EXTERNALSYM STATUS_USER_APC}
- //
- // MessageId: STATUS_KERNEL_APC
- //
- // MessageText:
- //
- // STATUS_KERNEL_APC
- //
- STATUS_KERNEL_APC = NTSTATUS($00000100);
- {$EXTERNALSYM STATUS_KERNEL_APC}
- //
- // MessageId: STATUS_ALERTED
- //
- // MessageText:
- //
- // STATUS_ALERTED
- //
- STATUS_ALERTED = NTSTATUS($00000101);
- {$EXTERNALSYM STATUS_ALERTED}
- //
- // MessageId: STATUS_TIMEOUT
- //
- // MessageText:
- //
- // STATUS_TIMEOUT
- //
- STATUS_TIMEOUT = NTSTATUS($00000102); // winnt
- {$EXTERNALSYM STATUS_TIMEOUT}
- //
- // MessageId: STATUS_PENDING
- //
- // MessageText:
- //
- // The operation that was requested is pending completion.
- //
- STATUS_PENDING = NTSTATUS($00000103); // winnt
- {$EXTERNALSYM STATUS_PENDING}
- //
- // MessageId: STATUS_REPARSE
- //
- // MessageText:
- //
- // A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link.
- //
- STATUS_REPARSE = NTSTATUS($00000104);
- {$EXTERNALSYM STATUS_REPARSE}
- //
- // MessageId: STATUS_MORE_ENTRIES
- //
- // MessageText:
- //
- // Returned by enumeration APIs to indicate more information is available to successive calls.
- //
- STATUS_MORE_ENTRIES = NTSTATUS($00000105);
- {$EXTERNALSYM STATUS_MORE_ENTRIES}
- //
- // MessageId: STATUS_NOT_ALL_ASSIGNED
- //
- // MessageText:
- //
- // Indicates not all privileges referenced are assigned to the caller.
- // This allows, for example, all privileges to be disabled without having to know exactly which privileges are assigned.
- //
- STATUS_NOT_ALL_ASSIGNED = NTSTATUS($00000106);
- {$EXTERNALSYM STATUS_NOT_ALL_ASSIGNED}
- //
- // MessageId: STATUS_SOME_NOT_MAPPED
- //
- // MessageText:
- //
- // Some of the information to be translated has not been translated.
- //
- STATUS_SOME_NOT_MAPPED = NTSTATUS($00000107);
- {$EXTERNALSYM STATUS_SOME_NOT_MAPPED}
- //
- // MessageId: STATUS_OPLOCK_BREAK_IN_PROGRESS
- //
- // MessageText:
- //
- // An open/create operation completed while an oplock break is underway.
- //
- STATUS_OPLOCK_BREAK_IN_PROGRESS = NTSTATUS($00000108);
- {$EXTERNALSYM STATUS_OPLOCK_BREAK_IN_PROGRESS}
- //
- // MessageId: STATUS_VOLUME_MOUNTED
- //
- // MessageText:
- //
- // A new volume has been mounted by a file system.
- //
- STATUS_VOLUME_MOUNTED = NTSTATUS($00000109);
- {$EXTERNALSYM STATUS_VOLUME_MOUNTED}
- //
- // MessageId: STATUS_RXACT_COMMITTED
- //
- // MessageText:
- //
- // This success level status indicates that the transaction state already exists for the registry sub-tree,
- // but that a transaction commit was previously aborted.
- // The commit has now been completed.
- //
- STATUS_RXACT_COMMITTED = NTSTATUS($0000010A);
- {$EXTERNALSYM STATUS_RXACT_COMMITTED}
- //
- // MessageId: STATUS_NOTIFY_CLEANUP
- //
- // MessageText:
- //
- // This indicates that a notify change request has been completed due to closing the handle
- // which made the notify change request.
- //
- STATUS_NOTIFY_CLEANUP = NTSTATUS($0000010B);
- {$EXTERNALSYM STATUS_NOTIFY_CLEANUP}
- //
- // MessageId: STATUS_NOTIFY_ENUM_DIR
- //
- // MessageText:
- //
- // This indicates that a notify change request is being completed and that the information
- // is not being returned in the caller's buffer.
- // The caller now needs to enumerate the files to find the changes.
- //
- STATUS_NOTIFY_ENUM_DIR = NTSTATUS($0000010C);
- {$EXTERNALSYM STATUS_NOTIFY_ENUM_DIR}
- //
- // MessageId: STATUS_NO_QUOTAS_FOR_ACCOUNT
- //
- // MessageText:
- //
- // {No Quotas}
- // No system quota limits are specifically set for this account.
- //
- STATUS_NO_QUOTAS_FOR_ACCOUNT = NTSTATUS($0000010D);
- {$EXTERNALSYM STATUS_NO_QUOTAS_FOR_ACCOUNT}
- //
- // MessageId: STATUS_PRIMARY_TRANSPORT_CONNECT_FAILED
- //
- // MessageText:
- //
- // {Connect Failure on Primary Transport}
- // An attempt was made to connect to the remote server %hs on the primary transport, but the connection failed.
- // The computer WAS able to connect on a secondary transport.
- //
- STATUS_PRIMARY_TRANSPORT_CONNECT_FAILED = NTSTATUS($0000010E);
- {$EXTERNALSYM STATUS_PRIMARY_TRANSPORT_CONNECT_FAILED}
- //
- // MessageId: STATUS_PAGE_FAULT_TRANSITION
- //
- // MessageText:
- //
- // Page fault was a transition fault.
- //
- STATUS_PAGE_FAULT_TRANSITION = NTSTATUS($00000110);
- {$EXTERNALSYM STATUS_PAGE_FAULT_TRANSITION}
- //
- // MessageId: STATUS_PAGE_FAULT_DEMAND_ZERO
- //
- // MessageText:
- //
- // Page fault was a demand zero fault.
- //
- STATUS_PAGE_FAULT_DEMAND_ZERO = NTSTATUS($00000111);
- {$EXTERNALSYM STATUS_PAGE_FAULT_DEMAND_ZERO}
- //
- // MessageId: STATUS_PAGE_FAULT_COPY_ON_WRITE
- //
- // MessageText:
- //
- // Page fault was a demand zero fault.
- //
- STATUS_PAGE_FAULT_COPY_ON_WRITE = NTSTATUS($00000112);
- {$EXTERNALSYM STATUS_PAGE_FAULT_COPY_ON_WRITE}
- //
- // MessageId: STATUS_PAGE_FAULT_GUARD_PAGE
- //
- // MessageText:
- //
- // Page fault was a demand zero fault.
- //
- STATUS_PAGE_FAULT_GUARD_PAGE = NTSTATUS($00000113);
- {$EXTERNALSYM STATUS_PAGE_FAULT_GUARD_PAGE}
- //
- // MessageId: STATUS_PAGE_FAULT_PAGING_FILE
- //
- // MessageText:
- //
- // Page fault was satisfied by reading from a secondary storage device.
- //
- STATUS_PAGE_FAULT_PAGING_FILE = NTSTATUS($00000114);
- {$EXTERNALSYM STATUS_PAGE_FAULT_PAGING_FILE}
- //
- // MessageId: STATUS_CACHE_PAGE_LOCKED
- //
- // MessageText:
- //
- // Cached page was locked during operation.
- //
- STATUS_CACHE_PAGE_LOCKED = NTSTATUS($00000115);
- {$EXTERNALSYM STATUS_CACHE_PAGE_LOCKED}
- //
- // MessageId: STATUS_CRASH_DUMP
- //
- // MessageText:
- //
- // Crash dump exists in paging file.
- //
- STATUS_CRASH_DUMP = NTSTATUS($00000116);
- {$EXTERNALSYM STATUS_CRASH_DUMP}
- //
- // MessageId: STATUS_BUFFER_ALL_ZEROS
- //
- // MessageText:
- //
- // Specified buffer contains all zeros.
- //
- STATUS_BUFFER_ALL_ZEROS = NTSTATUS($00000117);
- {$EXTERNALSYM STATUS_BUFFER_ALL_ZEROS}
- //
- // MessageId: STATUS_REPARSE_OBJECT
- //
- // MessageText:
- //
- // A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link.
- //
- STATUS_REPARSE_OBJECT = NTSTATUS($00000118);
- {$EXTERNALSYM STATUS_REPARSE_OBJECT}
- //
- // MessageId: STATUS_RESOURCE_REQUIREMENTS_CHANGED
- //
- // MessageText:
- //
- // The device has succeeded a query-stop and its resource requirements have changed.
- //
- STATUS_RESOURCE_REQUIREMENTS_CHANGED = NTSTATUS($00000119);
- {$EXTERNALSYM STATUS_RESOURCE_REQUIREMENTS_CHANGED}
- //
- // MessageId: STATUS_TRANSLATION_COMPLETE
- //
- // MessageText:
- //
- // The translator has translated these resources into the global space and no further translations should be performed.
- //
- STATUS_TRANSLATION_COMPLETE = NTSTATUS($00000120);
- {$EXTERNALSYM STATUS_TRANSLATION_COMPLETE}
- //
- // MessageId: STATUS_DS_MEMBERSHIP_EVALUATED_LOCALLY
- //
- // MessageText:
- //
- // The directory service evaluated group memberships locally, as it was unable to contact a global catalog server.
- //
- STATUS_DS_MEMBERSHIP_EVALUATED_LOCALLY = NTSTATUS($00000121);
- {$EXTERNALSYM STATUS_DS_MEMBERSHIP_EVALUATED_LOCALLY}
- //
- // MessageId: DBG_EXCEPTION_HANDLED
- //
- // MessageText:
- //
- // Debugger handled exception
- //
- DBG_EXCEPTION_HANDLED = NTSTATUS($00010001); // windbgkd
- {$EXTERNALSYM DBG_EXCEPTION_HANDLED}
- //
- // MessageId: DBG_CONTINUE
- //
- // MessageText:
- //
- // Debugger continued
- //
- DBG_CONTINUE = NTSTATUS($00010002); // winnt
- {$EXTERNALSYM DBG_CONTINUE}
- /////////////////////////////////////////////////////////////////////////
- //
- // Standard Information values
- //
- /////////////////////////////////////////////////////////////////////////
- //
- // MessageId: STATUS_OBJECT_NAME_EXISTS
- //
- // MessageText:
- //
- // {Object Exists}
- // An attempt was made to create an object and the object name already existed.
- //
- STATUS_OBJECT_NAME_EXISTS = NTSTATUS($40000000);
- {$EXTERNALSYM STATUS_OBJECT_NAME_EXISTS}
- //
- // MessageId: STATUS_THREAD_WAS_SUSPENDED
- //
- // MessageText:
- //
- // {Thread Suspended}
- // A thread termination occurred while the thread was suspended. The thread was resumed, and termination proceeded.
- //
- STATUS_THREAD_WAS_SUSPENDED = NTSTATUS($40000001);
- {$EXTERNALSYM STATUS_THREAD_WAS_SUSPENDED}
- //
- // MessageId: STATUS_WORKING_SET_LIMIT_RANGE
- //
- // MessageText:
- //
- // {Working Set Range Error}
- // An attempt was made to set the working set minimum or maximum to values which are outside of the allowable range.
- //
- STATUS_WORKING_SET_LIMIT_RANGE = NTSTATUS($40000002);
- {$EXTERNALSYM STATUS_WORKING_SET_LIMIT_RANGE}
- //
- // MessageId: STATUS_IMAGE_NOT_AT_BASE
- //
- // MessageText:
- //
- // {Image Relocated}
- // An image file could not be mapped at the address specified in the image file. Local fixups must be performed on this image.
- //
- STATUS_IMAGE_NOT_AT_BASE = NTSTATUS($40000003);
- {$EXTERNALSYM STATUS_IMAGE_NOT_AT_BASE}
- //
- // MessageId: STATUS_RXACT_STATE_CREATED
- //
- // MessageText:
- //
- // This informational level status indicates that a specified registry sub-tree transaction state did not yet exist and had to be created.
- //
- STATUS_RXACT_STATE_CREATED = NTSTATUS($40000004);
- {$EXTERNALSYM STATUS_RXACT_STATE_CREATED}
- //
- // MessageId: STATUS_SEGMENT_NOTIFICATION
- //
- // MessageText:
- //
- // {Segment Load}
- // A virtual DOS machine (VDM) is loading, unloading, or moving an MS-DOS or Win16 program segment image.
- // An exception is raised so a debugger can load, unload or track symbols and breakpoints within these 16-bit segments.
- //
- STATUS_SEGMENT_NOTIFICATION = NTSTATUS($40000005); // winnt
- {$EXTERNALSYM STATUS_SEGMENT_NOTIFICATION}
- //
- // MessageId: STATUS_LOCAL_USER_SESSION_KEY
- //
- // MessageText:
- //
- // {Local Session Key}
- // A user session key was requested for a local RPC connection. The session key returned is a constant value and not unique to this connection.
- //
- STATUS_LOCAL_USER_SESSION_KEY = NTSTATUS($40000006);
- {$EXTERNALSYM STATUS_LOCAL_USER_SESSION_KEY}
- //
- // MessageId: STATUS_BAD_CURRENT_DIRECTORY
- //
- // MessageText:
- //
- // {Invalid Current Directory}
- // The process cannot switch to the startup current directory %hs.
- // Select OK to set current directory to %hs, or select CANCEL to exit.
- //
- STATUS_BAD_CURRENT_DIRECTORY = NTSTATUS($40000007);
- {$EXTERNALSYM STATUS_BAD_CURRENT_DIRECTORY}
- //
- // MessageId: STATUS_SERIAL_MORE_WRITES
- //
- // MessageText:
- //
- // {Serial IOCTL Complete}
- // A serial I/O operation was completed by another write to a serial port.
- // (The IOCTL_SERIAL_XOFF_COUNTER reached zero.)
- //
- STATUS_SERIAL_MORE_WRITES = NTSTATUS($40000008);
- {$EXTERNALSYM STATUS_SERIAL_MORE_WRITES}
- //
- // MessageId: STATUS_REGISTRY_RECOVERED
- //
- // MessageText:
- //
- // {Registry Recovery}
- // One of the files containing the system's Registry data had to be recovered by use of a log or alternate copy.
- // The recovery was successful.
- //
- STATUS_REGISTRY_RECOVERED = NTSTATUS($40000009);
- {$EXTERNALSYM STATUS_REGISTRY_RECOVERED}
- //
- // MessageId: STATUS_FT_READ_RECOVERY_FROM_BACKUP
- //
- // MessageText:
- //
- // {Redundant Read}
- // To satisfy a read request, the NT fault-tolerant file system successfully read the requested data from a redundant copy.
- // This was done because the file system encountered a failure on a member of the fault-tolerant volume,
- // but was unable to reassign the failing area of the device.
- //
- STATUS_FT_READ_RECOVERY_FROM_BACKUP = NTSTATUS($4000000A);
- {$EXTERNALSYM STATUS_FT_READ_RECOVERY_FROM_BACKUP}
- //
- // MessageId: STATUS_FT_WRITE_RECOVERY
- //
- // MessageText:
- //
- // {Redundant Write}
- // To satisfy a write request, the NT fault-tolerant file system successfully wrote a redundant copy of the information.
- // This was done because the file system encountered a failure on a member of the fault-tolerant volume,
- // but was not able to reassign the failing area of the device.
- //
- STATUS_FT_WRITE_RECOVERY = NTSTATUS($4000000B);
- {$EXTERNALSYM STATUS_FT_WRITE_RECOVERY}
- //
- // MessageId: STATUS_SERIAL_COUNTER_TIMEOUT
- //
- // MessageText:
- //
- // {Serial IOCTL Timeout}
- // A serial I/O operation completed because the time-out period expired.
- // (The IOCTL_SERIAL_XOFF_COUNTER had not reached zero.)
- //
- STATUS_SERIAL_COUNTER_TIMEOUT = NTSTATUS($4000000C);
- {$EXTERNALSYM STATUS_SERIAL_COUNTER_TIMEOUT}
- //
- // MessageId: STATUS_NULL_LM_PASSWORD
- //
- // MessageText:
- //
- // {Password Too Complex}
- // The Windows password is too complex to be converted to a LAN Manager password.
- // The LAN Manager password returned is a NULL string.
- //
- STATUS_NULL_LM_PASSWORD = NTSTATUS($4000000D);
- {$EXTERNALSYM STATUS_NULL_LM_PASSWORD}
- //
- // MessageId: STATUS_IMAGE_MACHINE_TYPE_MISMATCH
- //
- // MessageText:
- //
- // {Machine Type Mismatch}
- // The image file %hs is valid, but is for a machine type other than the current machine. Select OK to continue, or CANCEL to fail the DLL load.
- //
- STATUS_IMAGE_MACHINE_TYPE_MISMATCH = NTSTATUS($4000000E);
- {$EXTERNALSYM STATUS_IMAGE_MACHINE_TYPE_MISMATCH}
- //
- // MessageId: STATUS_RECEIVE_PARTIAL
- //
- // MessageText:
- //
- // {Partial Data Received}
- // The network transport returned partial data to its client. The remaining data will be sent later.
- //
- STATUS_RECEIVE_PARTIAL = NTSTATUS($4000000F);
- {$EXTERNALSYM STATUS_RECEIVE_PARTIAL}
- //
- // MessageId: STATUS_RECEIVE_EXPEDITED
- //
- // MessageText:
- //
- // {Expedited Data Received}
- // The network transport returned data to its client that was marked as expedited by the remote system.
- //
- STATUS_RECEIVE_EXPEDITED = NTSTATUS($40000010);
- {$EXTERNALSYM STATUS_RECEIVE_EXPEDITED}
- //
- // MessageId: STATUS_RECEIVE_PARTIAL_EXPEDITED
- //
- // MessageText:
- //
- // {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.
- //
- STATUS_RECEIVE_PARTIAL_EXPEDITED = NTSTATUS($40000011);
- {$EXTERNALSYM STATUS_RECEIVE_PARTIAL_EXPEDITED}
- //
- // MessageId: STATUS_EVENT_DONE
- //
- // MessageText:
- //
- // {TDI Event Done}
- // The TDI indication has completed successfully.
- //
- STATUS_EVENT_DONE = NTSTATUS($40000012);
- {$EXTERNALSYM STATUS_EVENT_DONE}
- //
- // MessageId: STATUS_EVENT_PENDING
- //
- // MessageText:
- //
- // {TDI Event Pending}
- // The TDI indication has entered the pending state.
- //
- STATUS_EVENT_PENDING = NTSTATUS($40000013);
- {$EXTERNALSYM STATUS_EVENT_PENDING}
- //
- // MessageId: STATUS_CHECKING_FILE_SYSTEM
- //
- // MessageText:
- //
- // Checking file system on %wZ
- //
- STATUS_CHECKING_FILE_SYSTEM = NTSTATUS($40000014);
- {$EXTERNALSYM STATUS_CHECKING_FILE_SYSTEM}
- //
- // MessageId: STATUS_FATAL_APP_EXIT
- //
- // MessageText:
- //
- // {Fatal Application Exit}
- // %hs
- //
- STATUS_FATAL_APP_EXIT = NTSTATUS($40000015);
- {$EXTERNALSYM STATUS_FATAL_APP_EXIT}
- //
- // MessageId: STATUS_PREDEFINED_HANDLE
- //
- // MessageText:
- //
- // The specified registry key is referenced by a predefined handle.
- //
- STATUS_PREDEFINED_HANDLE = NTSTATUS($40000016);
- {$EXTERNALSYM STATUS_PREDEFINED_HANDLE}
- //
- // MessageId: STATUS_WAS_UNLOCKED
- //
- // MessageText:
- //
- // {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.
- //
- STATUS_WAS_UNLOCKED = NTSTATUS($40000017);
- {$EXTERNALSYM STATUS_WAS_UNLOCKED}
- //
- // MessageId: STATUS_SERVICE_NOTIFICATION
- //
- // MessageText:
- //
- // %hs
- //
- STATUS_SERVICE_NOTIFICATION = NTSTATUS($40000018);
- {$EXTERNALSYM STATUS_SERVICE_NOTIFICATION}
- //
- // MessageId: STATUS_WAS_LOCKED
- //
- // MessageText:
- //
- // {Page Locked}
- // One of the pages to lock was already locked.
- //
- STATUS_WAS_LOCKED = NTSTATUS($40000019);
- {$EXTERNALSYM STATUS_WAS_LOCKED}
- //
- // MessageId: STATUS_LOG_HARD_ERROR
- //
- // MessageText:
- //
- // Application popup: %1 : %2
- //
- STATUS_LOG_HARD_ERROR = NTSTATUS($4000001A);
- {$EXTERNALSYM STATUS_LOG_HARD_ERROR}
- //
- // MessageId: STATUS_ALREADY_WIN32
- //
- // MessageText:
- //
- // STATUS_ALREADY_WIN32
- //
- STATUS_ALREADY_WIN32 = NTSTATUS($4000001B);
- {$EXTERNALSYM STATUS_ALREADY_WIN32}
- //
- // MessageId: STATUS_WX86_UNSIMULATE
- //
- // MessageText:
- //
- // Exception status code used by Win32 x86 emulation subsystem.
- //
- STATUS_WX86_UNSIMULATE = NTSTATUS($4000001C);
- {$EXTERNALSYM STATUS_WX86_UNSIMULATE}
- //
- // MessageId: STATUS_WX86_CONTINUE
- //
- // MessageText:
- //
- // Exception status code used by Win32 x86 emulation subsystem.
- //
- STATUS_WX86_CONTINUE = NTSTATUS($4000001D);
- {$EXTERNALSYM STATUS_WX86_CONTINUE}
- //
- // MessageId: STATUS_WX86_SINGLE_STEP
- //
- // MessageText:
- //
- // Exception status code used by Win32 x86 emulation subsystem.
- //
- STATUS_WX86_SINGLE_STEP = NTSTATUS($4000001E);
- {$EXTERNALSYM STATUS_WX86_SINGLE_STEP}
- //
- // MessageId: STATUS_WX86_BREAKPOINT
- //
- // MessageText:
- //
- // Exception status code used by Win32 x86 emulation subsystem.
- //
- STATUS_WX86_BREAKPOINT = NTSTATUS($4000001F);
- {$EXTERNALSYM STATUS_WX86_BREAKPOINT}
- //
- // MessageId: STATUS_WX86_EXCEPTION_CONTINUE
- //
- // MessageText:
- //
- // Exception status code used by Win32 x86 emulation subsystem.
- //
- STATUS_WX86_EXCEPTION_CONTINUE = NTSTATUS($40000020);
- {$EXTERNALSYM STATUS_WX86_EXCEPTION_CONTINUE}
- //
- // MessageId: STATUS_WX86_EXCEPTION_LASTCHANCE
- //
- // MessageText:
- //
- // Exception status code used by Win32 x86 emulation subsystem.
- //
- STATUS_WX86_EXCEPTION_LASTCHANCE = NTSTATUS($40000021);
- {$EXTERNALSYM STATUS_WX86_EXCEPTION_LASTCHANCE}
- //
- // MessageId: STATUS_WX86_EXCEPTION_CHAIN
- //
- // MessageText:
- //
- // Exception status code used by Win32 x86 emulation subsystem.
- //
- STATUS_WX86_EXCEPTION_CHAIN = NTSTATUS($40000022);
- {$EXTERNALSYM STATUS_WX86_EXCEPTION_CHAIN}
- //
- // MessageId: STATUS_IMAGE_MACHINE_TYPE_MISMATCH_EXE
- //
- // MessageText:
- //
- // {Machine Type Mismatch}
- // The image file %hs is valid, but is for a machine type other than the current machine.
- //
- STATUS_IMAGE_MACHINE_TYPE_MISMATCH_EXE = NTSTATUS($40000023);
- {$EXTERNALSYM STATUS_IMAGE_MACHINE_TYPE_MISMATCH_EXE}
- //
- // MessageId: STATUS_NO_YIELD_PERFORMED
- //
- // MessageText:
- //
- // A yield execution was performed and no thread was available to run.
- //
- STATUS_NO_YIELD_PERFORMED = NTSTATUS($40000024);
- {$EXTERNALSYM STATUS_NO_YIELD_PERFORMED}
- //
- // MessageId: STATUS_TIMER_RESUME_IGNORED
- //
- // MessageText:
- //
- // The resumable flag to a timer API was ignored.
- //
- STATUS_TIMER_RESUME_IGNORED = NTSTATUS($40000025);
- {$EXTERNALSYM STATUS_TIMER_RESUME_IGNORED}
- //
- // MessageId: STATUS_ARBITRATION_UNHANDLED
- //
- // MessageText:
- //
- // The arbiter has deferred arbitration of these resources to its parent
- //
- STATUS_ARBITRATION_UNHANDLED = NTSTATUS($40000026);
- {$EXTERNALSYM STATUS_ARBITRATION_UNHANDLED}
- //
- // MessageId: STATUS_CARDBUS_NOT_SUPPORTED
- //
- // MessageText:
- //
- // The device "%hs" has detected a CardBus card in its slot, but the firmware on this system is not configured to allow the CardBus controller to be run in CardBus mode.
- // The operating system will currently accept only 16-bit (R2) pc-cards on this controller.
- //
- STATUS_CARDBUS_NOT_SUPPORTED = NTSTATUS($40000027);
- {$EXTERNALSYM STATUS_CARDBUS_NOT_SUPPORTED}
- //
- // MessageId: STATUS_WX86_CREATEWX86TIB
- //
- // MessageText:
- //
- // Exception status code used by Win32 x86 emulation subsystem.
- //
- STATUS_WX86_CREATEWX86TIB = NTSTATUS($40000028);
- {$EXTERNALSYM STATUS_WX86_CREATEWX86TIB}
- //
- // MessageId: STATUS_MP_PROCESSOR_MISMATCH
- //
- // MessageText:
- //
- // The CPUs in this multiprocessor system are not all the same revision level. To use all processors the operating system restricts itself to the features of the least capable processor in the system. Should problems occur with this system, contact the CPU manufacturer to see if this mix of processors is supported.
- //
- STATUS_MP_PROCESSOR_MISMATCH = NTSTATUS($40000029);
- {$EXTERNALSYM STATUS_MP_PROCESSOR_MISMATCH}
- //
- // MessageId: DBG_REPLY_LATER
- //
- // MessageText:
- //
- // Debugger will reply later.
- //
- DBG_REPLY_LATER = NTSTATUS($40010001);
- {$EXTERNALSYM DBG_REPLY_LATER}
- //
- // MessageId: DBG_UNABLE_TO_PROVIDE_HANDLE
- //
- // MessageText:
- //
- // Debugger can not provide handle.
- //
- DBG_UNABLE_TO_PROVIDE_HANDLE = NTSTATUS($40010002);
- {$EXTERNALSYM DBG_UNABLE_TO_PROVIDE_HANDLE}
- //
- // MessageId: DBG_TERMINATE_THREAD
- //
- // MessageText:
- //
- // Debugger terminated thread.
- //
- DBG_TERMINATE_THREAD = NTSTATUS($40010003); // winnt
- {$EXTERNALSYM DBG_TERMINATE_THREAD}
- //
- // MessageId: DBG_TERMINATE_PROCESS
- //
- // MessageText:
- //
- // Debugger terminated process.
- //
- DBG_TERMINATE_PROCESS = NTSTATUS($40010004); // winnt
- {$EXTERNALSYM DBG_TERMINATE_PROCESS}
- //
- // MessageId: DBG_CONTROL_C
- //
- // MessageText:
- //
- // Debugger got control C.
- //
- DBG_CONTROL_C = NTSTATUS($40010005); // winnt
- {$EXTERNALSYM DBG_CONTROL_C}
- //
- // MessageId: DBG_PRINTEXCEPTION_C
- //
- // MessageText:
- //
- // Debugger printerd exception on control C.
- //
- DBG_PRINTEXCEPTION_C = NTSTATUS($40010006);
- {$EXTERNALSYM DBG_PRINTEXCEPTION_C}
- //
- // MessageId: DBG_RIPEXCEPTION
- //
- // MessageText:
- //
- // Debugger recevice RIP exception.
- //
- DBG_RIPEXCEPTION = NTSTATUS($40010007);
- {$EXTERNALSYM DBG_RIPEXCEPTION}
- //
- // MessageId: DBG_CONTROL_BREAK
- //
- // MessageText:
- //
- // Debugger received control break.
- //
- DBG_CONTROL_BREAK = NTSTATUS($40010008); // winnt
- {$EXTERNALSYM DBG_CONTROL_BREAK}
- /////////////////////////////////////////////////////////////////////////
- //
- // Standard Warning values
- //
- //
- // Note: Do NOT use the value 0x80000000L, as this is a non-portable value
- // for the NT_SUCCESS macro. Warning values start with a code of 1.
- //
- /////////////////////////////////////////////////////////////////////////
- //
- // MessageId: STATUS_GUARD_PAGE_VIOLATION
- //
- // MessageText:
- //
- // {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.
- //
- STATUS_GUARD_PAGE_VIOLATION = NTSTATUS($80000001); // winnt
- {$EXTERNALSYM STATUS_GUARD_PAGE_VIOLATION}
- //
- // MessageId: STATUS_DATATYPE_MISALIGNMENT
- //
- // MessageText:
- //
- // {EXCEPTION}
- // Alignment Fault
- // A datatype misalignment was detected in a load or store instruction.
- //
- STATUS_DATATYPE_MISALIGNMENT = NTSTATUS($80000002); // winnt
- {$EXTERNALSYM STATUS_DATATYPE_MISALIGNMENT}
- //
- // MessageId: STATUS_BREAKPOINT
- //
- // MessageText:
- //
- // {EXCEPTION}
- // Breakpoint
- // A breakpoint has been reached.
- //
- STATUS_BREAKPOINT = NTSTATUS($80000003); // winnt
- {$EXTERNALSYM STATUS_BREAKPOINT}
- //
- // MessageId: STATUS_SINGLE_STEP
- //
- // MessageText:
- //
- // {EXCEPTION}
- // Single Step
- // A single step or trace operation has just been completed.
- //
- STATUS_SINGLE_STEP = NTSTATUS($80000004); // winnt
- {$EXTERNALSYM STATUS_SINGLE_STEP}
- //
- // MessageId: STATUS_BUFFER_OVERFLOW
- //
- // MessageText:
- //
- // {Buffer Overflow}
- // The data was too large to fit into the specified buffer.
- //
- STATUS_BUFFER_OVERFLOW = NTSTATUS($80000005);
- {$EXTERNALSYM STATUS_BUFFER_OVERFLOW}
- //
- // MessageId: STATUS_NO_MORE_FILES
- //
- // MessageText:
- //
- // {No More Files}
- // No more files were found which match the file specification.
- //
- STATUS_NO_MORE_FILES = NTSTATUS($80000006);
- {$EXTERNALSYM STATUS_NO_MORE_FILES}
- //
- // MessageId: STATUS_WAKE_SYSTEM_DEBUGGER
- //
- // MessageText:
- //
- // {Kernel Debugger Awakened}
- // the system debugger was awakened by an interrupt.
- //
- STATUS_WAKE_SYSTEM_DEBUGGER = NTSTATUS($80000007);
- {$EXTERNALSYM STATUS_WAKE_SYSTEM_DEBUGGER}
- //
- // MessageId: STATUS_HANDLES_CLOSED
- //
- // MessageText:
- //
- // {Handles Closed}
- // Handles to objects have been automatically closed as a result of the requested operation.
- //
- STATUS_HANDLES_CLOSED = NTSTATUS($8000000A);
- {$EXTERNALSYM STATUS_HANDLES_CLOSED}
- //
- // MessageId: STATUS_NO_INHERITANCE
- //
- // MessageText:
- //
- // {Non-Inheritable ACL}
- // An access control list (ACL) contains no components that can be inherited.
- //
- STATUS_NO_INHERITANCE = NTSTATUS($8000000B);
- {$EXTERNALSYM STATUS_NO_INHERITANCE}
- //
- // MessageId: STATUS_GUID_SUBSTITUTION_MADE
- //
- // MessageText:
- //
- // {GUID Substitution}
- // During the translation of a global identifier (GUID) to a Windows security ID (SID), no administratively-defined GUID prefix was found.
- // A substitute prefix was used, which will not compromise system security.
- // However, this may provide a more restrictive access than intended.
- //
- STATUS_GUID_SUBSTITUTION_MADE = NTSTATUS($8000000C);
- {$EXTERNALSYM STATUS_GUID_SUBSTITUTION_MADE}
- //
- // MessageId: STATUS_PARTIAL_COPY
- //
- // MessageText:
- //
- // {Partial Copy}
- // Due to protection conflicts not all the requested bytes could be copied.
- //
- STATUS_PARTIAL_COPY = NTSTATUS($8000000D);
- {$EXTERNALSYM STATUS_PARTIAL_COPY}
- //
- // MessageId: STATUS_DEVICE_PAPER_EMPTY
- //
- // MessageText:
- //
- // {Out of Paper}
- // The printer is out of paper.
- //
- STATUS_DEVICE_PAPER_EMPTY = NTSTATUS($8000000E);
- {$EXTERNALSYM STATUS_DEVICE_PAPER_EMPTY}
- //
- // MessageId: STATUS_DEVICE_POWERED_OFF
- //
- // MessageText:
- //
- // {Device Power Is Off}
- // The printer power has been turned off.
- //
- STATUS_DEVICE_POWERED_OFF = NTSTATUS($8000000F);
- {$EXTERNALSYM STATUS_DEVICE_POWERED_OFF}
- //
- // MessageId: STATUS_DEVICE_OFF_LINE
- //
- // MessageText:
- //
- // {Device Offline}
- // The printer has been taken offline.
- //
- STATUS_DEVICE_OFF_LINE = NTSTATUS($80000010);
- {$EXTERNALSYM STATUS_DEVICE_OFF_LINE}
- //
- // MessageId: STATUS_DEVICE_BUSY
- //
- // MessageText:
- //
- // {Device Busy}
- // The device is currently busy.
- //
- STATUS_DEVICE_BUSY = NTSTATUS($80000011);
- {$EXTERNALSYM STATUS_DEVICE_BUSY}
- //
- // MessageId: STATUS_NO_MORE_EAS
- //
- // MessageText:
- //
- // {No More EAs}
- // No more extended attributes (EAs) were found for the file.
- //
- STATUS_NO_MORE_EAS = NTSTATUS($80000012);
- {$EXTERNALSYM STATUS_NO_MORE_EAS}
- //
- // MessageId: STATUS_INVALID_EA_NAME
- //
- // MessageText:
- //
- // {Illegal EA}
- // The specified extended attribute (EA) name contains at least one illegal character.
- //
- STATUS_INVALID_EA_NAME = NTSTATUS($80000013);
- {$EXTERNALSYM STATUS_INVALID_EA_NAME}
- //
- // MessageId: STATUS_EA_LIST_INCONSISTENT
- //
- // MessageText:
- //
- // {Inconsistent EA List}
- // The extended attribute (EA) list is inconsistent.
- //
- STATUS_EA_LIST_INCONSISTENT = NTSTATUS($80000014);
- {$EXTERNALSYM STATUS_EA_LIST_INCONSISTENT}
- //
- // MessageId: STATUS_INVALID_EA_FLAG
- //
- // MessageText:
- //
- // {Invalid EA Flag}
- // An invalid extended attribute (EA) flag was set.
- //
- STATUS_INVALID_EA_FLAG = NTSTATUS($80000015);
- {$EXTERNALSYM STATUS_INVALID_EA_FLAG}
- //
- // MessageId: STATUS_VERIFY_REQUIRED
- //
- // MessageText:
- //
- // {Verifying Disk}
- // The media has changed and a verify operation is in progress so no reads or writes may be performed to the device, except those used in the verify operation.
- //
- STATUS_VERIFY_REQUIRED = NTSTATUS($80000016);
- {$EXTERNALSYM STATUS_VERIFY_REQUIRED}
- //
- // MessageId: STATUS_EXTRANEOUS_INFORMATION
- //
- // MessageText:
- //
- // {Too Much Information}
- // The specified access control list (ACL) contained more information than was expected.
- //
- STATUS_EXTRANEOUS_INFORMATION = NTSTATUS($80000017);
- {$EXTERNALSYM STATUS_EXTRANEOUS_INFORMATION}
- //
- // MessageId: STATUS_RXACT_COMMIT_NECESSARY
- //
- // MessageText:
- //
- // This warning level status indicates that the transaction state already exists for the registry sub-tree, but that a transaction commit was previously aborted.
- // The commit has NOT been completed, but has not been rolled back either (so it may still be committed if desired).
- //
- STATUS_RXACT_COMMIT_NECESSARY = NTSTATUS($80000018);
- {$EXTERNALSYM STATUS_RXACT_COMMIT_NECESSARY}
- //
- // MessageId: STATUS_NO_MORE_ENTRIES
- //
- // MessageText:
- //
- // {No More Entries}
- // No more entries are available from an enumeration operation.
- //
- STATUS_NO_MORE_ENTRIES = NTSTATUS($8000001A);
- {$EXTERNALSYM STATUS_NO_MORE_ENTRIES}
- //
- // MessageId: STATUS_FILEMARK_DETECTED
- //
- // MessageText:
- //
- // {Filemark Found}
- // A filemark was detected.
- //
- STATUS_FILEMARK_DETECTED = NTSTATUS($8000001B);
- {$EXTERNALSYM STATUS_FILEMARK_DETECTED}
- //
- // MessageId: STATUS_MEDIA_CHANGED
- //
- // MessageText:
- //
- // {Media Changed}
- // The media may have changed.
- //
- STATUS_MEDIA_CHANGED = NTSTATUS($8000001C);
- {$EXTERNALSYM STATUS_MEDIA_CHANGED}
- //
- // MessageId: STATUS_BUS_RESET
- //
- // MessageText:
- //
- // {I/O Bus Reset}
- // An I/O bus reset was detected.
- //
- STATUS_BUS_RESET = NTSTATUS($8000001D);
- {$EXTERNALSYM STATUS_BUS_RESET}
- //
- // MessageId: STATUS_END_OF_MEDIA
- //
- // MessageText:
- //
- // {End of Media}
- // The end of the media was encountered.
- //
- STATUS_END_OF_MEDIA = NTSTATUS($8000001E);
- {$EXTERNALSYM STATUS_END_OF_MEDIA}
- //
- // MessageId: STATUS_BEGINNING_OF_MEDIA
- //
- // MessageText:
- //
- // Beginning of tape or partition has been detected.
- //
- STATUS_BEGINNING_OF_MEDIA = NTSTATUS($8000001F);
- {$EXTERNALSYM STATUS_BEGINNING_OF_MEDIA}
- //
- // MessageId: STATUS_MEDIA_CHECK
- //
- // MessageText:
- //
- // {Media Changed}
- // The media may have changed.
- //
- STATUS_MEDIA_CHECK = NTSTATUS($80000020);
- {$EXTERNALSYM STATUS_MEDIA_CHECK}
- //
- // MessageId: STATUS_SETMARK_DETECTED
- //
- // MessageText:
- //
- // A tape access reached a setmark.
- //
- STATUS_SETMARK_DETECTED = NTSTATUS($80000021);
- {$EXTERNALSYM STATUS_SETMARK_DETECTED}
- //
- // MessageId: STATUS_NO_DATA_DETECTED
- //
- // MessageText:
- //
- // During a tape access, the end of the data written is reached.
- //
- STATUS_NO_DATA_DETECTED = NTSTATUS($80000022);
- {$EXTERNALSYM STATUS_NO_DATA_DETECTED}
- //
- // MessageId: STATUS_REDIRECTOR_HAS_OPEN_HANDLES
- //
- // MessageText:
- //
- // The redirector is in use and cannot be unloaded.
- //
- STATUS_REDIRECTOR_HAS_OPEN_HANDLES = NTSTATUS($80000023);
- {$EXTERNALSYM STATUS_REDIRECTOR_HAS_OPEN_HANDLES}
- //
- // MessageId: STATUS_SERVER_HAS_OPEN_HANDLES
- //
- // MessageText:
- //
- // The server is in use and cannot be unloaded.
- //
- STATUS_SERVER_HAS_OPEN_HANDLES = NTSTATUS($80000024);
- {$EXTERNALSYM STATUS_SERVER_HAS_OPEN_HANDLES}
- //
- // MessageId: STATUS_ALREADY_DISCONNECTED
- //
- // MessageText:
- //
- // The specified connection has already been disconnected.
- //
- STATUS_ALREADY_DISCONNECTED = NTSTATUS($80000025);
- {$EXTERNALSYM STATUS_ALREADY_DISCONNECTED}
- //
- // MessageId: STATUS_LONGJUMP
- //
- // MessageText:
- //
- // A long jump has been executed.
- //
- STATUS_LONGJUMP = NTSTATUS($80000026);
- {$EXTERNALSYM STATUS_LONGJUMP}
- //
- // MessageId: DBG_EXCEPTION_NOT_HANDLED
- //
- // MessageText:
- //
- // Debugger did not handle the exception.
- //
- DBG_EXCEPTION_NOT_HANDLED = NTSTATUS($80010001); // winnt
- {$EXTERNALSYM DBG_EXCEPTION_NOT_HANDLED}
- /////////////////////////////////////////////////////////////////////////
- //
- // Standard Error values
- //
- /////////////////////////////////////////////////////////////////////////
- //
- // MessageId: STATUS_UNSUCCESSFUL
- //
- // MessageText:
- //
- // {Operation Failed}
- // The requested operation was unsuccessful.
- //
- STATUS_UNSUCCESSFUL = NTSTATUS($C0000001);
- {$EXTERNALSYM STATUS_UNSUCCESSFUL}
- //
- // MessageId: STATUS_NOT_IMPLEMENTED
- //
- // MessageText:
- //
- // {Not Implemented}
- // The requested operation is not implemented.
- //
- STATUS_NOT_IMPLEMENTED = NTSTATUS($C0000002);
- {$EXTERNALSYM STATUS_NOT_IMPLEMENTED}
- //
- // MessageId: STATUS_INVALID_INFO_CLASS
- //
- // MessageText:
- //
- // {Invalid Parameter}
- // The specified information class is not a valid information class for the specified object.
- //
- STATUS_INVALID_INFO_CLASS = NTSTATUS($C0000003); // ntsubauth
- {$EXTERNALSYM STATUS_INVALID_INFO_CLASS}
- //
- // MessageId: STATUS_INFO_LENGTH_MISMATCH
- //
- // MessageText:
- //
- // The specified information record length does not match the length required for the specified information class.
- //
- STATUS_INFO_LENGTH_MISMATCH = NTSTATUS($C0000004);
- {$EXTERNALSYM STATUS_INFO_LENGTH_MISMATCH}
- //
- // MessageId: STATUS_ACCESS_VIOLATION
- //
- // MessageText:
- //
- // The instruction at "0x%08lx" referenced memory at "0x%08lx". The memory could not be "%s".
- //
- STATUS_ACCESS_VIOLATION = NTSTATUS($C0000005); // winnt
- {$EXTERNALSYM STATUS_ACCESS_VIOLATION}
- //
- // MessageId: STATUS_IN_PAGE_ERROR
- //
- // MessageText:
- //
- // The instruction at "0x%08lx" referenced memory at "0x%08lx". The required data was not placed into memory because of an I/O error status of "0x%08lx".
- //
- STATUS_IN_PAGE_ERROR = NTSTATUS($C0000006); // winnt
- {$EXTERNALSYM STATUS_IN_PAGE_ERROR}
- //
- // MessageId: STATUS_PAGEFILE_QUOTA
- //
- // MessageText:
- //
- // The pagefile quota for the process has been exhausted.
- //
- STATUS_PAGEFILE_QUOTA = NTSTATUS($C0000007);
- {$EXTERNALSYM STATUS_PAGEFILE_QUOTA}
- //
- // MessageId: STATUS_INVALID_HANDLE
- //
- // MessageText:
- //
- // An invalid HANDLE was specified.
- //
- STATUS_INVALID_HANDLE = NTSTATUS($C0000008); // winnt
- {$EXTERNALSYM STATUS_INVALID_HANDLE}
- //
- // MessageId: STATUS_BAD_INITIAL_STACK
- //
- // MessageText:
- //
- // An invalid initial stack was specified in a call to NtCreateThread.
- //
- STATUS_BAD_INITIAL_STACK = NTSTATUS($C0000009);
- {$EXTERNALSYM STATUS_BAD_INITIAL_STACK}
- //
- // MessageId: STATUS_BAD_INITIAL_PC
- //
- // MessageText:
- //
- // An invalid initial start address was specified in a call to NtCreateThread.
- //
- STATUS_BAD_INITIAL_PC = NTSTATUS($C000000A);
- {$EXTERNALSYM STATUS_BAD_INITIAL_PC}
- //
- // MessageId: STATUS_INVALID_CID
- //
- // MessageText:
- //
- // An invalid Client ID was specified.
- //
- STATUS_INVALID_CID = NTSTATUS($C000000B);
- {$EXTERNALSYM STATUS_INVALID_CID}
- //
- // MessageId: STATUS_TIMER_NOT_CANCELED
- //
- // MessageText:
- //
- // An attempt was made to cancel or set a timer that has an associated APC and the subject thread is not the thread that originally set the timer with an associated APC routine.
- //
- STATUS_TIMER_NOT_CANCELED = NTSTATUS($C000000C);
- {$EXTERNALSYM STATUS_TIMER_NOT_CANCELED}
- //
- // MessageId: STATUS_INVALID_PARAMETER
- //
- // MessageText:
- //
- // An invalid parameter was passed to a service or function.
- //
- STATUS_INVALID_PARAMETER = NTSTATUS($C000000D);
- {$EXTERNALSYM STATUS_INVALID_PARAMETER}
- //
- // MessageId: STATUS_NO_SUCH_DEVICE
- //
- // MessageText:
- //
- // A device which does not exist was specified.
- //
- STATUS_NO_SUCH_DEVICE = NTSTATUS($C000000E);
- {$EXTERNALSYM STATUS_NO_SUCH_DEVICE}
- //
- // MessageId: STATUS_NO_SUCH_FILE
- //
- // MessageText:
- //
- // {File Not Found}
- // The file %hs does not exist.
- //
- STATUS_NO_SUCH_FILE = NTSTATUS($C000000F);
- {$EXTERNALSYM STATUS_NO_SUCH_FILE}
- //
- // MessageId: STATUS_INVALID_DEVICE_REQUEST
- //
- // MessageText:
- //
- // The specified request is not a valid operation for the target device.
- //
- STATUS_INVALID_DEVICE_REQUEST = NTSTATUS($C0000010);
- {$EXTERNALSYM STATUS_INVALID_DEVICE_REQUEST}
- //
- // MessageId: STATUS_END_OF_FILE
- //
- // MessageText:
- //
- // The end-of-file marker has been reached. There is no valid data in the file beyond this marker.
- //
- STATUS_END_OF_FILE = NTSTATUS($C0000011);
- {$EXTERNALSYM STATUS_END_OF_FILE}
- //
- // MessageId: STATUS_WRONG_VOLUME
- //
- // MessageText:
- //
- // {Wrong Volume}
- // The wrong volume is in the drive.
- // Please insert volume %hs into drive %hs.
- //
- STATUS_WRONG_VOLUME = NTSTATUS($C0000012);
- {$EXTERNALSYM STATUS_WRONG_VOLUME}
- //
- // MessageId: STATUS_NO_MEDIA_IN_DEVICE
- //
- // MessageText:
- //
- // {No Disk}
- // There is no disk in the drive.
- // Please insert a disk into drive %hs.
- //
- STATUS_NO_MEDIA_IN_DEVICE = NTSTATUS($C0000013);
- {$EXTERNALSYM STATUS_NO_MEDIA_IN_DEVICE}
- //
- // MessageId: STATUS_UNRECOGNIZED_MEDIA
- //
- // MessageText:
- //
- // {Unknown Disk Format}
- // The disk in drive %hs is not formatted properly.
- // Please check the disk, and reformat if necessary.
- //
- STATUS_UNRECOGNIZED_MEDIA = NTSTATUS($C0000014);
- {$EXTERNALSYM STATUS_UNRECOGNIZED_MEDIA}
- //
- // MessageId: STATUS_NONEXISTENT_SECTOR
- //
- // MessageText:
- //
- // {Sector Not Found}
- // The specified sector does not exist.
- //
- STATUS_NONEXISTENT_SECTOR = NTSTATUS($C0000015);
- {$EXTERNALSYM STATUS_NONEXISTENT_SECTOR}
- //
- // MessageId: STATUS_MORE_PROCESSING_REQUIRED
- //
- // MessageText:
- //
- // {Still Busy}
- // The specified I/O request packet (IRP) cannot be disposed of because the I/O operation is not complete.
- //
- STATUS_MORE_PROCESSING_REQUIRED = NTSTATUS($C0000016);
- {$EXTERNALSYM STATUS_MORE_PROCESSING_REQUIRED}
- //
- // MessageId: STATUS_NO_MEMORY
- //
- // MessageText:
- //
- // {Not Enough Quota}
- // Not enough virtual memory or paging file quota is available to complete the specified operation.
- //
- STATUS_NO_MEMORY = NTSTATUS($C0000017); // winnt
- {$EXTERNALSYM STATUS_NO_MEMORY}
- //
- // MessageId: STATUS_CONFLICTING_ADDRESSES
- //
- // MessageText:
- //
- // {Conflicting Address Range}
- // The specified address range conflicts with the address space.
- //
- STATUS_CONFLICTING_ADDRESSES = NTSTATUS($C0000018);
- {$EXTERNALSYM STATUS_CONFLICTING_ADDRESSES}
- //
- // MessageId: STATUS_NOT_MAPPED_VIEW
- //
- // MessageText:
- //
- // Address range to unmap is not a mapped view.
- //
- STATUS_NOT_MAPPED_VIEW = NTSTATUS($C0000019);
- {$EXTERNALSYM STATUS_NOT_MAPPED_VIEW}
- //
- // MessageId: STATUS_UNABLE_TO_FREE_VM
- //
- // MessageText:
- //
- // Virtual memory cannot be freed.
- //
- STATUS_UNABLE_TO_FREE_VM = NTSTATUS($C000001A);
- {$EXTERNALSYM STATUS_UNABLE_TO_FREE_VM}
- //
- // MessageId: STATUS_UNABLE_TO_DELETE_SECTION
- //
- // MessageText:
- //
- // Specified section cannot be deleted.
- //
- STATUS_UNABLE_TO_DELETE_SECTION = NTSTATUS($C000001B);
- {$EXTERNALSYM STATUS_UNABLE_TO_DELETE_SECTION}
- //
- // MessageId: STATUS_INVALID_SYSTEM_SERVICE
- //
- // MessageText:
- //
- // An invalid system service was specified in a system service call.
- //
- STATUS_INVALID_SYSTEM_SERVICE = NTSTATUS($C000001C);
- {$EXTERNALSYM STATUS_INVALID_SYSTEM_SERVICE}
- //
- // MessageId: STATUS_ILLEGAL_INSTRUCTION
- //
- // MessageText:
- //
- // {EXCEPTION}
- // Illegal Instruction
- // An attempt was made to execute an illegal instruction.
- //
- STATUS_ILLEGAL_INSTRUCTION = NTSTATUS($C000001D); // winnt
- {$EXTERNALSYM STATUS_ILLEGAL_INSTRUCTION}
- //
- // MessageId: STATUS_INVALID_LOCK_SEQUENCE
- //
- // MessageText:
- //
- // {Invalid Lock Sequence}
- // An attempt was made to execute an invalid lock sequence.
- //
- STATUS_INVALID_LOCK_SEQUENCE = NTSTATUS($C000001E);
- {$EXTERNALSYM STATUS_INVALID_LOCK_SEQUENCE}
- //
- // MessageId: STATUS_INVALID_VIEW_SIZE
- //
- // MessageText:
- //
- // {Invalid Mapping}
- // An attempt was made to create a view for a section which is bigger than the section.
- //
- STATUS_INVALID_VIEW_SIZE = NTSTATUS($C000001F);
- {$EXTERNALSYM STATUS_INVALID_VIEW_SIZE}
- //
- // MessageId: STATUS_INVALID_FILE_FOR_SECTION
- //
- // MessageText:
- //
- // {Bad File}
- // The attributes of the specified mapping file for a section of memory cannot be read.
- //
- STATUS_INVALID_FILE_FOR_SECTION = NTSTATUS($C0000020);
- {$EXTERNALSYM STATUS_INVALID_FILE_FOR_SECTION}
- //
- // MessageId: STATUS_ALREADY_COMMITTED
- //
- // MessageText:
- //
- // {Already Committed}
- // The specified address range is already committed.
- //
- STATUS_ALREADY_COMMITTED = NTSTATUS($C0000021);
- {$EXTERNALSYM STATUS_ALREADY_COMMITTED}
- //
- // MessageId: STATUS_ACCESS_DENIED
- //
- // MessageText:
- //
- // {Access Denied}
- // A process has requested access to an object, but has not been granted those access rights.
- //
- STATUS_ACCESS_DENIED = NTSTATUS($C0000022);
- {$EXTERNALSYM STATUS_ACCESS_DENIED}
- //
- // MessageId: STATUS_BUFFER_TOO_SMALL
- //
- // MessageText:
- //
- // {Buffer Too Small}
- // The buffer is too small to contain the entry. No information has been written to the buffer.
- //
- STATUS_BUFFER_TOO_SMALL = NTSTATUS($C0000023);
- {$EXTERNALSYM STATUS_BUFFER_TOO_SMALL}
- //
- // MessageId: STATUS_OBJECT_TYPE_MISMATCH
- //
- // MessageText:
- //
- // {Wrong Type}
- // There is a mismatch between the type of object required by the requested operation and the type of object that is specified in the request.
- //
- STATUS_OBJECT_TYPE_MISMATCH = NTSTATUS($C0000024);
- {$EXTERNALSYM STATUS_OBJECT_TYPE_MISMATCH}
- //
- // MessageId: STATUS_NONCONTINUABLE_EXCEPTION
- //
- // MessageText:
- //
- // {EXCEPTION}
- // Cannot Continue
- // Windows cannot continue from this exception.
- //
- STATUS_NONCONTINUABLE_EXCEPTION = NTSTATUS($C0000025); // winnt
- {$EXTERNALSYM STATUS_NONCONTINUABLE_EXCEPTION}
- //
- // MessageId: STATUS_INVALID_DISPOSITION
- //
- // MessageText:
- //
- // An invalid exception disposition was returned by an exception handler.
- //
- STATUS_INVALID_DISPOSITION = NTSTATUS($C0000026); // winnt
- {$EXTERNALSYM STATUS_INVALID_DISPOSITION}
- //
- // MessageId: STATUS_UNWIND
- //
- // MessageText:
- //
- // Unwind exception code.
- //
- STATUS_UNWIND = NTSTATUS($C0000027);
- {$EXTERNALSYM STATUS_UNWIND}
- //
- // MessageId: STATUS_BAD_STACK
- //
- // MessageText:
- //
- // An invalid or unaligned stack was encountered during an unwind operation.
- //
- STATUS_BAD_STACK = NTSTATUS($C0000028);
- {$EXTERNALSYM STATUS_BAD_STACK}
- //
- // MessageId: STATUS_INVALID_UNWIND_TARGET
- //
- // MessageText:
- //
- // An invalid unwind target was encountered during an unwind operation.
- //
- STATUS_INVALID_UNWIND_TARGET = NTSTATUS($C0000029);
- {$EXTERNALSYM STATUS_INVALID_UNWIND_TARGET}
- //
- // MessageId: STATUS_NOT_LOCKED
- //
- // MessageText:
- //
- // An attempt was made to unlock a page of memory which was not locked.
- //
- STATUS_NOT_LOCKED = NTSTATUS($C000002A);
- {$EXTERNALSYM STATUS_NOT_LOCKED}
- //
- // MessageId: STATUS_PARITY_ERROR
- //
- // MessageText:
- //
- // Device parity error on I/O operation.
- //
- STATUS_PARITY_ERROR = NTSTATUS($C000002B);
- {$EXTERNALSYM STATUS_PARITY_ERROR}
- //
- // MessageId: STATUS_UNABLE_TO_DECOMMIT_VM
- //
- // MessageText:
- //
- // An attempt was made to decommit uncommitted virtual memory.
- //
- STATUS_UNABLE_TO_DECOMMIT_VM = NTSTATUS($C000002C);
- {$EXTERNALSYM STATUS_UNABLE_TO_DECOMMIT_VM}
- //
- // MessageId: STATUS_NOT_COMMITTED
- //
- // MessageText:
- //
- // An attempt was made to change the attributes on memory that has not been committed.
- //
- STATUS_NOT_COMMITTED = NTSTATUS($C000002D);
- {$EXTERNALSYM STATUS_NOT_COMMITTED}
- //
- // MessageId: STATUS_INVALID_PORT_ATTRIBUTES
- //
- // MessageText:
- //
- // Invalid Object Attributes specified to NtCreatePort or invalid Port Attributes specified to NtConnectPort
- //
- STATUS_INVALID_PORT_ATTRIBUTES = NTSTATUS($C000002E);
- {$EXTERNALSYM STATUS_INVALID_PORT_ATTRIBUTES}
- //
- // MessageId: STATUS_PORT_MESSAGE_TOO_LONG
- //
- // MessageText:
- //
- // Length of message passed to NtRequestPort or NtRequestWaitReplyPort was longer than the maximum message allowed by the port.
- //
- STATUS_PORT_MESSAGE_TOO_LONG = NTSTATUS($C000002F);
- {$EXTERNALSYM STATUS_PORT_MESSAGE_TOO_LONG}
- //
- // MessageId: STATUS_INVALID_PARAMETER_MIX
- //
- // MessageText:
- //
- // An invalid combination of parameters was specified.
- //
- STATUS_INVALID_PARAMETER_MIX = NTSTATUS($C0000030);
- {$EXTERNALSYM STATUS_INVALID_PARAMETER_MIX}
- //
- // MessageId: STATUS_INVALID_QUOTA_LOWER
- //
- // MessageText:
- //
- // An attempt was made to lower a quota limit below the current usage.
- //
- STATUS_INVALID_QUOTA_LOWER = NTSTATUS($C0000031);
- {$EXTERNALSYM STATUS_INVALID_QUOTA_LOWER}
- //
- // MessageId: STATUS_DISK_CORRUPT_ERROR
- //
- // MessageText:
- //
- // {Corrupt Disk}
- // The file system structure on the disk is corrupt and unusable.
- // Please run the Chkdsk utility on the volume %hs.
- //
- STATUS_DISK_CORRUPT_ERROR = NTSTATUS($C0000032);
- {$EXTERNALSYM STATUS_DISK_CORRUPT_ERROR}
- //
- // MessageId: STATUS_OBJECT_NAME_INVALID
- //
- // MessageText:
- //
- // Object Name invalid.
- //
- STATUS_OBJECT_NAME_INVALID = NTSTATUS($C0000033);
- {$EXTERNALSYM STATUS_OBJECT_NAME_INVALID}
- //
- // MessageId: STATUS_OBJECT_NAME_NOT_FOUND
- //
- // MessageText:
- //
- // Object Name not found.
- //
- STATUS_OBJECT_NAME_NOT_FOUND = NTSTATUS($C0000034);
- {$EXTERNALSYM STATUS_OBJECT_NAME_NOT_FOUND}
- //
- // MessageId: STATUS_OBJECT_NAME_COLLISION
- //
- // MessageText:
- //
- // Object Name already exists.
- //
- STATUS_OBJECT_NAME_COLLISION = NTSTATUS($C0000035);
- {$EXTERNALSYM STATUS_OBJECT_NAME_COLLISION}
- //
- // MessageId: STATUS_PORT_DISCONNECTED
- //
- // MessageText:
- //
- // Attempt to send a message to a disconnected communication port.
- //
- STATUS_PORT_DISCONNECTED = NTSTATUS($C0000037);
- {$EXTERNALSYM STATUS_PORT_DISCONNECTED}
- //
- // MessageId: STATUS_DEVICE_ALREADY_ATTACHED
- //
- // MessageText:
- //
- // An attempt was made to attach to a device that was already attached to another device.
- //
- STATUS_DEVICE_ALREADY_ATTACHED = NTSTATUS($C0000038);
- {$EXTERNALSYM STATUS_DEVICE_ALREADY_ATTACHED}
- //
- // MessageId: STATUS_OBJECT_PATH_INVALID
- //
- // MessageText:
- //
- // Object Path Component was not a directory object.
- //
- STATUS_OBJECT_PATH_INVALID = NTSTATUS($C0000039);
- {$EXTERNALSYM STATUS_OBJECT_PATH_INVALID}
- //
- // MessageId: STATUS_OBJECT_PATH_NOT_FOUND
- //
- // MessageText:
- //
- // {Path Not Found}
- // The path %hs does not exist.
- //
- STATUS_OBJECT_PATH_NOT_FOUND = NTSTATUS($C000003A);
- {$EXTERNALSYM STATUS_OBJECT_PATH_NOT_FOUND}
- //
- // MessageId: STATUS_OBJECT_PATH_SYNTAX_BAD
- //
- // MessageText:
- //
- // Object Path Component was not a directory object.
- //
- STATUS_OBJECT_PATH_SYNTAX_BAD = NTSTATUS($C000003B);
- {$EXTERNALSYM STATUS_OBJECT_PATH_SYNTAX_BAD}
- //
- // MessageId: STATUS_DATA_OVERRUN
- //
- // MessageText:
- //
- // {Data Overrun}
- // A data overrun error occurred.
- //
- STATUS_DATA_OVERRUN = NTSTATUS($C000003C);
- {$EXTERNALSYM STATUS_DATA_OVERRUN}
- //
- // MessageId: STATUS_DATA_LATE_ERROR
- //
- // MessageText:
- //
- // {Data Late}
- // A data late error occurred.
- //
- STATUS_DATA_LATE_ERROR = NTSTATUS($C000003D);
- {$EXTERNALSYM STATUS_DATA_LATE_ERROR}
- //
- // MessageId: STATUS_DATA_ERROR
- //
- // MessageText:
- //
- // {Data Error}
- // An error in reading or writing data occurred.
- //
- STATUS_DATA_ERROR = NTSTATUS($C000003E);
- {$EXTERNALSYM STATUS_DATA_ERROR}
- //
- // MessageId: STATUS_CRC_ERROR
- //
- // MessageText:
- //
- // {Bad CRC}
- // A cyclic redundancy check (CRC) checksum error occurred.
- //
- STATUS_CRC_ERROR = NTSTATUS($C000003F);
- {$EXTERNALSYM STATUS_CRC_ERROR}
- //
- // MessageId: STATUS_SECTION_TOO_BIG
- //
- // MessageText:
- //
- // {Section Too Large}
- // The specified section is too big to map the file.
- //
- STATUS_SECTION_TOO_BIG = NTSTATUS($C0000040);
- {$EXTERNALSYM STATUS_SECTION_TOO_BIG}
- //
- // MessageId: STATUS_PORT_CONNECTION_REFUSED
- //
- // MessageText:
- //
- // The NtConnectPort request is refused.
- //
- STATUS_PORT_CONNECTION_REFUSED = NTSTATUS($C0000041);
- {$EXTERNALSYM STATUS_PORT_CONNECTION_REFUSED}
- //
- // MessageId: STATUS_INVALID_PORT_HANDLE
- //
- // MessageText:
- //
- // The type of port handle is invalid for the operation requested.
- //
- STATUS_INVALID_PORT_HANDLE = NTSTATUS($C0000042);
- {$EXTERNALSYM STATUS_INVALID_PORT_HANDLE}
- //
- // MessageId: STATUS_SHARING_VIOLATION
- //
- // MessageText:
- //
- // A file cannot be opened because the share access flags are incompatible.
- //
- STATUS_SHARING_VIOLATION = NTSTATUS($C0000043);
- {$EXTERNALSYM STATUS_SHARING_VIOLATION}
- //
- // MessageId: STATUS_QUOTA_EXCEEDED
- //
- // MessageText:
- //
- // Insufficient quota exists to complete the operation
- //
- STATUS_QUOTA_EXCEEDED = NTSTATUS($C0000044);
- {$EXTERNALSYM STATUS_QUOTA_EXCEEDED}
- //
- // MessageId: STATUS_INVALID_PAGE_PROTECTION
- //
- // MessageText:
- //
- // The specified page protection was not valid.
- //
- STATUS_INVALID_PAGE_PROTECTION = NTSTATUS($C0000045);
- {$EXTERNALSYM STATUS_INVALID_PAGE_PROTECTION}
- //
- // MessageId: STATUS_MUTANT_NOT_OWNED
- //
- // MessageText:
- //
- // An attempt to release a mutant object was made by a thread that was not the owner of the mutant object.
- //
- STATUS_MUTANT_NOT_OWNED = NTSTATUS($C0000046);
- {$EXTERNALSYM STATUS_MUTANT_NOT_OWNED}
- //
- // MessageId: STATUS_SEMAPHORE_LIMIT_EXCEEDED
- //
- // MessageText:
- //
- // An attempt was made to release a semaphore such that its maximum count would have been exceeded.
- //
- STATUS_SEMAPHORE_LIMIT_EXCEEDED = NTSTATUS($C0000047);
- {$EXTERNALSYM STATUS_SEMAPHORE_LIMIT_EXCEEDED}
- //
- // MessageId: STATUS_PORT_ALREADY_SET
- //
- // MessageText:
- //
- // An attempt to set a processes DebugPort or ExceptionPort was made, but a port already exists in the process.
- //
- STATUS_PORT_ALREADY_SET = NTSTATUS($C0000048);
- {$EXTERNALSYM STATUS_PORT_ALREADY_SET}
- //
- // MessageId: STATUS_SECTION_NOT_IMAGE
- //
- // MessageText:
- //
- // An attempt was made to query image information on a section which does not map an image.
- //
- STATUS_SECTION_NOT_IMAGE = NTSTATUS($C0000049);
- {$EXTERNALSYM STATUS_SECTION_NOT_IMAGE}
- //
- // MessageId: STATUS_SUSPEND_COUNT_EXCEEDED
- //
- // MessageText:
- //
- // An attempt was made to suspend a thread whose suspend count was at its maximum.
- //
- STATUS_SUSPEND_COUNT_EXCEEDED = NTSTATUS($C000004A);
- {$EXTERNALSYM STATUS_SUSPEND_COUNT_EXCEEDED}
- //
- // MessageId: STATUS_THREAD_IS_TERMINATING
- //
- // MessageText:
- //
- // An attempt was made to suspend a thread that has begun termination.
- //
- STATUS_THREAD_IS_TERMINATING = NTSTATUS($C000004B);
- {$EXTERNALSYM STATUS_THREAD_IS_TERMINATING}
- //
- // MessageId: STATUS_BAD_WORKING_SET_LIMIT
- //
- // MessageText:
- //
- // An attempt was made to set the working set limit to an invalid value (minimum greater than maximum, etc).
- //
- STATUS_BAD_WORKING_SET_LIMIT = NTSTATUS($C000004C);
- {$EXTERNALSYM STATUS_BAD_WORKING_SET_LIMIT}
- //
- // MessageId: STATUS_INCOMPATIBLE_FILE_MAP
- //
- // MessageText:
- //
- // A section was created to map a file which is not compatible to an already existing section which maps the same file.
- //
- STATUS_INCOMPATIBLE_FILE_MAP = NTSTATUS($C000004D);
- {$EXTERNALSYM STATUS_INCOMPATIBLE_FILE_MAP}
- //
- // MessageId: STATUS_SECTION_PROTECTION
- //
- // MessageText:
- //
- // A view to a section specifies a protection which is incompatible with the initial view's protection.
- //
- STATUS_SECTION_PROTECTION = NTSTATUS($C000004E);
- {$EXTERNALSYM STATUS_SECTION_PROTECTION}
- //
- // MessageId: STATUS_EAS_NOT_SUPPORTED
- //
- // MessageText:
- //
- // An operation involving EAs failed because the file system does not support EAs.
- //
- STATUS_EAS_NOT_SUPPORTED = NTSTATUS($C000004F);
- {$EXTERNALSYM STATUS_EAS_NOT_SUPPORTED}
- //
- // MessageId: STATUS_EA_TOO_LARGE
- //
- // MessageText:
- //
- // An EA operation failed because EA set is too large.
- //
- STATUS_EA_TOO_LARGE = NTSTATUS($C0000050);
- {$EXTERNALSYM STATUS_EA_TOO_LARGE}
- //
- // MessageId: STATUS_NONEXISTENT_EA_ENTRY
- //
- // MessageText:
- //
- // An EA operation failed because the name or EA index is invalid.
- //
- STATUS_NONEXISTENT_EA_ENTRY = NTSTATUS($C0000051);
- {$EXTERNALSYM STATUS_NONEXISTENT_EA_ENTRY}
- //
- // MessageId: STATUS_NO_EAS_ON_FILE
- //
- // MessageText:
- //
- // The file for which EAs were requested has no EAs.
- //
- STATUS_NO_EAS_ON_FILE = NTSTATUS($C0000052);
- {$EXTERNALSYM STATUS_NO_EAS_ON_FILE}
- //
- // MessageId: STATUS_EA_CORRUPT_ERROR
- //
- // MessageText:
- //
- // The EA is corrupt and non-readable.
- //
- STATUS_EA_CORRUPT_ERROR = NTSTATUS($C0000053);
- {$EXTERNALSYM STATUS_EA_CORRUPT_ERROR}
- //
- // MessageId: STATUS_FILE_LOCK_CONFLICT
- //
- // MessageText:
- //
- // A requested read/write cannot be granted due to a conflicting file lock.
- //
- STATUS_FILE_LOCK_CONFLICT = NTSTATUS($C0000054);
- {$EXTERNALSYM STATUS_FILE_LOCK_CONFLICT}
- //
- // MessageId: STATUS_LOCK_NOT_GRANTED
- //
- // MessageText:
- //
- // A requested file lock cannot be granted due to other existing locks.
- //
- STATUS_LOCK_NOT_GRANTED = NTSTATUS($C0000055);
- {$EXTERNALSYM STATUS_LOCK_NOT_GRANTED}
- //
- // MessageId: STATUS_DELETE_PENDING
- //
- // MessageText:
- //
- // A non close operation has been requested of a file object with a delete pending.
- //
- STATUS_DELETE_PENDING = NTSTATUS($C0000056);
- {$EXTERNALSYM STATUS_DELETE_PENDING}
- //
- // MessageId: STATUS_CTL_FILE_NOT_SUPPORTED
- //
- // MessageText:
- //
- // An attempt was made to set the control attribute on a file. This attribute is not supported in the target file system.
- //
- STATUS_CTL_FILE_NOT_SUPPORTED = NTSTATUS($C0000057);
- {$EXTERNALSYM STATUS_CTL_FILE_NOT_SUPPORTED}
- //
- // MessageId: STATUS_UNKNOWN_REVISION
- //
- // MessageText:
- //
- // Indicates a revision number encountered or specified is not one known by the service. It may be a more recent revision than the service is aware of.
- //
- STATUS_UNKNOWN_REVISION = NTSTATUS($C0000058);
- {$EXTERNALSYM STATUS_UNKNOWN_REVISION}
- //
- // MessageId: STATUS_REVISION_MISMATCH
- //
- // MessageText:
- //
- // Indicates two revision levels are incompatible.
- //
- STATUS_REVISION_MISMATCH = NTSTATUS($C0000059);
- {$EXTERNALSYM STATUS_REVISION_MISMATCH}
- //
- // MessageId: STATUS_INVALID_OWNER
- //
- // MessageText:
- //
- // Indicates a particular Security ID may not be assigned as the owner of an object.
- //
- STATUS_INVALID_OWNER = NTSTATUS($C000005A);
- {$EXTERNALSYM STATUS_INVALID_OWNER}
- //
- // MessageId: STATUS_INVALID_PRIMARY_GROUP
- //
- // MessageText:
- //
- // Indicates a particular Security ID may not be assigned as the primary group of an object.
- //
- STATUS_INVALID_PRIMARY_GROUP = NTSTATUS($C000005B);
- {$EXTERNALSYM STATUS_INVALID_PRIMARY_GROUP}
- //
- // MessageId: STATUS_NO_IMPERSONATION_TOKEN
- //
- // MessageText:
- //
- // An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client.
- //
- STATUS_NO_IMPERSONATION_TOKEN = NTSTATUS($C000005C);
- {$EXTERNALSYM STATUS_NO_IMPERSONATION_TOKEN}
- //
- // MessageId: STATUS_CANT_DISABLE_MANDATORY
- //
- // MessageText:
- //
- // A mandatory group may not be disabled.
- //
- STATUS_CANT_DISABLE_MANDATORY = NTSTATUS($C000005D);
- {$EXTERNALSYM STATUS_CANT_DISABLE_MANDATORY}
- //
- // MessageId: STATUS_NO_LOGON_SERVERS
- //
- // MessageText:
- //
- // There are currently no logon servers available to service the logon request.
- //
- STATUS_NO_LOGON_SERVERS = NTSTATUS($C000005E);
- {$EXTERNALSYM STATUS_NO_LOGON_SERVERS}
- //
- // MessageId: STATUS_NO_SUCH_LOGON_SESSION
- //
- // MessageText:
- //
- // A specified logon session does not exist. It may already have been terminated.
- //
- STATUS_NO_SUCH_LOGON_SESSION = NTSTATUS($C000005F);
- {$EXTERNALSYM STATUS_NO_SUCH_LOGON_SESSION}
- //
- // MessageId: STATUS_NO_SUCH_PRIVILEGE
- //
- // MessageText:
- //
- // A specified privilege does not exist.
- //
- STATUS_NO_SUCH_PRIVILEGE = NTSTATUS($C0000060);
- {$EXTERNALSYM STATUS_NO_SUCH_PRIVILEGE}
- //
- // MessageId: STATUS_PRIVILEGE_NOT_HELD
- //
- // MessageText:
- //
- // A required privilege is not held by the client.
- //
- STATUS_PRIVILEGE_NOT_HELD = NTSTATUS($C0000061);
- {$EXTERNALSYM STATUS_PRIVILEGE_NOT_HELD}
- //
- // MessageId: STATUS_INVALID_ACCOUNT_NAME
- //
- // MessageText:
- //
- // The name provided is not a properly formed account name.
- //
- STATUS_INVALID_ACCOUNT_NAME = NTSTATUS($C0000062);
- {$EXTERNALSYM STATUS_INVALID_ACCOUNT_NAME}
- //
- // MessageId: STATUS_USER_EXISTS
- //
- // MessageText:
- //
- // The specified user already exists.
- //
- STATUS_USER_EXISTS = NTSTATUS($C0000063);
- {$EXTERNALSYM STATUS_USER_EXISTS}
- //
- // MessageId: STATUS_NO_SUCH_USER
- //
- // MessageText:
- //
- // The specified user does not exist.
- //
- STATUS_NO_SUCH_USER = NTSTATUS($C0000064); // ntsubauth
- {$EXTERNALSYM STATUS_NO_SUCH_USER}
- //
- // MessageId: STATUS_GROUP_EXISTS
- //
- // MessageText:
- //
- // The specified group already exists.
- //
- STATUS_GROUP_EXISTS = NTSTATUS($C0000065);
- {$EXTERNALSYM STATUS_GROUP_EXISTS}
- //
- // MessageId: STATUS_NO_SUCH_GROUP
- //
- // MessageText:
- //
- // The specified group does not exist.
- //
- STATUS_NO_SUCH_GROUP = NTSTATUS($C0000066);
- {$EXTERNALSYM STATUS_NO_SUCH_GROUP}
- //
- // MessageId: STATUS_MEMBER_IN_GROUP
- //
- // MessageText:
- //
- // The specified user account is already in the specified group account.
- // Also used to indicate a group cannot be deleted because it contains a member.
- //
- STATUS_MEMBER_IN_GROUP = NTSTATUS($C0000067);
- {$EXTERNALSYM STATUS_MEMBER_IN_GROUP}
- //
- // MessageId: STATUS_MEMBER_NOT_IN_GROUP
- //
- // MessageText:
- //
- // The specified user account is not a member of the specified group account.
- //
- STATUS_MEMBER_NOT_IN_GROUP = NTSTATUS($C0000068);
- {$EXTERNALSYM STATUS_MEMBER_NOT_IN_GROUP}
- //
- // MessageId: STATUS_LAST_ADMIN
- //
- // MessageText:
- //
- // Indicates the requested operation would disable or delete the last remaining administration account.
- // This is not allowed to prevent creating a situation in which the system cannot be administrated.
- //
- STATUS_LAST_ADMIN = NTSTATUS($C0000069);
- {$EXTERNALSYM STATUS_LAST_ADMIN}
- //
- // MessageId: STATUS_WRONG_PASSWORD
- //
- // MessageText:
- //
- // When trying to update a password, this return status indicates that the value provided as the current password is not correct.
- //
- STATUS_WRONG_PASSWORD = NTSTATUS($C000006A); // ntsubauth
- {$EXTERNALSYM STATUS_WRONG_PASSWORD}
- //
- // MessageId: STATUS_ILL_FORMED_PASSWORD
- //
- // MessageText:
- //
- // 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.
- //
- STATUS_ILL_FORMED_PASSWORD = NTSTATUS($C000006B);
- {$EXTERNALSYM STATUS_ILL_FORMED_PASSWORD}
- //
- // MessageId: STATUS_PASSWORD_RESTRICTION
- //
- // MessageText:
- //
- // When trying to update a password, this status indicates that some password update rule has been violated. For example, the password may not meet length criteria.
- //
- STATUS_PASSWORD_RESTRICTION = NTSTATUS($C000006C); // ntsubauth
- {$EXTERNALSYM STATUS_PASSWORD_RESTRICTION}
- //
- // MessageId: STATUS_LOGON_FAILURE
- //
- // MessageText:
- //
- // The attempted logon is invalid. This is either due to a bad username or authentication information.
- //
- STATUS_LOGON_FAILURE = NTSTATUS($C000006D); // ntsubauth
- {$EXTERNALSYM STATUS_LOGON_FAILURE}
- //
- // MessageId: STATUS_ACCOUNT_RESTRICTION
- //
- // MessageText:
- //
- // 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).
- //
- STATUS_ACCOUNT_RESTRICTION = NTSTATUS($C000006E); // ntsubauth
- {$EXTERNALSYM STATUS_ACCOUNT_RESTRICTION}
- //
- // MessageId: STATUS_INVALID_LOGON_HOURS
- //
- // MessageText:
- //
- // The user account has time restrictions and may not be logged onto at this time.
- //
- STATUS_INVALID_LOGON_HOURS = NTSTATUS($C000006F); // ntsubauth
- {$EXTERNALSYM STATUS_INVALID_LOGON_HOURS}
- //
- // MessageId: STATUS_INVALID_WORKSTATION
- //
- // MessageText:
- //
- // The user account is restricted such that it may not be used to log on from the source workstation.
- //
- STATUS_INVALID_WORKSTATION = NTSTATUS($C0000070); // ntsubauth
- {$EXTERNALSYM STATUS_INVALID_WORKSTATION}
- //
- // MessageId: STATUS_PASSWORD_EXPIRED
- //
- // MessageText:
- //
- // The user account's password has expired.
- //
- STATUS_PASSWORD_EXPIRED = NTSTATUS($C0000071); // ntsubauth
- {$EXTERNALSYM STATUS_PASSWORD_EXPIRED}
- //
- // MessageId: STATUS_ACCOUNT_DISABLED
- //
- // MessageText:
- //
- // The referenced account is currently disabled and may not be logged on to.
- //
- STATUS_ACCOUNT_DISABLED = NTSTATUS($C0000072); // ntsubauth
- {$EXTERNALSYM STATUS_ACCOUNT_DISABLED}
- //
- // MessageId: STATUS_NONE_MAPPED
- //
- // MessageText:
- //
- // None of the information to be translated has been translated.
- //
- STATUS_NONE_MAPPED = NTSTATUS($C0000073);
- {$EXTERNALSYM STATUS_NONE_MAPPED}
- //
- // MessageId: STATUS_TOO_MANY_LUIDS_REQUESTED
- //
- // MessageText:
- //
- // The number of LUIDs requested may not be allocated with a single allocation.
- //
- STATUS_TOO_MANY_LUIDS_REQUESTED = NTSTATUS($C0000074);
- {$EXTERNALSYM STATUS_TOO_MANY_LUIDS_REQUESTED}
- //
- // MessageId: STATUS_LUIDS_EXHAUSTED
- //
- // MessageText:
- //
- // Indicates there are no more LUIDs to allocate.
- //
- STATUS_LUIDS_EXHAUSTED = NTSTATUS($C0000075);
- {$EXTERNALSYM STATUS_LUIDS_EXHAUSTED}
- //
- // MessageId: STATUS_INVALID_SUB_AUTHORITY
- //
- // MessageText:
- //
- // Indicates the sub-authority value is invalid for the particular use.
- //
- STATUS_INVALID_SUB_AUTHORITY = NTSTATUS($C0000076);
- {$EXTERNALSYM STATUS_INVALID_SUB_AUTHORITY}
- //
- // MessageId: STATUS_INVALID_ACL
- //
- // MessageText:
- //
- // Indicates the ACL structure is not valid.
- //
- STATUS_INVALID_ACL = NTSTATUS($C0000077);
- {$EXTERNALSYM STATUS_INVALID_ACL}
- //
- // MessageId: STATUS_INVALID_SID
- //
- // MessageText:
- //
- // Indicates the SID structure is not valid.
- //
- STATUS_INVALID_SID = NTSTATUS($C0000078);
- {$EXTERNALSYM STATUS_INVALID_SID}
- //
- // MessageId: STATUS_INVALID_SECURITY_DESCR
- //
- // MessageText:
- //
- // Indicates the SECURITY_DESCRIPTOR structure is not valid.
- //
- STATUS_INVALID_SECURITY_DESCR = NTSTATUS($C0000079);
- {$EXTERNALSYM STATUS_INVALID_SECURITY_DESCR}
- //
- // MessageId: STATUS_PROCEDURE_NOT_FOUND
- //
- // MessageText:
- //
- // Indicates the specified procedure address cannot be found in the DLL.
- //
- STATUS_PROCEDURE_NOT_FOUND = NTSTATUS($C000007A);
- {$EXTERNALSYM STATUS_PROCEDURE_NOT_FOUND}
- //
- // MessageId: STATUS_INVALID_IMAGE_FORMAT
- //
- // MessageText:
- //
- // {Bad Image}
- // The application or DLL %hs is not a valid Windows image. Please check this against your installation diskette.
- //
- STATUS_INVALID_IMAGE_FORMAT = NTSTATUS($C000007B);
- {$EXTERNALSYM STATUS_INVALID_IMAGE_FORMAT}
- //
- // MessageId: STATUS_NO_TOKEN
- //
- // MessageText:
- //
- // An attempt was made to reference a token that doesn't exist.
- // This is typically done by referencing the token associated with a thread when the thread is not impersonating a client.
- //
- STATUS_NO_TOKEN = NTSTATUS($C000007C);
- {$EXTERNALSYM STATUS_NO_TOKEN}
- //
- // MessageId: STATUS_BAD_INHERITANCE_ACL
- //
- // MessageText:
- //
- // Indicates that an attempt to build either an inherited ACL or ACE was not successful.
- // This can be caused by a number of things. One of the more probable causes is the replacement of a CreatorId with an SID that didn't fit into the ACE or ACL.
- //
- STATUS_BAD_INHERITANCE_ACL = NTSTATUS($C000007D);
- {$EXTERNALSYM STATUS_BAD_INHERITANCE_ACL}
- //
- // MessageId: STATUS_RANGE_NOT_LOCKED
- //
- // MessageText:
- //
- // The range specified in NtUnlockFile was not locked.
- //
- STATUS_RANGE_NOT_LOCKED = NTSTATUS($C000007E);
- {$EXTERNALSYM STATUS_RANGE_NOT_LOCKED}
- //
- // MessageId: STATUS_DISK_FULL
- //
- // MessageText:
- //
- // An operation failed because the disk was full.
- //
- STATUS_DISK_FULL = NTSTATUS($C000007F);
- {$EXTERNALSYM STATUS_DISK_FULL}
- //
- // MessageId: STATUS_SERVER_DISABLED
- //
- // MessageText:
- //
- // The GUID allocation server is [already] disabled at the moment.
- //
- STATUS_SERVER_DISABLED = NTSTATUS($C0000080);
- {$EXTERNALSYM STATUS_SERVER_DISABLED}
- //
- // MessageId: STATUS_SERVER_NOT_DISABLED
- //
- // MessageText:
- //
- // The GUID allocation server is [already] enabled at the moment.
- //
- STATUS_SERVER_NOT_DISABLED = NTSTATUS($C0000081);
- {$EXTERNALSYM STATUS_SERVER_NOT_DISABLED}
- //
- // MessageId: STATUS_TOO_MANY_GUIDS_REQUESTED
- //
- // MessageText:
- //
- // Too many GUIDs were requested from the allocation server at once.
- //
- STATUS_TOO_MANY_GUIDS_REQUESTED = NTSTATUS($C0000082);
- {$EXTERNALSYM STATUS_TOO_MANY_GUIDS_REQUESTED}
- //
- // MessageId: STATUS_GUIDS_EXHAUSTED
- //
- // MessageText:
- //
- // The GUIDs could not be allocated because the Authority Agent was exhausted.
- //
- STATUS_GUIDS_EXHAUSTED = NTSTATUS($C0000083);
- {$EXTERNALSYM STATUS_GUIDS_EXHAUSTED}
- //
- // MessageId: STATUS_INVALID_ID_AUTHORITY
- //
- // MessageText:
- //
- // The value provided was an invalid value for an identifier authority.
- //
- STATUS_INVALID_ID_AUTHORITY = NTSTATUS($C0000084);
- {$EXTERNALSYM STATUS_INVALID_ID_AUTHORITY}
- //
- // MessageId: STATUS_AGENTS_EXHAUSTED
- //
- // MessageText:
- //
- // There are no more authority agent values available for the given identifier authority value.
- //
- STATUS_AGENTS_EXHAUSTED = NTSTATUS($C0000085);
- {$EXTERNALSYM STATUS_AGENTS_EXHAUSTED}
- //
- // MessageId: STATUS_INVALID_VOLUME_LABEL
- //
- // MessageText:
- //
- // An invalid volume label has been specified.
- //
- STATUS_INVALID_VOLUME_LABEL = NTSTATUS($C0000086);
- {$EXTERNALSYM STATUS_INVALID_VOLUME_LABEL}
- //
- // MessageId: STATUS_SECTION_NOT_EXTENDED
- //
- // MessageText:
- //
- // A mapped section could not be extended.
- //
- STATUS_SECTION_NOT_EXTENDED = NTSTATUS($C0000087);
- {$EXTERNALSYM STATUS_SECTION_NOT_EXTENDED}
- //
- // MessageId: STATUS_NOT_MAPPED_DATA
- //
- // MessageText:
- //
- // Specified section to flush does not map a data file.
- //
- STATUS_NOT_MAPPED_DATA = NTSTATUS($C0000088);
- {$EXTERNALSYM STATUS_NOT_MAPPED_DATA}
- //
- // MessageId: STATUS_RESOURCE_DATA_NOT_FOUND
- //
- // MessageText:
- //
- // Indicates the specified image file did not contain a resource section.
- //
- STATUS_RESOURCE_DATA_NOT_FOUND = NTSTATUS($C0000089);
- {$EXTERNALSYM STATUS_RESOURCE_DATA_NOT_FOUND}
- //
- // MessageId: STATUS_RESOURCE_TYPE_NOT_FOUND
- //
- // MessageText:
- //
- // Indicates the specified resource type cannot be found in the image file.
- //
- STATUS_RESOURCE_TYPE_NOT_FOUND = NTSTATUS($C000008A);
- {$EXTERNALSYM STATUS_RESOURCE_TYPE_NOT_FOUND}
- //
- // MessageId: STATUS_RESOURCE_NAME_NOT_FOUND
- //
- // MessageText:
- //
- // Indicates the specified resource name cannot be found in the image file.
- //
- STATUS_RESOURCE_NAME_NOT_FOUND = NTSTATUS($C000008B);
- {$EXTERNALSYM STATUS_RESOURCE_NAME_NOT_FOUND}
- //
- // MessageId: STATUS_ARRAY_BOUNDS_EXCEEDED
- //
- // MessageText:
- //
- // {EXCEPTION}
- // Array bounds exceeded.
- //
- STATUS_ARRAY_BOUNDS_EXCEEDED = NTSTATUS($C000008C); // winnt
- {$EXTERNALSYM STATUS_ARRAY_BOUNDS_EXCEEDED}
- //
- // MessageId: STATUS_FLOAT_DENORMAL_OPERAND
- //
- // MessageText:
- //
- // {EXCEPTION}
- // Floating-point denormal operand.
- //
- STATUS_FLOAT_DENORMAL_OPERAND = NTSTATUS($C000008D); // winnt
- {$EXTERNALSYM STATUS_FLOAT_DENORMAL_OPERAND}
- //
- // MessageId: STATUS_FLOAT_DIVIDE_BY_ZERO
- //
- // MessageText:
- //
- // {EXCEPTION}
- // Floating-point division by zero.
- //
- STATUS_FLOAT_DIVIDE_BY_ZERO = NTSTATUS($C000008E); // winnt
- {$EXTERNALSYM STATUS_FLOAT_DIVIDE_BY_ZERO}
- //
- // MessageId: STATUS_FLOAT_INEXACT_RESULT
- //
- // MessageText:
- //
- // {EXCEPTION}
- // Floating-point inexact result.
- //
- STATUS_FLOAT_INEXACT_RESULT = NTSTATUS($C000008F); // winnt
- {$EXTERNALSYM STATUS_FLOAT_INEXACT_RESULT}
- //
- // MessageId: STATUS_FLOAT_INVALID_OPERATION
- //
- // MessageText:
- //
- // {EXCEPTION}
- // Floating-point invalid operation.
- //
- STATUS_FLOAT_INVALID_OPERATION = NTSTATUS($C0000090); // winnt
- {$EXTERNALSYM STATUS_FLOAT_INVALID_OPERATION}
- //
- // MessageId: STATUS_FLOAT_OVERFLOW
- //
- // MessageText:
- //
- // {EXCEPTION}
- // Floating-point overflow.
- //
- STATUS_FLOAT_OVERFLOW = NTSTATUS($C0000091); // winnt
- {$EXTERNALSYM STATUS_FLOAT_OVERFLOW}
- //
- // MessageId: STATUS_FLOAT_STACK_CHECK
- //
- // MessageText:
- //
- // {EXCEPTION}
- // Floating-point stack check.
- //
- STATUS_FLOAT_STACK_CHECK = NTSTATUS($C0000092); // winnt
- {$EXTERNALSYM STATUS_FLOAT_STACK_CHECK}
- //
- // MessageId: STATUS_FLOAT_UNDERFLOW
- //
- // MessageText:
- //
- // {EXCEPTION}
- // Floating-point underflow.
- //
- STATUS_FLOAT_UNDERFLOW = NTSTATUS($C0000093); // winnt
- {$EXTERNALSYM STATUS_FLOAT_UNDERFLOW}
- //
- // MessageId: STATUS_INTEGER_DIVIDE_BY_ZERO
- //
- // MessageText:
- //
- // {EXCEPTION}
- // Integer division by zero.
- //
- STATUS_INTEGER_DIVIDE_BY_ZERO = NTSTATUS($C0000094); // winnt
- {$EXTERNALSYM STATUS_INTEGER_DIVIDE_BY_ZERO}
- //
- // MessageId: STATUS_INTEGER_OVERFLOW
- //
- // MessageText:
- //
- // {EXCEPTION}
- // Integer overflow.
- //
- STATUS_INTEGER_OVERFLOW = NTSTATUS($C0000095); // winnt
- {$EXTERNALSYM STATUS_INTEGER_OVERFLOW}
- //
- // MessageId: STATUS_PRIVILEGED_INSTRUCTION
- //
- // MessageText:
- //
- // {EXCEPTION}
- // Privileged instruction.
- //
- STATUS_PRIVILEGED_INSTRUCTION = NTSTATUS($C0000096); // winnt
- {$EXTERNALSYM STATUS_PRIVILEGED_INSTRUCTION}
- //
- // MessageId: STATUS_TOO_MANY_PAGING_FILES
- //
- // MessageText:
- //
- // An attempt was made to install more paging files than the system supports.
- //
- STATUS_TOO_MANY_PAGING_FILES = NTSTATUS($C0000097);
- {$EXTERNALSYM STATUS_TOO_MANY_PAGING_FILES}
- //
- // MessageId: STATUS_FILE_INVALID
- //
- // MessageText:
- //
- // The volume for a file has been externally altered such that the opened file is no longer valid.
- //
- STATUS_FILE_INVALID = NTSTATUS($C0000098);
- {$EXTERNALSYM STATUS_FILE_INVALID}
- //
- // MessageId: STATUS_ALLOTTED_SPACE_EXCEEDED
- //
- // MessageText:
- //
- // 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 may exceed the amount of memory originally allotted.
- // Since quota may already have been charged to several processes which have handles to the object, it is not reasonable to alter the size of the allocated memory.
- // Instead, a request that requires more memory than has been allotted must fail and the STATUS_ALLOTED_SPACE_EXCEEDED error returned.
- //
- STATUS_ALLOTTED_SPACE_EXCEEDED = NTSTATUS($C0000099);
- {$EXTERNALSYM STATUS_ALLOTTED_SPACE_EXCEEDED}
- //
- // MessageId: STATUS_INSUFFICIENT_RESOURCES
- //
- // MessageText:
- //
- // Insufficient system resources exist to complete the API.
- //
- STATUS_INSUFFICIENT_RESOURCES = NTSTATUS($C000009A); // ntsubauth
- {$EXTERNALSYM STATUS_INSUFFICIENT_RESOURCES}
- //
- // MessageId: STATUS_DFS_EXIT_PATH_FOUND
- //
- // MessageText:
- //
- // An attempt has been made to open a DFS exit path control file.
- //
- STATUS_DFS_EXIT_PATH_FOUND = NTSTATUS($C000009B);
- {$EXTERNALSYM STATUS_DFS_EXIT_PATH_FOUND}
- //
- // MessageId: STATUS_DEVICE_DATA_ERROR
- //
- // MessageText:
- //
- // STATUS_DEVICE_DATA_ERROR
- //
- STATUS_DEVICE_DATA_ERROR = NTSTATUS($C000009C);
- {$EXTERNALSYM STATUS_DEVICE_DATA_ERROR}
- //
- // MessageId: STATUS_DEVICE_NOT_CONNECTED
- //
- // MessageText:
- //
- // STATUS_DEVICE_NOT_CONNECTED
- //
- STATUS_DEVICE_NOT_CONNECTED = NTSTATUS($C000009D);
- {$EXTERNALSYM STATUS_DEVICE_NOT_CONNECTED}
- //
- // MessageId: STATUS_DEVICE_POWER_FAILURE
- //
- // MessageText:
- //
- // STATUS_DEVICE_POWER_FAILURE
- //
- STATUS_DEVICE_POWER_FAILURE = NTSTATUS($C000009E);
- {$EXTERNALSYM STATUS_DEVICE_POWER_FAILURE}
- //
- // MessageId: STATUS_FREE_VM_NOT_AT_BASE
- //
- // MessageText:
- //
- // Virtual memory cannot be freed as base address is not the base of the region and a region size of zero was specified.
- //
- STATUS_FREE_VM_NOT_AT_BASE = NTSTATUS($C000009F);
- {$EXTERNALSYM STATUS_FREE_VM_NOT_AT_BASE}
- //
- // MessageId: STATUS_MEMORY_NOT_ALLOCATED
- //
- // MessageText:
- //
- // An attempt was made to free virtual memory which is not allocated.
- //
- STATUS_MEMORY_NOT_ALLOCATED = NTSTATUS($C00000A0);
- {$EXTERNALSYM STATUS_MEMORY_NOT_ALLOCATED}
- //
- // MessageId: STATUS_WORKING_SET_QUOTA
- //
- // MessageText:
- //
- // The working set is not big enough to allow the requested pages to be locked.
- //
- STATUS_WORKING_SET_QUOTA = NTSTATUS($C00000A1);
- {$EXTERNALSYM STATUS_WORKING_SET_QUOTA}
- //
- // MessageId: STATUS_MEDIA_WRITE_PROTECTED
- //
- // MessageText:
- //
- // {Write Protect Error}
- // The disk cannot be written to because it is write protected.
- // Please remove the write protection from the volume %hs in drive %hs.
- //
- STATUS_MEDIA_WRITE_PROTECTED = NTSTATUS($C00000A2);
- {$EXTERNALSYM STATUS_MEDIA_WRITE_PROTECTED}
- //
- // MessageId: STATUS_DEVICE_NOT_READY
- //
- // MessageText:
- //
- // {Drive Not Ready}
- // The drive is not ready for use; its door may be open.
- // Please check drive %hs and make sure that a disk is inserted and that the drive door is closed.
- //
- STATUS_DEVICE_NOT_READY = NTSTATUS($C00000A3);
- {$EXTERNALSYM STATUS_DEVICE_NOT_READY}
- //
- // MessageId: STATUS_INVALID_GROUP_ATTRIBUTES
- //
- // MessageText:
- //
- // The specified attributes are invalid, or incompatible with the attributes for the group as a whole.
- //
- STATUS_INVALID_GROUP_ATTRIBUTES = NTSTATUS($C00000A4);
- {$EXTERNALSYM STATUS_INVALID_GROUP_ATTRIBUTES}
- //
- // MessageId: STATUS_BAD_IMPERSONATION_LEVEL
- //
- // MessageText:
- //
- // A specified impersonation level is invalid.
- // Also used to indicate a required impersonation level was not provided.
- //
- STATUS_BAD_IMPERSONATION_LEVEL = NTSTATUS($C00000A5);
- {$EXTERNALSYM STATUS_BAD_IMPERSONATION_LEVEL}
- //
- // MessageId: STATUS_CANT_OPEN_ANONYMOUS
- //
- // MessageText:
- //
- // An attempt was made to open an Anonymous level token.
- // Anonymous tokens may not be opened.
- //
- STATUS_CANT_OPEN_ANONYMOUS = NTSTATUS($C00000A6);
- {$EXTERNALSYM STATUS_CANT_OPEN_ANONYMOUS}
- //
- // MessageId: STATUS_BAD_VALIDATION_CLASS
- //
- // MessageText:
- //
- // The validation information class requested was invalid.
- //
- STATUS_BAD_VALIDATION_CLASS = NTSTATUS($C00000A7);
- {$EXTERNALSYM STATUS_BAD_VALIDATION_CLASS}
- //
- // MessageId: STATUS_BAD_TOKEN_TYPE
- //
- // MessageText:
- //
- // The type of a token object is inappropriate for its attempted use.
- //
- STATUS_BAD_TOKEN_TYPE = NTSTATUS($C00000A8);
- {$EXTERNALSYM STATUS_BAD_TOKEN_TYPE}
- //
- // MessageId: STATUS_BAD_MASTER_BOOT_RECORD
- //
- // MessageText:
- //
- // The type of a token object is inappropriate for its attempted use.
- //
- STATUS_BAD_MASTER_BOOT_RECORD = NTSTATUS($C00000A9);
- {$EXTERNALSYM STATUS_BAD_MASTER_BOOT_RECORD}
- //
- // MessageId: STATUS_INSTRUCTION_MISALIGNMENT
- //
- // MessageText:
- //
- // An attempt was made to execute an instruction at an unaligned address and the host system does not support unaligned instruction references.
- //
- STATUS_INSTRUCTION_MISALIGNMENT = NTSTATUS($C00000AA);
- {$EXTERNALSYM STATUS_INSTRUCTION_MISALIGNMENT}
- //
- // MessageId: STATUS_INSTANCE_NOT_AVAILABLE
- //
- // MessageText:
- //
- // The maximum named pipe instance count has been reached.
- //
- STATUS_INSTANCE_NOT_AVAILABLE = NTSTATUS($C00000AB);
- {$EXTERNALSYM STATUS_INSTANCE_NOT_AVAILABLE}
- //
- // MessageId: STATUS_PIPE_NOT_AVAILABLE
- //
- // MessageText:
- //
- // An instance of a named pipe cannot be found in the listening state.
- //
- STATUS_PIPE_NOT_AVAILABLE = NTSTATUS($C00000AC);
- {$EXTERNALSYM STATUS_PIPE_NOT_AVAILABLE}
- //
- // MessageId: STATUS_INVALID_PIPE_STATE
- //
- // MessageText:
- //
- // The named pipe is not in the connected or closing state.
- //
- STATUS_INVALID_PIPE_STATE = NTSTATUS($C00000AD);
- {$EXTERNALSYM STATUS_INVALID_PIPE_STATE}
- //
- // MessageId: STATUS_PIPE_BUSY
- //
- // MessageText:
- //
- // The specified pipe is set to complete operations and there are current I/O operations queued so it cannot be changed to queue operations.
- //
- STATUS_PIPE_BUSY = NTSTATUS($C00000AE);
- {$EXTERNALSYM STATUS_PIPE_BUSY}
- //
- // MessageId: STATUS_ILLEGAL_FUNCTION
- //
- // MessageText:
- //
- // The specified handle is not open to the server end of the named pipe.
- //
- STATUS_ILLEGAL_FUNCTION = NTSTATUS($C00000AF);
- {$EXTERNALSYM STATUS_ILLEGAL_FUNCTION}
- //
- // MessageId: STATUS_PIPE_DISCONNECTED
- //
- // MessageText:
- //
- // The specified named pipe is in the disconnected state.
- //
- STATUS_PIPE_DISCONNECTED = NTSTATUS($C00000B0);
- {$EXTERNALSYM STATUS_PIPE_DISCONNECTED}
- //
- // MessageId: STATUS_PIPE_CLOSING
- //
- // MessageText:
- //
- // The specified named pipe is in the closing state.
- //
- STATUS_PIPE_CLOSING = NTSTATUS($C00000B1);
- {$EXTERNALSYM STATUS_PIPE_CLOSING}
- //
- // MessageId: STATUS_PIPE_CONNECTED
- //
- // MessageText:
- //
- // The specified named pipe is in the connected state.
- //
- STATUS_PIPE_CONNECTED = NTSTATUS($C00000B2);
- {$EXTERNALSYM STATUS_PIPE_CONNECTED}
- //
- // MessageId: STATUS_PIPE_LISTENING
- //
- // MessageText:
- //
- // The specified named pipe is in the listening state.
- //
- STATUS_PIPE_LISTENING = NTSTATUS($C00000B3);
- {$EXTERNALSYM STATUS_PIPE_LISTENING}
- //
- // MessageId: STATUS_INVALID_READ_MODE
- //
- // MessageText:
- //
- // The specified named pipe is not in message mode.
- //
- STATUS_INVALID_READ_MODE = NTSTATUS($C00000B4);
- {$EXTERNALSYM STATUS_INVALID_READ_MODE}
- //
- // MessageId: STATUS_IO_TIMEOUT
- //
- // MessageText:
- //
- // {Device Timeout}
- // The specified I/O operation on %hs was not completed before the time-out period expired.
- //
- STATUS_IO_TIMEOUT = NTSTATUS($C00000B5);
- {$EXTERNALSYM STATUS_IO_TIMEOUT}
- //
- // MessageId: STATUS_FILE_FORCED_CLOSED
- //
- // MessageText:
- //
- // The specified file has been closed by another process.
- //
- STATUS_FILE_FORCED_CLOSED = NTSTATUS($C00000B6);
- {$EXTERNALSYM STATUS_FILE_FORCED_CLOSED}
- //
- // MessageId: STATUS_PROFILING_NOT_STARTED
- //
- // MessageText:
- //
- // Profiling not started.
- //
- STATUS_PROFILING_NOT_STARTED = NTSTATUS($C00000B7);
- {$EXTERNALSYM STATUS_PROFILING_NOT_STARTED}
- //
- // MessageId: STATUS_PROFILING_NOT_STOPPED
- //
- // MessageText:
- //
- // Profiling not stopped.
- //
- STATUS_PROFILING_NOT_STOPPED = NTSTATUS($C00000B8);
- {$EXTERNALSYM STATUS_PROFILING_NOT_STOPPED}
- //
- // MessageId: STATUS_COULD_NOT_INTERPRET
- //
- // MessageText:
- //
- // The passed ACL did not contain the minimum required information.
- //
- STATUS_COULD_NOT_INTERPRET = NTSTATUS($C00000B9);
- {$EXTERNALSYM STATUS_COULD_NOT_INTERPRET}
- //
- // MessageId: STATUS_FILE_IS_A_DIRECTORY
- //
- // MessageText:
- //
- // The file that was specified as a target is a directory and the caller specified that it could be anything but a directory.
- //
- STATUS_FILE_IS_A_DIRECTORY = NTSTATUS($C00000BA);
- {$EXTERNALSYM STATUS_FILE_IS_A_DIRECTORY}
- //
- // Network specific errors.
- //
- //
- //
- // MessageId: STATUS_NOT_SUPPORTED
- //
- // MessageText:
- //
- // The network request is not supported.
- //
- STATUS_NOT_SUPPORTED = NTSTATUS($C00000BB);
- {$EXTERNALSYM STATUS_NOT_SUPPORTED}
- //
- // MessageId: STATUS_REMOTE_NOT_LISTENING
- //
- // MessageText:
- //
- // This remote computer is not listening.
- //
- STATUS_REMOTE_NOT_LISTENING = NTSTATUS($C00000BC);
- {$EXTERNALSYM STATUS_REMOTE_NOT_LISTENING}
- //
- // MessageId: STATUS_DUPLICATE_NAME
- //
- // MessageText:
- //
- // A duplicate name exists on the network.
- //
- STATUS_DUPLICATE_NAME = NTSTATUS($C00000BD);
- {$EXTERNALSYM STATUS_DUPLICATE_NAME}
- //
- // MessageId: STATUS_BAD_NETWORK_PATH
- //
- // MessageText:
- //
- // The network path cannot be located.
- //
- STATUS_BAD_NETWORK_PATH = NTSTATUS($C00000BE);
- {$EXTERNALSYM STATUS_BAD_NETWORK_PATH}
- //
- // MessageId: STATUS_NETWORK_BUSY
- //
- // MessageText:
- //
- // The network is busy.
- //
- STATUS_NETWORK_BUSY = NTSTATUS($C00000BF);
- {$EXTERNALSYM STATUS_NETWORK_BUSY}
- //
- // MessageId: STATUS_DEVICE_DOES_NOT_EXIST
- //
- // MessageText:
- //
- // This device does not exist.
- //
- STATUS_DEVICE_DOES_NOT_EXIST = NTSTATUS($C00000C0);
- {$EXTERNALSYM STATUS_DEVICE_DOES_NOT_EXIST}
- //
- // MessageId: STATUS_TOO_MANY_COMMANDS
- //
- // MessageText:
- //
- // The network BIOS command limit has been reached.
- //
- STATUS_TOO_MANY_COMMANDS = NTSTATUS($C00000C1);
- {$EXTERNALSYM STATUS_TOO_MANY_COMMANDS}
- //
- // MessageId: STATUS_ADAPTER_HARDWARE_ERROR
- //
- // MessageText:
- //
- // An I/O adapter hardware error has occurred.
- //
- STATUS_ADAPTER_HARDWARE_ERROR = NTSTATUS($C00000C2);
- {$EXTERNALSYM STATUS_ADAPTER_HARDWARE_ERROR}
- //
- // MessageId: STATUS_INVALID_NETWORK_RESPONSE
- //
- // MessageText:
- //
- // The network responded incorrectly.
- //
- STATUS_INVALID_NETWORK_RESPONSE = NTSTATUS($C00000C3);
- {$EXTERNALSYM STATUS_INVALID_NETWORK_RESPONSE}
- //
- // MessageId: STATUS_UNEXPECTED_NETWORK_ERROR
- //
- // MessageText:
- //
- // An unexpected network error occurred.
- //
- STATUS_UNEXPECTED_NETWORK_ERROR = NTSTATUS($C00000C4);
- {$EXTERNALSYM STATUS_UNEXPECTED_NETWORK_ERROR}
- //
- // MessageId: STATUS_BAD_REMOTE_ADAPTER
- //
- // MessageText:
- //
- // The remote adapter is not compatible.
- //
- STATUS_BAD_REMOTE_ADAPTER = NTSTATUS($C00000C5);
- {$EXTERNALSYM STATUS_BAD_REMOTE_ADAPTER}
- //
- // MessageId: STATUS_PRINT_QUEUE_FULL
- //
- // MessageText:
- //
- // The printer queue is full.
- //
- STATUS_PRINT_QUEUE_FULL = NTSTATUS($C00000C6);
- {$EXTERNALSYM STATUS_PRINT_QUEUE_FULL}
- //
- // MessageId: STATUS_NO_SPOOL_SPACE
- //
- // MessageText:
- //
- // Space to store the file waiting to be printed is not available on the server.
- //
- STATUS_NO_SPOOL_SPACE = NTSTATUS($C00000C7);
- {$EXTERNALSYM STATUS_NO_SPOOL_SPACE}
- //
- // MessageId: STATUS_PRINT_CANCELLED
- //
- // MessageText:
- //
- // The requested print file has been canceled.
- //
- STATUS_PRINT_CANCELLED = NTSTATUS($C00000C8);
- {$EXTERNALSYM STATUS_PRINT_CANCELLED}
- //
- // MessageId: STATUS_NETWORK_NAME_DELETED
- //
- // MessageText:
- //
- // The network name was deleted.
- //
- STATUS_NETWORK_NAME_DELETED = NTSTATUS($C00000C9);
- {$EXTERNALSYM STATUS_NETWORK_NAME_DELETED}
- //
- // MessageId: STATUS_NETWORK_ACCESS_DENIED
- //
- // MessageText:
- //
- // Network access is denied.
- //
- STATUS_NETWORK_ACCESS_DENIED = NTSTATUS($C00000CA);
- {$EXTERNALSYM STATUS_NETWORK_ACCESS_DENIED}
- //
- // MessageId: STATUS_BAD_DEVICE_TYPE
- //
- // MessageText:
- //
- // {Incorrect Network Resource Type}
- // The specified device type (LPT, for example) conflicts with the actual device type on the remote resource.
- //
- STATUS_BAD_DEVICE_TYPE = NTSTATUS($C00000CB);
- {$EXTERNALSYM STATUS_BAD_DEVICE_TYPE}
- //
- // MessageId: STATUS_BAD_NETWORK_NAME
- //
- // MessageText:
- //
- // {Network Name Not Found}
- // The specified share name cannot be found on the remote server.
- //
- STATUS_BAD_NETWORK_NAME = NTSTATUS($C00000CC);
- {$EXTERNALSYM STATUS_BAD_NETWORK_NAME}
- //
- // MessageId: STATUS_TOO_MANY_NAMES
- //
- // MessageText:
- //
- // The name limit for the local computer network adapter card was exceeded.
- //
- STATUS_TOO_MANY_NAMES = NTSTATUS($C00000CD);
- {$EXTERNALSYM STATUS_TOO_MANY_NAMES}
- //
- // MessageId: STATUS_TOO_MANY_SESSIONS
- //
- // MessageText:
- //
- // The network BIOS session limit was exceeded.
- //
- STATUS_TOO_MANY_SESSIONS = NTSTATUS($C00000CE);
- {$EXTERNALSYM STATUS_TOO_MANY_SESSIONS}
- //
- // MessageId: STATUS_SHARING_PAUSED
- //
- // MessageText:
- //
- // File sharing has been temporarily paused.
- //
- STATUS_SHARING_PAUSED = NTSTATUS($C00000CF);
- {$EXTERNALSYM STATUS_SHARING_PAUSED}
- //
- // MessageId: STATUS_REQUEST_NOT_ACCEPTED
- //
- // MessageText:
- //
- // No more connections can be made to this remote computer at this time because there are already as many connections as the computer can accept.
- //
- STATUS_REQUEST_NOT_ACCEPTED = NTSTATUS($C00000D0);
- {$EXTERNALSYM STATUS_REQUEST_NOT_ACCEPTED}
- //
- // MessageId: STATUS_REDIRECTOR_PAUSED
- //
- // MessageText:
- //
- // Print or disk redirection is temporarily paused.
- //
- STATUS_REDIRECTOR_PAUSED = NTSTATUS($C00000D1);
- {$EXTERNALSYM STATUS_REDIRECTOR_PAUSED}
- //
- // MessageId: STATUS_NET_WRITE_FAULT
- //
- // MessageText:
- //
- // A network data fault occurred.
- //
- STATUS_NET_WRITE_FAULT = NTSTATUS($C00000D2);
- {$EXTERNALSYM STATUS_NET_WRITE_FAULT}
- //
- // MessageId: STATUS_PROFILING_AT_LIMIT
- //
- // MessageText:
- //
- // The number of active profiling objects is at the maximum and no more may be started.
- //
- STATUS_PROFILING_AT_LIMIT = NTSTATUS($C00000D3);
- {$EXTERNALSYM STATUS_PROFILING_AT_LIMIT}
- //
- // MessageId: STATUS_NOT_SAME_DEVICE
- //
- // MessageText:
- //
- // {Incorrect Volume}
- // The target file of a rename request is located on a different device than the source of the rename request.
- //
- STATUS_NOT_SAME_DEVICE = NTSTATUS($C00000D4);
- {$EXTERNALSYM STATUS_NOT_SAME_DEVICE}
- //
- // MessageId: STATUS_FILE_RENAMED
- //
- // MessageText:
- //
- // The file specified has been renamed and thus cannot be modified.
- //
- STATUS_FILE_RENAMED = NTSTATUS($C00000D5);
- {$EXTERNALSYM STATUS_FILE_RENAMED}
- //
- // MessageId: STATUS_VIRTUAL_CIRCUIT_CLOSED
- //
- // MessageText:
- //
- // {Network Request Timeout}
- // The session with a remote server has been disconnected because the time-out interval for a request has expired.
- //
- STATUS_VIRTUAL_CIRCUIT_CLOSED = NTSTATUS($C00000D6);
- {$EXTERNALSYM STATUS_VIRTUAL_CIRCUIT_CLOSED}
- //
- // MessageId: STATUS_NO_SECURITY_ON_OBJECT
- //
- // MessageText:
- //
- // Indicates an attempt was made to operate on the security of an object that does not have security associated with it.
- //
- STATUS_NO_SECURITY_ON_OBJECT = NTSTATUS($C00000D7);
- {$EXTERNALSYM STATUS_NO_SECURITY_ON_OBJECT}
- //
- // MessageId: STATUS_CANT_WAIT
- //
- // MessageText:
- //
- // Used to indicate that an operation cannot continue without blocking for I/O.
- //
- STATUS_CANT_WAIT = NTSTATUS($C00000D8);
- {$EXTERNALSYM STATUS_CANT_WAIT}
- //
- // MessageId: STATUS_PIPE_EMPTY
- //
- // MessageText:
- //
- // Used to indicate that a read operation was done on an empty pipe.
- //
- STATUS_PIPE_EMPTY = NTSTATUS($C00000D9);
- {$EXTERNALSYM STATUS_PIPE_EMPTY}
- //
- // MessageId: STATUS_CANT_ACCESS_DOMAIN_INFO
- //
- // MessageText:
- //
- // Configuration information could not be read from the domain controller, either because the machine is unavailable, or access has been denied.
- //
- STATUS_CANT_ACCESS_DOMAIN_INFO = NTSTATUS($C00000DA);
- {$EXTERNALSYM STATUS_CANT_ACCESS_DOMAIN_INFO}
- //
- // MessageId: STATUS_CANT_TERMINATE_SELF
- //
- // MessageText:
- //
- // Indicates that a thread attempted to terminate itself by default (called NtTerminateThread with NULL) and it was the last thread in the current process.
- //
- STATUS_CANT_TERMINATE_SELF = NTSTATUS($C00000DB);
- {$EXTERNALSYM STATUS_CANT_TERMINATE_SELF}
- //
- // MessageId: STATUS_INVALID_SERVER_STATE
- //
- // MessageText:
- //
- // Indicates the Sam Server was in the wrong state to perform the desired operation.
- //
- STATUS_INVALID_SERVER_STATE = NTSTATUS($C00000DC);
- {$EXTERNALSYM STATUS_INVALID_SERVER_STATE}
- //
- // MessageId: STATUS_INVALID_DOMAIN_STATE
- //
- // MessageText:
- //
- // Indicates the Domain was in the wrong state to perform the desired operation.
- //
- STATUS_INVALID_DOMAIN_STATE = NTSTATUS($C00000DD);
- {$EXTERNALSYM STATUS_INVALID_DOMAIN_STATE}
- //
- // MessageId: STATUS_INVALID_DOMAIN_ROLE
- //
- // MessageText:
- //
- // This operation is only allowed for the Primary Domain Controller of the domain.
- //
- STATUS_INVALID_DOMAIN_ROLE = NTSTATUS($C00000DE);
- {$EXTERNALSYM STATUS_INVALID_DOMAIN_ROLE}
- //
- // MessageId: STATUS_NO_SUCH_DOMAIN
- //
- // MessageText:
- //
- // The specified Domain did not exist.
- //
- STATUS_NO_SUCH_DOMAIN = NTSTATUS($C00000DF);
- {$EXTERNALSYM STATUS_NO_SUCH_DOMAIN}
- //
- // MessageId: STATUS_DOMAIN_EXISTS
- //
- // MessageText:
- //
- // The specified Domain already exists.
- //
- STATUS_DOMAIN_EXISTS = NTSTATUS($C00000E0);
- {$EXTERNALSYM STATUS_DOMAIN_EXISTS}
- //
- // MessageId: STATUS_DOMAIN_LIMIT_EXCEEDED
- //
- // MessageText:
- //
- // An attempt was made to exceed the limit on the number of domains per server for this release.
- //
- STATUS_DOMAIN_LIMIT_EXCEEDED = NTSTATUS($C00000E1);
- {$EXTERNALSYM STATUS_DOMAIN_LIMIT_EXCEEDED}
- //
- // MessageId: STATUS_OPLOCK_NOT_GRANTED
- //
- // MessageText:
- //
- // Error status returned when oplock request is denied.
- //
- STATUS_OPLOCK_NOT_GRANTED = NTSTATUS($C00000E2);
- {$EXTERNALSYM STATUS_OPLOCK_NOT_GRANTED}
- //
- // MessageId: STATUS_INVALID_OPLOCK_PROTOCOL
- //
- // MessageText:
- //
- // Error status returned when an invalid oplock acknowledgment is received by a file system.
- //
- STATUS_INVALID_OPLOCK_PROTOCOL = NTSTATUS($C00000E3);
- {$EXTERNALSYM STATUS_INVALID_OPLOCK_PROTOCOL}
- //
- // MessageId: STATUS_INTERNAL_DB_CORRUPTION
- //
- // MessageText:
- //
- // This error indicates that the requested operation cannot be completed due to a catastrophic media failure or on-disk data structure corruption.
- //
- STATUS_INTERNAL_DB_CORRUPTION = NTSTATUS($C00000E4);
- {$EXTERNALSYM STATUS_INTERNAL_DB_CORRUPTION}
- //
- // MessageId: STATUS_INTERNAL_ERROR
- //
- // MessageText:
- //
- // An internal error occurred.
- //
- STATUS_INTERNAL_ERROR = NTSTATUS($C00000E5);
- {$EXTERNALSYM STATUS_INTERNAL_ERROR}
- //
- // MessageId: STATUS_GENERIC_NOT_MAPPED
- //
- // MessageText:
- //
- // Indicates generic access types were contained in an access mask which should already be mapped to non-generic access types.
- //
- STATUS_GENERIC_NOT_MAPPED = NTSTATUS($C00000E6);
- {$EXTERNALSYM STATUS_GENERIC_NOT_MAPPED}
- //
- // MessageId: STATUS_BAD_DESCRIPTOR_FORMAT
- //
- // MessageText:
- //
- // Indicates a security descriptor is not in the necessary format (absolute or self-relative).
- //
- STATUS_BAD_DESCRIPTOR_FORMAT = NTSTATUS($C00000E7);
- {$EXTERNALSYM STATUS_BAD_DESCRIPTOR_FORMAT}
- //
- // Status codes raised by the Cache Manager which must be considered as
- // "expected" by its callers.
- //
- //
- // MessageId: STATUS_INVALID_USER_BUFFER
- //
- // MessageText:
- //
- // An access to a user buffer failed at an "expected" point in time.
- // This code is defined since the caller does not want to accept STATUS_ACCESS_VIOLATION in its filter.
- //
- STATUS_INVALID_USER_BUFFER = NTSTATUS($C00000E8);
- {$EXTERNALSYM STATUS_INVALID_USER_BUFFER}
- //
- // MessageId: STATUS_UNEXPECTED_IO_ERROR
- //
- // MessageText:
- //
- // If an I/O error is returned which is not defined in the standard FsRtl filter, it is converted to the following error which is guaranteed to be in the filter.
- // In this case information is lost, however, the filter correctly handles the exception.
- //
- STATUS_UNEXPECTED_IO_ERROR = NTSTATUS($C00000E9);
- {$EXTERNALSYM STATUS_UNEXPECTED_IO_ERROR}
- //
- // MessageId: STATUS_UNEXPECTED_MM_CREATE_ERR
- //
- // MessageText:
- //
- // If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter.
- // In this case information is lost, however, the filter correctly handles the exception.
- //
- STATUS_UNEXPECTED_MM_CREATE_ERR = NTSTATUS($C00000EA);
- {$EXTERNALSYM STATUS_UNEXPECTED_MM_CREATE_ERR}
- //
- // MessageId: STATUS_UNEXPECTED_MM_MAP_ERROR
- //
- // MessageText:
- //
- // If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter.
- // In this case information is lost, however, the filter correctly handles the exception.
- //
- STATUS_UNEXPECTED_MM_MAP_ERROR = NTSTATUS($C00000EB);
- {$EXTERNALSYM STATUS_UNEXPECTED_MM_MAP_ERROR}
- //
- // MessageId: STATUS_UNEXPECTED_MM_EXTEND_ERR
- //
- // MessageText:
- //
- // If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter.
- // In this case information is lost, however, the filter correctly handles the exception.
- //
- STATUS_UNEXPECTED_MM_EXTEND_ERR = NTSTATUS($C00000EC);
- {$EXTERNALSYM STATUS_UNEXPECTED_MM_EXTEND_ERR}
- //
- // MessageId: STATUS_NOT_LOGON_PROCESS
- //
- // MessageText:
- //
- // The requested action is restricted for use by logon processes only. The calling process has not registered as a logon process.
- //
- STATUS_NOT_LOGON_PROCESS = NTSTATUS($C00000ED);
- {$EXTERNALSYM STATUS_NOT_LOGON_PROCESS}
- //
- // MessageId: STATUS_LOGON_SESSION_EXISTS
- //
- // MessageText:
- //
- // An attempt has been made to start a new session manager or LSA logon session with an ID that is already in use.
- //
- STATUS_LOGON_SESSION_EXISTS = NTSTATUS($C00000EE);
- {$EXTERNALSYM STATUS_LOGON_SESSION_EXISTS}
- //
- // MessageId: STATUS_INVALID_PARAMETER_1
- //
- // MessageText:
- //
- // An invalid parameter was passed to a service or function as the first argument.
- //
- STATUS_INVALID_PARAMETER_1 = NTSTATUS($C00000EF);
- {$EXTERNALSYM STATUS_INVALID_PARAMETER_1}
- //
- // MessageId: STATUS_INVALID_PARAMETER_2
- //
- // MessageText:
- //
- // An invalid parameter was passed to a service or function as the second argument.
- //
- STATUS_INVALID_PARAMETER_2 = NTSTATUS($C00000F0);
- {$EXTERNALSYM STATUS_INVALID_PARAMETER_2}
- //
- // MessageId: STATUS_INVALID_PARAMETER_3
- //
- // MessageText:
- //
- // An invalid parameter was passed to a service or function as the third argument.
- //
- STATUS_INVALID_PARAMETER_3 = NTSTATUS($C00000F1);
- {$EXTERNALSYM STATUS_INVALID_PARAMETER_3}
- //
- // MessageId: STATUS_INVALID_PARAMETER_4
- //
- // MessageText:
- //
- // An invalid parameter was passed to a service or function as the fourth argument.
- //
- STATUS_INVALID_PARAMETER_4 = NTSTATUS($C00000F2);
- {$EXTERNALSYM STATUS_INVALID_PARAMETER_4}
- //
- // MessageId: STATUS_INVALID_PARAMETER_5
- //
- // MessageText:
- //
- // An invalid parameter was passed to a service or function as the fifth argument.
- //
- STATUS_INVALID_PARAMETER_5 = NTSTATUS($C00000F3);
- {$EXTERNALSYM STATUS_INVALID_PARAMETER_5}
- //
- // MessageId: STATUS_INVALID_PARAMETER_6
- //
- // MessageText:
- //
- // An invalid parameter was passed to a service or function as the sixth argument.
- //
- STATUS_INVALID_PARAMETER_6 = NTSTATUS($C00000F4);
- {$EXTERNALSYM STATUS_INVALID_PARAMETER_6}
- //
- // MessageId: STATUS_INVALID_PARAMETER_7
- //
- // MessageText:
- //
- // An invalid parameter was passed to a service or function as the seventh argument.
- //
- STATUS_INVALID_PARAMETER_7 = NTSTATUS($C00000F5);
- {$EXTERNALSYM STATUS_INVALID_PARAMETER_7}
- //
- // MessageId: STATUS_INVALID_PARAMETER_8
- //
- // MessageText:
- //
- // An invalid parameter was passed to a service or function as the eighth argument.
- //
- STATUS_INVALID_PARAMETER_8 = NTSTATUS($C00000F6);
- {$EXTERNALSYM STATUS_INVALID_PARAMETER_8}
- //
- // MessageId: STATUS_INVALID_PARAMETER_9
- //
- // MessageText:
- //
- // An invalid parameter was passed to a service or function as the ninth argument.
- //
- STATUS_INVALID_PARAMETER_9 = NTSTATUS($C00000F7);
- {$EXTERNALSYM STATUS_INVALID_PARAMETER_9}
- //
- // MessageId: STATUS_INVALID_PARAMETER_10
- //
- // MessageText:
- //
- // An invalid parameter was passed to a service or function as the tenth argument.
- //
- STATUS_INVALID_PARAMETER_10 = NTSTATUS($C00000F8);
- {$EXTERNALSYM STATUS_INVALID_PARAMETER_10}
- //
- // MessageId: STATUS_INVALID_PARAMETER_11
- //
- // MessageText:
- //
- // An invalid parameter was passed to a service or function as the eleventh argument.
- //
- STATUS_INVALID_PARAMETER_11 = NTSTATUS($C00000F9);
- {$EXTERNALSYM STATUS_INVALID_PARAMETER_11}
- //
- // MessageId: STATUS_INVALID_PARAMETER_12
- //
- // MessageText:
- //
- // An invalid parameter was passed to a service or function as the twelfth argument.
- //
- STATUS_INVALID_PARAMETER_12 = NTSTATUS($C00000FA);
- {$EXTERNALSYM STATUS_INVALID_PARAMETER_12}
- //
- // MessageId: STATUS_REDIRECTOR_NOT_STARTED
- //
- // MessageText:
- //
- // An attempt was made to access a network file, but the network software was not yet started.
- //
- STATUS_REDIRECTOR_NOT_STARTED = NTSTATUS($C00000FB);
- {$EXTERNALSYM STATUS_REDIRECTOR_NOT_STARTED}
- //
- // MessageId: STATUS_REDIRECTOR_STARTED
- //
- // MessageText:
- //
- // An attempt was made to start the redirector, but the redirector has already been started.
- //
- STATUS_REDIRECTOR_STARTED = NTSTATUS($C00000FC);
- {$EXTERNALSYM STATUS_REDIRECTOR_STARTED}
- //
- // MessageId: STATUS_STACK_OVERFLOW
- //
- // MessageText:
- //
- // A new guard page for the stack cannot be created.
- //
- STATUS_STACK_OVERFLOW = NTSTATUS($C00000FD); // winnt
- {$EXTERNALSYM STATUS_STACK_OVERFLOW}
- //
- // MessageId: STATUS_NO_SUCH_PACKAGE
- //
- // MessageText:
- //
- // A specified authentication package is unknown.
- //
- STATUS_NO_SUCH_PACKAGE = NTSTATUS($C00000FE);
- {$EXTERNALSYM STATUS_NO_SUCH_PACKAGE}
- //
- // MessageId: STATUS_BAD_FUNCTION_TABLE
- //
- // MessageText:
- //
- // A malformed function table was encountered during an unwind operation.
- //
- STATUS_BAD_FUNCTION_TABLE = NTSTATUS($C00000FF);
- {$EXTERNALSYM STATUS_BAD_FUNCTION_TABLE}
- //
- // MessageId: STATUS_VARIABLE_NOT_FOUND
- //
- // MessageText:
- //
- // Indicates the specified environment variable name was not found in the specified environment block.
- //
- STATUS_VARIABLE_NOT_FOUND = NTSTATUS($C0000100);
- {$EXTERNALSYM STATUS_VARIABLE_NOT_FOUND}
- //
- // MessageId: STATUS_DIRECTORY_NOT_EMPTY
- //
- // MessageText:
- //
- // Indicates that the directory trying to be deleted is not empty.
- //
- STATUS_DIRECTORY_NOT_EMPTY = NTSTATUS($C0000101);
- {$EXTERNALSYM STATUS_DIRECTORY_NOT_EMPTY}
- //
- // MessageId: STATUS_FILE_CORRUPT_ERROR
- //
- // MessageText:
- //
- // {Corrupt File}
- // The file or directory %hs is corrupt and unreadable.
- // Please run the Chkdsk utility.
- //
- STATUS_FILE_CORRUPT_ERROR = NTSTATUS($C0000102);
- {$EXTERNALSYM STATUS_FILE_CORRUPT_ERROR}
- //
- // MessageId: STATUS_NOT_A_DIRECTORY
- //
- // MessageText:
- //
- // A requested opened file is not a directory.
- //
- STATUS_NOT_A_DIRECTORY = NTSTATUS($C0000103);
- {$EXTERNALSYM STATUS_NOT_A_DIRECTORY}
- //
- // MessageId: STATUS_BAD_LOGON_SESSION_STATE
- //
- // MessageText:
- //
- // The logon session is not in a state that is consistent with the requested operation.
- //
- STATUS_BAD_LOGON_SESSION_STATE = NTSTATUS($C0000104);
- {$EXTERNALSYM STATUS_BAD_LOGON_SESSION_STATE}
- //
- // MessageId: STATUS_LOGON_SESSION_COLLISION
- //
- // MessageText:
- //
- // An internal LSA error has occurred. An authentication package has requested the creation of a Logon Session but the ID of an already existing Logon Session has been specified.
- //
- STATUS_LOGON_SESSION_COLLISION = NTSTATUS($C0000105);
- {$EXTERNALSYM STATUS_LOGON_SESSION_COLLISION}
- //
- // MessageId: STATUS_NAME_TOO_LONG
- //
- // MessageText:
- //
- // A specified name string is too long for its intended use.
- //
- STATUS_NAME_TOO_LONG = NTSTATUS($C0000106);
- {$EXTERNALSYM STATUS_NAME_TOO_LONG}
- //
- // MessageId: STATUS_FILES_OPEN
- //
- // MessageText:
- //
- // 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.
- //
- STATUS_FILES_OPEN = NTSTATUS($C0000107);
- {$EXTERNALSYM STATUS_FILES_OPEN}
- //
- // MessageId: STATUS_CONNECTION_IN_USE
- //
- // MessageText:
- //
- // 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.
- //
- STATUS_CONNECTION_IN_USE = NTSTATUS($C0000108);
- {$EXTERNALSYM STATUS_CONNECTION_IN_USE}
- //
- // MessageId: STATUS_MESSAGE_NOT_FOUND
- //
- // MessageText:
- //
- // RtlFindMessage could not locate the requested message ID in the message table resource.
- //
- STATUS_MESSAGE_NOT_FOUND = NTSTATUS($C0000109);
- {$EXTERNALSYM STATUS_MESSAGE_NOT_FOUND}
- //
- // MessageId: STATUS_PROCESS_IS_TERMINATING
- //
- // MessageText:
- //
- // An attempt was made to duplicate an object handle into or out of an exiting process.
- //
- STATUS_PROCESS_IS_TERMINATING = NTSTATUS($C000010A);
- {$EXTERNALSYM STATUS_PROCESS_IS_TERMINATING}
- //
- // MessageId: STATUS_INVALID_LOGON_TYPE
- //
- // MessageText:
- //
- // Indicates an invalid value has been provided for the LogonType requested.
- //
- STATUS_INVALID_LOGON_TYPE = NTSTATUS($C000010B);
- {$EXTERNALSYM STATUS_INVALID_LOGON_TYPE}
- //
- // MessageId: STATUS_NO_GUID_TRANSLATION
- //
- // MessageText:
- //
- // Indicates that an attempt was made to assign protection to a file system file or directory and one of the SIDs in the security descriptor could not be translated into a GUID that could be stored by the file system.
- // This causes the protection attempt to fail, which may cause a file creation attempt to fail.
- //
- STATUS_NO_GUID_TRANSLATION = NTSTATUS($C000010C);
- {$EXTERNALSYM STATUS_NO_GUID_TRANSLATION}
- //
- // MessageId: STATUS_CANNOT_IMPERSONATE
- //
- // MessageText:
- //
- // Indicates that an attempt has been made to impersonate via a named pipe that has not yet been read from.
- //
- STATUS_CANNOT_IMPERSONATE = NTSTATUS($C000010D);
- {$EXTERNALSYM STATUS_CANNOT_IMPERSONATE}
- //
- // MessageId: STATUS_IMAGE_ALREADY_LOADED
- //
- // MessageText:
- //
- // Indicates that the specified image is already loaded.
- //
- STATUS_IMAGE_ALREADY_LOADED = NTSTATUS($C000010E);
- {$EXTERNALSYM STATUS_IMAGE_ALREADY_LOADED}
- //
- // ============================================================
- // NOTE: The following ABIOS error code should be reserved on
- // non ABIOS kernel. Eventually, I will remove the ifdef
- // ABIOS.
- // ============================================================
- //
- //
- // MessageId: STATUS_ABIOS_NOT_PRESENT
- //
- // MessageText:
- //
- // STATUS_ABIOS_NOT_PRESENT
- //
- STATUS_ABIOS_NOT_PRESENT = NTSTATUS($C000010F);
- {$EXTERNALSYM STATUS_ABIOS_NOT_PRESENT}
- //
- // MessageId: STATUS_ABIOS_LID_NOT_EXIST
- //
- // MessageText:
- //
- // STATUS_ABIOS_LID_NOT_EXIST
- //
- STATUS_ABIOS_LID_NOT_EXIST = NTSTATUS($C0000110);
- {$EXTERNALSYM STATUS_ABIOS_LID_NOT_EXIST}
- //
- // MessageId: STATUS_ABIOS_LID_ALREADY_OWNED
- //
- // MessageText:
- //
- // STATUS_ABIOS_LID_ALREADY_OWNED
- //
- STATUS_ABIOS_LID_ALREADY_OWNED = NTSTATUS($C0000111);
- {$EXTERNALSYM STATUS_ABIOS_LID_ALREADY_OWNED}
- //
- // MessageId: STATUS_ABIOS_NOT_LID_OWNER
- //
- // MessageText:
- //
- // STATUS_ABIOS_NOT_LID_OWNER
- //
- STATUS_ABIOS_NOT_LID_OWNER = NTSTATUS($C0000112);
- {$EXTERNALSYM STATUS_ABIOS_NOT_LID_OWNER}
- //
- // MessageId: STATUS_ABIOS_INVALID_COMMAND
- //
- // MessageText:
- //
- // STATUS_ABIOS_INVALID_COMMAND
- //
- STATUS_ABIOS_INVALID_COMMAND = NTSTATUS($C0000113);
- {$EXTERNALSYM STATUS_ABIOS_INVALID_COMMAND}
- //
- // MessageId: STATUS_ABIOS_INVALID_LID
- //
- // MessageText:
- //
- // STATUS_ABIOS_INVALID_LID
- //
- STATUS_ABIOS_INVALID_LID = NTSTATUS($C0000114);
- {$EXTERNALSYM STATUS_ABIOS_INVALID_LID}
- //
- // MessageId: STATUS_ABIOS_SELECTOR_NOT_AVAILABLE
- //
- // MessageText:
- //
- // STATUS_ABIOS_SELECTOR_NOT_AVAILABLE
- //
- STATUS_ABIOS_SELECTOR_NOT_AVAILABLE = NTSTATUS($C0000115);
- {$EXTERNALSYM STATUS_ABIOS_SELECTOR_NOT_AVAILABLE}
- //
- // MessageId: STATUS_ABIOS_INVALID_SELECTOR
- //
- // MessageText:
- //
- // STATUS_ABIOS_INVALID_SELECTOR
- //
- STATUS_ABIOS_INVALID_SELECTOR = NTSTATUS($C0000116);
- {$EXTERNALSYM STATUS_ABIOS_INVALID_SELECTOR}
- //
- // MessageId: STATUS_NO_LDT
- //
- // MessageText:
- //
- // Indicates that an attempt was made to change the size of the LDT for a process that has no LDT.
- //
- STATUS_NO_LDT = NTSTATUS($C0000117);
- {$EXTERNALSYM STATUS_NO_LDT}
- //
- // MessageId: STATUS_INVALID_LDT_SIZE
- //
- // MessageText:
- //
- // 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.
- //
- STATUS_INVALID_LDT_SIZE = NTSTATUS($C0000118);
- {$EXTERNALSYM STATUS_INVALID_LDT_SIZE}
- //
- // MessageId: STATUS_INVALID_LDT_OFFSET
- //
- // MessageText:
- //
- // Indicates that the starting value for the LDT information was not an integral multiple of the selector size.
- //
- STATUS_INVALID_LDT_OFFSET = NTSTATUS($C0000119);
- {$EXTERNALSYM STATUS_INVALID_LDT_OFFSET}
- //
- // MessageId: STATUS_INVALID_LDT_DESCRIPTOR
- //
- // MessageText:
- //
- // Indicates that the user supplied an invalid descriptor when trying to set up Ldt descriptors.
- //
- STATUS_INVALID_LDT_DESCRIPTOR = NTSTATUS($C000011A);
- {$EXTERNALSYM STATUS_INVALID_LDT_DESCRIPTOR}
- //
- // MessageId: STATUS_INVALID_IMAGE_NE_FORMAT
- //
- // MessageText:
- //
- // The specified image file did not have the correct format. It appears to be NE format.
- //
- STATUS_INVALID_IMAGE_NE_FORMAT = NTSTATUS($C000011B);
- {$EXTERNALSYM STATUS_INVALID_IMAGE_NE_FORMAT}
- //
- // MessageId: STATUS_RXACT_INVALID_STATE
- //
- // MessageText:
- //
- // Indicates that the transaction state of a registry sub-tree is incompatible with the requested operation.
- // For example, a request has been made to start a new transaction with one already in progress,
- // or a request has been made to apply a transaction when one is not currently in progress.
- //
- STATUS_RXACT_INVALID_STATE = NTSTATUS($C000011C);
- {$EXTERNALSYM STATUS_RXACT_INVALID_STATE}
- //
- // MessageId: STATUS_RXACT_COMMIT_FAILURE
- //
- // MessageText:
- //
- // Indicates an error has occurred during a registry transaction commit.
- // The database has been left in an unknown, but probably inconsistent, state.
- // The state of the registry transaction is left as COMMITTING.
- //
- STATUS_RXACT_COMMIT_FAILURE = NTSTATUS($C000011D);
- {$EXTERNALSYM STATUS_RXACT_COMMIT_FAILURE}
- //
- // MessageId: STATUS_MAPPED_FILE_SIZE_ZERO
- //
- // MessageText:
- //
- // An attempt was made to map a file of size zero with the maximum size specified as zero.
- //
- STATUS_MAPPED_FILE_SIZE_ZERO = NTSTATUS($C000011E);
- {$EXTERNALSYM STATUS_MAPPED_FILE_SIZE_ZERO}
- //
- // MessageId: STATUS_TOO_MANY_OPENED_FILES
- //
- // MessageText:
- //
- // Too many files are opened on a remote server.
- // This error should only be returned by the Windows redirector on a remote drive.
- //
- STATUS_TOO_MANY_OPENED_FILES = NTSTATUS($C000011F);
- {$EXTERNALSYM STATUS_TOO_MANY_OPENED_FILES}
- //
- // MessageId: STATUS_CANCELLED
- //
- // MessageText:
- //
- // The I/O request was canceled.
- //
- STATUS_CANCELLED = NTSTATUS($C0000120);
- {$EXTERNALSYM STATUS_CANCELLED}
- //
- // MessageId: STATUS_CANNOT_DELETE
- //
- // MessageText:
- //
- // An attempt has been made to remove a file or directory that cannot be deleted.
- //
- STATUS_CANNOT_DELETE = NTSTATUS($C0000121);
- {$EXTERNALSYM STATUS_CANNOT_DELETE}
- //
- // MessageId: STATUS_INVALID_COMPUTER_NAME
- //
- // MessageText:
- //
- // Indicates a name specified as a remote computer name is syntactically invalid.
- //
- STATUS_INVALID_COMPUTER_NAME = NTSTATUS($C0000122);
- {$EXTERNALSYM STATUS_INVALID_COMPUTER_NAME}
- //
- // MessageId: STATUS_FILE_DELETED
- //
- // MessageText:
- //
- // An I/O request other than close was performed on a file after it has been deleted,
- // which can only happen to a request which did not complete before the last handle was closed via NtClose.
- //
- STATUS_FILE_DELETED = NTSTATUS($C0000123);
- {$EXTERNALSYM STATUS_FILE_DELETED}
- //
- // MessageId: STATUS_SPECIAL_ACCOUNT
- //
- // MessageText:
- //
- // Indicates an operation has been attempted on a built-in (special) SAM account which is incompatible with built-in accounts.
- // For example, built-in accounts cannot be deleted.
- //
- STATUS_SPECIAL_ACCOUNT = NTSTATUS($C0000124);
- {$EXTERNALSYM STATUS_SPECIAL_ACCOUNT}
- //
- // MessageId: STATUS_SPECIAL_GROUP
- //
- // MessageText:
- //
- // The operation requested may not be performed on the specified group because it is a built-in special group.
- //
- STATUS_SPECIAL_GROUP = NTSTATUS($C0000125);
- {$EXTERNALSYM STATUS_SPECIAL_GROUP}
- //
- // MessageId: STATUS_SPECIAL_USER
- //
- // MessageText:
- //
- // The operation requested may not be performed on the specified user because it is a built-in special user.
- //
- STATUS_SPECIAL_USER = NTSTATUS($C0000126);
- {$EXTERNALSYM STATUS_SPECIAL_USER}
- //
- // MessageId: STATUS_MEMBERS_PRIMARY_GROUP
- //
- // MessageText:
- //
- // Indicates a member cannot be removed from a group because the group is currently the member's primary group.
- //
- STATUS_MEMBERS_PRIMARY_GROUP = NTSTATUS($C0000127);
- {$EXTERNALSYM STATUS_MEMBERS_PRIMARY_GROUP}
- //
- // MessageId: STATUS_FILE_CLOSED
- //
- // MessageText:
- //
- // An I/O request other than close and several other special case operations was attempted using a file object that had already been closed.
- //
- STATUS_FILE_CLOSED = NTSTATUS($C0000128);
- {$EXTERNALSYM STATUS_FILE_CLOSED}
- //
- // MessageId: STATUS_TOO_MANY_THREADS
- //
- // MessageText:
- //
- // Indicates a process has too many threads to perform the requested action. For example, assignment of a primary token may only be performed when a process has zero or one threads.
- //
- STATUS_TOO_MANY_THREADS = NTSTATUS($C0000129);
- {$EXTERNALSYM STATUS_TOO_MANY_THREADS}
- //
- // MessageId: STATUS_THREAD_NOT_IN_PROCESS
- //
- // MessageText:
- //
- // An attempt was made to operate on a thread within a specific process, but the thread specified is not in the process specified.
- //
- STATUS_THREAD_NOT_IN_PROCESS = NTSTATUS($C000012A);
- {$EXTERNALSYM STATUS_THREAD_NOT_IN_PROCESS}
- //
- // MessageId: STATUS_TOKEN_ALREADY_IN_USE
- //
- // MessageText:
- //
- // An attempt was made to establish a token for use as a primary token but the token is already in use. A token can only be the primary token of one process at a time.
- //
- STATUS_TOKEN_ALREADY_IN_USE = NTSTATUS($C000012B);
- {$EXTERNALSYM STATUS_TOKEN_ALREADY_IN_USE}
- //
- // MessageId: STATUS_PAGEFILE_QUOTA_EXCEEDED
- //
- // MessageText:
- //
- // Page file quota was exceeded.
- //
- STATUS_PAGEFILE_QUOTA_EXCEEDED = NTSTATUS($C000012C);
- {$EXTERNALSYM STATUS_PAGEFILE_QUOTA_EXCEEDED}
- //
- // MessageId: STATUS_COMMITMENT_LIMIT
- //
- // MessageText:
- //
- // {Out of Virtual Memory}
- // Your system is low on virtual memory. To ensure that Windows runs properly, increase the size of your virtual memory paging file. For more information, see Help.
- //
- STATUS_COMMITMENT_LIMIT = NTSTATUS($C000012D);
- {$EXTERNALSYM STATUS_COMMITMENT_LIMIT}
- //
- // MessageId: STATUS_INVALID_IMAGE_LE_FORMAT
- //
- // MessageText:
- //
- // The specified image file did not have the correct format, it appears to be LE format.
- //
- STATUS_INVALID_IMAGE_LE_FORMAT = NTSTATUS($C000012E);
- {$EXTERNALSYM STATUS_INVALID_IMAGE_LE_FORMAT}
- //
- // MessageId: STATUS_INVALID_IMAGE_NOT_MZ
- //
- // MessageText:
- //
- // The specified image file did not have the correct format, it did not have an initial MZ.
- //
- STATUS_INVALID_IMAGE_NOT_MZ = NTSTATUS($C000012F);
- {$EXTERNALSYM STATUS_INVALID_IMAGE_NOT_MZ}
- //
- // MessageId: STATUS_INVALID_IMAGE_PROTECT
- //
- // MessageText:
- //
- // The specified image file did not have the correct format, it did not have a proper e_lfarlc in the MZ header.
- //
- STATUS_INVALID_IMAGE_PROTECT = NTSTATUS($C0000130);
- {$EXTERNALSYM STATUS_INVALID_IMAGE_PROTECT}
- //
- // MessageId: STATUS_INVALID_IMAGE_WIN_16
- //
- // MessageText:
- //
- // The specified image file did not have the correct format, it appears to be a 16-bit Windows image.
- //
- STATUS_INVALID_IMAGE_WIN_16 = NTSTATUS($C0000131);
- {$EXTERNALSYM STATUS_INVALID_IMAGE_WIN_16}
- //
- // MessageId: STATUS_LOGON_SERVER_CONFLICT
- //
- // MessageText:
- //
- // The Netlogon service cannot start because another Netlogon service running in the domain conflicts with the specified role.
- //
- STATUS_LOGON_SERVER_CONFLICT = NTSTATUS($C0000132);
- {$EXTERNALSYM STATUS_LOGON_SERVER_CONFLICT}
- //
- // MessageId: STATUS_TIME_DIFFERENCE_AT_DC
- //
- // MessageText:
- //
- // The time at the Primary Domain Controller is different than the time at the Backup Domain Controller or member server by too large an amount.
- //
- STATUS_TIME_DIFFERENCE_AT_DC = NTSTATUS($C0000133);
- {$EXTERNALSYM STATUS_TIME_DIFFERENCE_AT_DC}
- //
- // MessageId: STATUS_SYNCHRONIZATION_REQUIRED
- //
- // MessageText:
- //
- // The SAM database on a Windows Server is significantly out of synchronization with the copy on the Domain Controller. A complete synchronization is required.
- //
- STATUS_SYNCHRONIZATION_REQUIRED = NTSTATUS($C0000134);
- {$EXTERNALSYM STATUS_SYNCHRONIZATION_REQUIRED}
- //
- // MessageId: STATUS_DLL_NOT_FOUND
- //
- // MessageText:
- //
- // {Unable To Locate DLL}
- // The dynamic link library %hs could not be found in the specified path %hs.
- //
- STATUS_DLL_NOT_FOUND = NTSTATUS($C0000135);
- {$EXTERNALSYM STATUS_DLL_NOT_FOUND}
- //
- // MessageId: STATUS_OPEN_FAILED
- //
- // MessageText:
- //
- // 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.
- //
- STATUS_OPEN_FAILED = NTSTATUS($C0000136);
- {$EXTERNALSYM STATUS_OPEN_FAILED}
- //
- // MessageId: STATUS_IO_PRIVILEGE_FAILED
- //
- // MessageText:
- //
- // {Privilege Failed}
- // The I/O permissions for the process could not be changed.
- //
- STATUS_IO_PRIVILEGE_FAILED = NTSTATUS($C0000137);
- {$EXTERNALSYM STATUS_IO_PRIVILEGE_FAILED}
- //
- // MessageId: STATUS_ORDINAL_NOT_FOUND
- //
- // MessageText:
- //
- // {Ordinal Not Found}
- // The ordinal %ld could not be located in the dynamic link library %hs.
- //
- STATUS_ORDINAL_NOT_FOUND = NTSTATUS($C0000138);
- {$EXTERNALSYM STATUS_ORDINAL_NOT_FOUND}
- //
- // MessageId: STATUS_ENTRYPOINT_NOT_FOUND
- //
- // MessageText:
- //
- // {Entry Point Not Found}
- // The procedure entry point %hs could not be located in the dynamic link library %hs.
- //
- STATUS_ENTRYPOINT_NOT_FOUND = NTSTATUS($C0000139);
- {$EXTERNALSYM STATUS_ENTRYPOINT_NOT_FOUND}
- //
- // MessageId: STATUS_CONTROL_C_EXIT
- //
- // MessageText:
- //
- // {Application Exit by CTRL+C}
- // The application terminated as a result of a CTRL+C.
- //
- STATUS_CONTROL_C_EXIT = NTSTATUS($C000013A); // winnt
- {$EXTERNALSYM STATUS_CONTROL_C_EXIT}
- //
- // MessageId: STATUS_LOCAL_DISCONNECT
- //
- // MessageText:
- //
- // {Virtual Circuit Closed}
- // The network transport on your computer has closed a network connection. There may or may not be I/O requests outstanding.
- //
- STATUS_LOCAL_DISCONNECT = NTSTATUS($C000013B);
- {$EXTERNALSYM STATUS_LOCAL_DISCONNECT}
- //
- // MessageId: STATUS_REMOTE_DISCONNECT
- //
- // MessageText:
- //
- // {Virtual Circuit Closed}
- // The network transport on a remote computer has closed a network connection. There may or may not be I/O requests outstanding.
- //
- STATUS_REMOTE_DISCONNECT = NTSTATUS($C000013C);
- {$EXTERNALSYM STATUS_REMOTE_DISCONNECT}
- //
- // MessageId: STATUS_REMOTE_RESOURCES
- //
- // MessageText:
- //
- // {Insufficient Resources on Remote Computer}
- // The remote computer has insufficient resources to complete the network request. For instance, there may not be enough memory available on the remote computer to carry out the request at this time.
- //
- STATUS_REMOTE_RESOURCES = NTSTATUS($C000013D);
- {$EXTERNALSYM STATUS_REMOTE_RESOURCES}
- //
- // MessageId: STATUS_LINK_FAILED
- //
- // MessageText:
- //
- // {Virtual Circuit Closed}
- // An existing connection (virtual circuit) has been broken at the remote computer. There is probably something wrong with the network software protocol or the network hardware on the remote computer.
- //
- STATUS_LINK_FAILED = NTSTATUS($C000013E);
- {$EXTERNALSYM STATUS_LINK_FAILED}
- //
- // MessageId: STATUS_LINK_TIMEOUT
- //
- // MessageText:
- //
- // {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.
- //
- STATUS_LINK_TIMEOUT = NTSTATUS($C000013F);
- {$EXTERNALSYM STATUS_LINK_TIMEOUT}
- //
- // MessageId: STATUS_INVALID_CONNECTION
- //
- // MessageText:
- //
- // The connection handle given to the transport was invalid.
- //
- STATUS_INVALID_CONNECTION = NTSTATUS($C0000140);
- {$EXTERNALSYM STATUS_INVALID_CONNECTION}
- //
- // MessageId: STATUS_INVALID_ADDRESS
- //
- // MessageText:
- //
- // The address handle given to the transport was invalid.
- //
- STATUS_INVALID_ADDRESS = NTSTATUS($C0000141);
- {$EXTERNALSYM STATUS_INVALID_ADDRESS}
- //
- // MessageId: STATUS_DLL_INIT_FAILED
- //
- // MessageText:
- //
- // {DLL Initialization Failed}
- // Initialization of the dynamic link library %hs failed. The process is terminating abnormally.
- //
- STATUS_DLL_INIT_FAILED = NTSTATUS($C0000142);
- {$EXTERNALSYM STATUS_DLL_INIT_FAILED}
- //
- // MessageId: STATUS_MISSING_SYSTEMFILE
- //
- // MessageText:
- //
- // {Missing System File}
- // The required system file %hs is bad or missing.
- //
- STATUS_MISSING_SYSTEMFILE = NTSTATUS($C0000143);
- {$EXTERNALSYM STATUS_MISSING_SYSTEMFILE}
- //
- // MessageId: STATUS_UNHANDLED_EXCEPTION
- //
- // MessageText:
- //
- // {Application Error}
- // The exception %s (0x%08lx) occurred in the application at location 0x%08lx.
- //
- STATUS_UNHANDLED_EXCEPTION = NTSTATUS($C0000144);
- {$EXTERNALSYM STATUS_UNHANDLED_EXCEPTION}
- //
- // MessageId: STATUS_APP_INIT_FAILURE
- //
- // MessageText:
- //
- // {Application Error}
- // The application failed to initialize properly (0x%lx). Click on OK to terminate the application.
- //
- STATUS_APP_INIT_FAILURE = NTSTATUS($C0000145);
- {$EXTERNALSYM STATUS_APP_INIT_FAILURE}
- //
- // MessageId: STATUS_PAGEFILE_CREATE_FAILED
- //
- // MessageText:
- //
- // {Unable to Create Paging File}
- // The creation of the paging file %hs failed (%lx). The requested size was %ld.
- //
- STATUS_PAGEFILE_CREATE_FAILED = NTSTATUS($C0000146);
- {$EXTERNALSYM STATUS_PAGEFILE_CREATE_FAILED}
- //
- // MessageId: STATUS_NO_PAGEFILE
- //
- // MessageText: