📄 winerror.pas
字号:
// MessageText:
//
// The pipe is being closed.
//
ERROR_NO_DATA = 232;
{$EXTERNALSYM ERROR_NO_DATA}
//
// MessageId: ERROR_PIPE_NOT_CONNECTED
//
// MessageText:
//
// No process is on the other end of the pipe.
//
ERROR_PIPE_NOT_CONNECTED = 233;
{$EXTERNALSYM ERROR_PIPE_NOT_CONNECTED}
//
// MessageId: ERROR_MORE_DATA
//
// MessageText:
//
// More data is available.
//
ERROR_MORE_DATA = 234; // dderror
{$EXTERNALSYM ERROR_MORE_DATA}
//
// MessageId: ERROR_VC_DISCONNECTED
//
// MessageText:
//
// The session was canceled.
//
ERROR_VC_DISCONNECTED = 240;
{$EXTERNALSYM ERROR_VC_DISCONNECTED}
//
// MessageId: ERROR_INVALID_EA_NAME
//
// MessageText:
//
// The specified extended attribute name was invalid.
//
ERROR_INVALID_EA_NAME = 254;
{$EXTERNALSYM ERROR_INVALID_EA_NAME}
//
// MessageId: ERROR_EA_LIST_INCONSISTENT
//
// MessageText:
//
// The extended attributes are inconsistent.
//
ERROR_EA_LIST_INCONSISTENT = 255;
{$EXTERNALSYM ERROR_EA_LIST_INCONSISTENT}
//
// MessageId: WAIT_TIMEOUT
//
// MessageText:
//
// The wait operation timed out.
//
WAIT_TIMEOUT = 258;
{$EXTERNALSYM WAIT_TIMEOUT}
//
// MessageId: ERROR_NO_MORE_ITEMS
//
// MessageText:
//
// No more data is available.
//
ERROR_NO_MORE_ITEMS = 259;
{$EXTERNALSYM ERROR_NO_MORE_ITEMS}
//
// MessageId: ERROR_CANNOT_COPY
//
// MessageText:
//
// The copy functions cannot be used.
//
ERROR_CANNOT_COPY = 266;
{$EXTERNALSYM ERROR_CANNOT_COPY}
//
// MessageId: ERROR_DIRECTORY
//
// MessageText:
//
// The directory name is invalid.
//
ERROR_DIRECTORY = 267;
{$EXTERNALSYM ERROR_DIRECTORY}
//
// MessageId: ERROR_EAS_DIDNT_FIT
//
// MessageText:
//
// The extended attributes did not fit in the buffer.
//
ERROR_EAS_DIDNT_FIT = 275;
{$EXTERNALSYM ERROR_EAS_DIDNT_FIT}
//
// MessageId: ERROR_EA_FILE_CORRUPT
//
// MessageText:
//
// The extended attribute file on the mounted file system is corrupt.
//
ERROR_EA_FILE_CORRUPT = 276;
{$EXTERNALSYM ERROR_EA_FILE_CORRUPT}
//
// MessageId: ERROR_EA_TABLE_FULL
//
// MessageText:
//
// The extended attribute table file is full.
//
ERROR_EA_TABLE_FULL = 277;
{$EXTERNALSYM ERROR_EA_TABLE_FULL}
//
// MessageId: ERROR_INVALID_EA_HANDLE
//
// MessageText:
//
// The specified extended attribute handle is invalid.
//
ERROR_INVALID_EA_HANDLE = 278;
{$EXTERNALSYM ERROR_INVALID_EA_HANDLE}
//
// MessageId: ERROR_EAS_NOT_SUPPORTED
//
// MessageText:
//
// The mounted file system does not support extended attributes.
//
ERROR_EAS_NOT_SUPPORTED = 282;
{$EXTERNALSYM ERROR_EAS_NOT_SUPPORTED}
//
// MessageId: ERROR_NOT_OWNER
//
// MessageText:
//
// Attempt to release mutex not owned by caller.
//
ERROR_NOT_OWNER = 288;
{$EXTERNALSYM ERROR_NOT_OWNER}
//
// MessageId: ERROR_TOO_MANY_POSTS
//
// MessageText:
//
// Too many posts were made to a semaphore.
//
ERROR_TOO_MANY_POSTS = 298;
{$EXTERNALSYM ERROR_TOO_MANY_POSTS}
//
// MessageId: ERROR_PARTIAL_COPY
//
// MessageText:
//
// Only part of a ReadProcessMemory or WriteProcessMemory request was completed.
//
ERROR_PARTIAL_COPY = 299;
{$EXTERNALSYM ERROR_PARTIAL_COPY}
//
// MessageId: ERROR_OPLOCK_NOT_GRANTED
//
// MessageText:
//
// The oplock request is denied.
//
ERROR_OPLOCK_NOT_GRANTED = 300;
{$EXTERNALSYM ERROR_OPLOCK_NOT_GRANTED}
//
// MessageId: ERROR_INVALID_OPLOCK_PROTOCOL
//
// MessageText:
//
// An invalid oplock acknowledgment was received by the system.
//
ERROR_INVALID_OPLOCK_PROTOCOL = 301;
{$EXTERNALSYM ERROR_INVALID_OPLOCK_PROTOCOL}
//
// MessageId: ERROR_MR_MID_NOT_FOUND
//
// MessageText:
//
// The system cannot find message text for message number 0x%1 in the message file for %2.
//
ERROR_MR_MID_NOT_FOUND = 317;
{$EXTERNALSYM ERROR_MR_MID_NOT_FOUND}
//
// MessageId: ERROR_INVALID_ADDRESS
//
// MessageText:
//
// Attempt to access invalid address.
//
ERROR_INVALID_ADDRESS = 487;
{$EXTERNALSYM ERROR_INVALID_ADDRESS}
//
// MessageId: ERROR_ARITHMETIC_OVERFLOW
//
// MessageText:
//
// Arithmetic result exceeded 32 bits.
//
ERROR_ARITHMETIC_OVERFLOW = 534;
{$EXTERNALSYM ERROR_ARITHMETIC_OVERFLOW}
//
// MessageId: ERROR_PIPE_CONNECTED
//
// MessageText:
//
// There is a process on other end of the pipe.
//
ERROR_PIPE_CONNECTED = 535;
{$EXTERNALSYM ERROR_PIPE_CONNECTED}
//
// MessageId: ERROR_PIPE_LISTENING
//
// MessageText:
//
// Waiting for a process to open the other end of the pipe.
//
ERROR_PIPE_LISTENING = 536;
{$EXTERNALSYM ERROR_PIPE_LISTENING}
//
// MessageId: ERROR_EA_ACCESS_DENIED
//
// MessageText:
//
// Access to the extended attribute was denied.
//
ERROR_EA_ACCESS_DENIED = 994;
{$EXTERNALSYM ERROR_EA_ACCESS_DENIED}
//
// MessageId: ERROR_OPERATION_ABORTED
//
// MessageText:
//
// The I/O operation has been aborted because of either a thread exit or an application request.
//
ERROR_OPERATION_ABORTED = 995;
{$EXTERNALSYM ERROR_OPERATION_ABORTED}
//
// MessageId: ERROR_IO_INCOMPLETE
//
// MessageText:
//
// Overlapped I/O event is not in a signaled state.
//
ERROR_IO_INCOMPLETE = 996;
{$EXTERNALSYM ERROR_IO_INCOMPLETE}
//
// MessageId: ERROR_IO_PENDING
//
// MessageText:
//
// Overlapped I/O operation is in progress.
//
ERROR_IO_PENDING = 997; // dderror
{$EXTERNALSYM ERROR_IO_PENDING}
//
// MessageId: ERROR_NOACCESS
//
// MessageText:
//
// Invalid access to memory location.
//
ERROR_NOACCESS = 998;
{$EXTERNALSYM ERROR_NOACCESS}
//
// MessageId: ERROR_SWAPERROR
//
// MessageText:
//
// Error performing inpage operation.
//
ERROR_SWAPERROR = 999;
{$EXTERNALSYM ERROR_SWAPERROR}
//
// MessageId: ERROR_STACK_OVERFLOW
//
// MessageText:
//
// Recursion too deep; the stack overflowed.
//
ERROR_STACK_OVERFLOW = 1001;
{$EXTERNALSYM ERROR_STACK_OVERFLOW}
//
// MessageId: ERROR_INVALID_MESSAGE
//
// MessageText:
//
// The window cannot act on the sent message.
//
ERROR_INVALID_MESSAGE = 1002;
{$EXTERNALSYM ERROR_INVALID_MESSAGE}
//
// MessageId: ERROR_CAN_NOT_COMPLETE
//
// MessageText:
//
// Cannot complete this function.
//
ERROR_CAN_NOT_COMPLETE = 1003;
{$EXTERNALSYM ERROR_CAN_NOT_COMPLETE}
//
// MessageId: ERROR_INVALID_FLAGS
//
// MessageText:
//
// Invalid flags.
//
ERROR_INVALID_FLAGS = 1004;
{$EXTERNALSYM ERROR_INVALID_FLAGS}
//
// MessageId: ERROR_UNRECOGNIZED_VOLUME
//
// MessageText:
//
// The volume does not contain a recognized file system.
// Please make sure that all required file system drivers are loaded and that the volume is not corrupted.
//
ERROR_UNRECOGNIZED_VOLUME = 1005;
{$EXTERNALSYM ERROR_UNRECOGNIZED_VOLUME}
//
// MessageId: ERROR_FILE_INVALID
//
// MessageText:
//
// The volume for a file has been externally altered so that the opened file is no longer valid.
//
ERROR_FILE_INVALID = 1006;
{$EXTERNALSYM ERROR_FILE_INVALID}
//
// MessageId: ERROR_FULLSCREEN_MODE
//
// MessageText:
//
// The requested operation cannot be performed in full-screen mode.
//
ERROR_FULLSCREEN_MODE = 1007;
{$EXTERNALSYM ERROR_FULLSCREEN_MODE}
//
// MessageId: ERROR_NO_TOKEN
//
// MessageText:
//
// An attempt was made to reference a token that does not exist.
//
ERROR_NO_TOKEN = 1008;
{$EXTERNALSYM ERROR_NO_TOKEN}
//
// MessageId: ERROR_BADDB
//
// MessageText:
//
// The configuration registry database is corrupt.
//
ERROR_BADDB = 1009;
{$EXTERNALSYM ERROR_BADDB}
//
// MessageId: ERROR_BADKEY
//
// MessageText:
//
// The configuration registry key is invalid.
//
ERROR_BADKEY = 1010;
{$EXTERNALSYM ERROR_BADKEY}
//
// MessageId: ERROR_CANTOPEN
//
// MessageText:
//
// The configuration registry key could not be opened.
//
ERROR_CANTOPEN = 1011;
{$EXTERNALSYM ERROR_CANTOPEN}
//
// MessageId: ERROR_CANTREAD
//
// MessageText:
//
// The configuration registry key could not be read.
//
ERROR_CANTREAD = 1012;
{$EXTERNALSYM ERROR_CANTREAD}
//
// MessageId: ERROR_CANTWRITE
//
// MessageText:
//
// The configuration registry key could not be written.
//
ERROR_CANTWRITE = 1013;
{$EXTERNALSYM ERROR_CANTWRITE}
//
// MessageId: ERROR_REGISTRY_RECOVERED
//
// MessageText:
//
// One of the files in the registry database had to be recovered by use of a log or alternate copy. The recovery was successful.
//
ERROR_REGISTRY_RECOVERED = 1014;
{$EXTERNALSYM ERROR_REGISTRY_RECOVERED}
//
// MessageId: ERROR_REGISTRY_CORRUPT
//
// MessageText:
//
// The registry is corrupted. The structure of one of the files containing registry data is corrupted, or the system's memory image of the file is corrupted, or the file could not be recovered because the alternate copy or log was absent or corrupted.
//
ERROR_REGISTRY_CORRUPT = 1015;
{$EXTERNALSYM ERROR_REGISTRY_CORRUPT}
//
// MessageId: ERROR_REGISTRY_IO_FAILED
//
// MessageText:
//
// An I/O operation initiated by the registry failed unrecoverably. The registry could not read in, or write out, or flush, one of the files that contain the system's image of the registry.
//
ERROR_REGISTRY_IO_FAILED = 1016;
{$EXTERNALSYM ERROR_REGISTRY_IO_FAILED}
//
// MessageId: ERROR_NOT_REGISTRY_FILE
//
// MessageText:
//
// The system has attempted to load or restore a file into the registry, but the specified file is not in a registry file format.
//
ERROR_NOT_REGISTRY_FILE = 1017;
{$EXTERNALSYM ERROR_NOT_REGISTRY_FILE}
//
// MessageId: ERROR_KEY_DELETED
//
// MessageText:
//
// Illegal operation attempted on a registry key that has been marked for deletion.
//
ERROR_KEY_DELETED = 1018;
{$EXTERNALSYM ERROR_KEY_DELETED}
//
// MessageId: ERROR_NO_LOG_SPACE
//
// MessageText:
//
// System could not allocate the required space in a registry log.
//
ERROR_NO_LOG_SPACE = 1019;
{$EXTERNALSYM ERROR_NO_LOG_SPACE}
//
// MessageId: ERROR_KEY_HAS_CHILDREN
//
// MessageText:
//
// Cannot create a symbolic link in a registry key that already has subkeys or values.
//
ERROR_KEY_HAS_CHILDREN = 1020;
{$EXTERNALSYM ERROR_KEY_HAS_CHILDREN}
//
// MessageId: ERROR_CHILD_MUST_BE_VOLATILE
//
// MessageText:
//
// Cannot create a stable subkey under a volatile parent key.
//
ERROR_CHILD_MUST_BE_VOLATILE = 1021;
{$EXTERNALSYM ERROR_CHILD_MUST_BE_VOLATILE}
//
// MessageId: ERROR_NOTIFY_ENUM_DIR
//
// MessageText:
//
// A notify change request is being completed and the information is not being returned in the caller's buffer. The caller now needs to enumerate the files to find the changes.
//
ERROR_NOTIFY_ENUM_DIR = 1022;
{$EXTERNALSYM ERROR_NOTIFY_ENUM_DIR}
//
// MessageId: ERROR_DEPENDENT_SERVICES_RUNNING
//
// MessageText:
//
// A stop control has been sent to a service that other running services are dependent on.
//
ERROR_DEPENDENT_SERVICES_RUNNING = 1051;
{$EXTERNALSYM ERROR_DEPENDENT_SERVICES_RUNNING}
//
// MessageId: ERROR_INVALID_SERVICE_CONTROL
//
// MessageText:
//
// The requested control is not valid for this service.
//
ERROR_INVALID_SERVICE_CONTROL = 1052;
{$EXTERNALSYM ERROR_INVALID_SERVICE_CONTROL}
//
// MessageId: ERROR_SERVICE_REQUEST_TIMEOUT
//
// MessageText:
//
// The service did not respond to the start or control request in a timely fashion.
//
ERROR_SERVICE_REQUEST_TIMEOUT = 1053;
{$EXTERNALSYM ERROR_SERVICE_REQUEST_TIMEOUT}
//
// MessageId: ERROR_SERVICE_NO_THREAD
//
// MessageText:
//
// A thread could not be created for the service.
//
ERROR_SERVICE_NO_THREAD = 1054;
{$EXTERNALSYM ERROR_SERVICE_NO_THREAD}
//
// MessageId: ERROR_SERVICE_DATABASE_LOCKED
//
// MessageText:
//
// The service database is locked.
//
ERROR_SERVICE_DATABASE_LOCKED = 1055;
{$EXTERNALSYM ERROR_SERVICE_DATABASE_LOCKED}
//
// MessageId: ERROR_SERVICE_ALREADY_RUNNING
//
// MessageText:
//
// An instance of the service is already running.
//
ERROR_SERVICE_ALREADY_RUNNING = 1056;
{$EXTERNALSYM ERROR_SERVICE_ALREADY_RUNNING}
//
// MessageId: ERROR_INVALID_SERVICE_ACCOUNT
//
// MessageText:
//
// The account name is invalid or does not exist, or the password is invalid for the account name specified.
//
ERROR_INVALID_SERVICE_ACCOUNT = 1057;
{$EXTERNALSYM ERROR_INVALID_SERVICE_ACCOUNT}
//
// MessageId: ERROR_SERVICE_DISABLED
//
// MessageText:
//
// The service cannot be started, either because it is disabled or because it has no enabled devices associated with it.
//
ERROR_SERVICE_DISABLED = 1058;
{$EXTERNALSYM ERROR_SERVICE_DISABLED}
//
// MessageId: ERROR_CIRCULAR_DEPENDENCY
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -