📄 jwantstatus.pas
字号:
//
// 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}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -