WinError.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:582k
- /************************************************************************
- * *
- * winerror.h -- error code definitions for the Win32 API functions *
- * *
- * Copyright (c) Microsoft Corp. All rights reserved. *
- * *
- ************************************************************************/
- #ifndef _WINERROR_
- #define _WINERROR_
- #if defined (_MSC_VER) && (_MSC_VER >= 1020) && !defined(__midl)
- #pragma once
- #endif
- //
- // 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
- //
- #define FACILITY_WINDOWS_CE 24
- #define FACILITY_WINDOWS 8
- #define FACILITY_URT 19
- #define FACILITY_UMI 22
- #define FACILITY_SXS 23
- #define FACILITY_STORAGE 3
- #define FACILITY_SSPI 9
- #define FACILITY_SCARD 16
- #define FACILITY_SETUPAPI 15
- #define FACILITY_SECURITY 9
- #define FACILITY_RPC 1
- #define FACILITY_WIN32 7
- #define FACILITY_CONTROL 10
- #define FACILITY_NULL 0
- #define FACILITY_MSMQ 14
- #define FACILITY_MEDIASERVER 13
- #define FACILITY_INTERNET 12
- #define FACILITY_ITF 4
- #define FACILITY_HTTP 25
- #define FACILITY_DPLAY 21
- #define FACILITY_DISPATCH 2
- #define FACILITY_CONFIGURATION 33
- #define FACILITY_COMPLUS 17
- #define FACILITY_CERT 11
- #define FACILITY_BACKGROUNDCOPY 32
- #define FACILITY_ACS 20
- #define FACILITY_AAF 18
- //
- // Define the severity codes
- //
- //
- // MessageId: ERROR_SUCCESS
- //
- // MessageText:
- //
- // The operation completed successfully.
- //
- #define ERROR_SUCCESS 0L
- #define NO_ERROR 0L // dderror
- #define SEC_E_OK ((HRESULT)0x00000000L)
- //
- // MessageId: ERROR_INVALID_FUNCTION
- //
- // MessageText:
- //
- // Incorrect function.
- //
- #define ERROR_INVALID_FUNCTION 1L // dderror
- //
- // MessageId: ERROR_FILE_NOT_FOUND
- //
- // MessageText:
- //
- // The system cannot find the file specified.
- //
- #define ERROR_FILE_NOT_FOUND 2L
- //
- // MessageId: ERROR_PATH_NOT_FOUND
- //
- // MessageText:
- //
- // The system cannot find the path specified.
- //
- #define ERROR_PATH_NOT_FOUND 3L
- //
- // MessageId: ERROR_TOO_MANY_OPEN_FILES
- //
- // MessageText:
- //
- // The system cannot open the file.
- //
- #define ERROR_TOO_MANY_OPEN_FILES 4L
- //
- // MessageId: ERROR_ACCESS_DENIED
- //
- // MessageText:
- //
- // Access is denied.
- //
- #define ERROR_ACCESS_DENIED 5L
- //
- // MessageId: ERROR_INVALID_HANDLE
- //
- // MessageText:
- //
- // The handle is invalid.
- //
- #define ERROR_INVALID_HANDLE 6L
- //
- // MessageId: ERROR_ARENA_TRASHED
- //
- // MessageText:
- //
- // The storage control blocks were destroyed.
- //
- #define ERROR_ARENA_TRASHED 7L
- //
- // MessageId: ERROR_NOT_ENOUGH_MEMORY
- //
- // MessageText:
- //
- // Not enough storage is available to process this command.
- //
- #define ERROR_NOT_ENOUGH_MEMORY 8L // dderror
- //
- // MessageId: ERROR_INVALID_BLOCK
- //
- // MessageText:
- //
- // The storage control block address is invalid.
- //
- #define ERROR_INVALID_BLOCK 9L
- //
- // MessageId: ERROR_BAD_ENVIRONMENT
- //
- // MessageText:
- //
- // The environment is incorrect.
- //
- #define ERROR_BAD_ENVIRONMENT 10L
- //
- // MessageId: ERROR_BAD_FORMAT
- //
- // MessageText:
- //
- // An attempt was made to load a program with an incorrect format.
- //
- #define ERROR_BAD_FORMAT 11L
- //
- // MessageId: ERROR_INVALID_ACCESS
- //
- // MessageText:
- //
- // The access code is invalid.
- //
- #define ERROR_INVALID_ACCESS 12L
- //
- // MessageId: ERROR_INVALID_DATA
- //
- // MessageText:
- //
- // The data is invalid.
- //
- #define ERROR_INVALID_DATA 13L
- //
- // MessageId: ERROR_OUTOFMEMORY
- //
- // MessageText:
- //
- // Not enough storage is available to complete this operation.
- //
- #define ERROR_OUTOFMEMORY 14L
- //
- // MessageId: ERROR_INVALID_DRIVE
- //
- // MessageText:
- //
- // The system cannot find the drive specified.
- //
- #define ERROR_INVALID_DRIVE 15L
- //
- // MessageId: ERROR_CURRENT_DIRECTORY
- //
- // MessageText:
- //
- // The directory cannot be removed.
- //
- #define ERROR_CURRENT_DIRECTORY 16L
- //
- // MessageId: ERROR_NOT_SAME_DEVICE
- //
- // MessageText:
- //
- // The system cannot move the file to a different disk drive.
- //
- #define ERROR_NOT_SAME_DEVICE 17L
- //
- // MessageId: ERROR_NO_MORE_FILES
- //
- // MessageText:
- //
- // There are no more files.
- //
- #define ERROR_NO_MORE_FILES 18L
- //
- // MessageId: ERROR_WRITE_PROTECT
- //
- // MessageText:
- //
- // The media is write protected.
- //
- #define ERROR_WRITE_PROTECT 19L
- //
- // MessageId: ERROR_BAD_UNIT
- //
- // MessageText:
- //
- // The system cannot find the device specified.
- //
- #define ERROR_BAD_UNIT 20L
- //
- // MessageId: ERROR_NOT_READY
- //
- // MessageText:
- //
- // The device is not ready.
- //
- #define ERROR_NOT_READY 21L
- //
- // MessageId: ERROR_BAD_COMMAND
- //
- // MessageText:
- //
- // The device does not recognize the command.
- //
- #define ERROR_BAD_COMMAND 22L
- //
- // MessageId: ERROR_CRC
- //
- // MessageText:
- //
- // Data error (cyclic redundancy check).
- //
- #define ERROR_CRC 23L
- //
- // MessageId: ERROR_BAD_LENGTH
- //
- // MessageText:
- //
- // The program issued a command but the command length is incorrect.
- //
- #define ERROR_BAD_LENGTH 24L
- //
- // MessageId: ERROR_SEEK
- //
- // MessageText:
- //
- // The drive cannot locate a specific area or track on the disk.
- //
- #define ERROR_SEEK 25L
- //
- // MessageId: ERROR_NOT_DOS_DISK
- //
- // MessageText:
- //
- // The specified disk or diskette cannot be accessed.
- //
- #define ERROR_NOT_DOS_DISK 26L
- //
- // MessageId: ERROR_SECTOR_NOT_FOUND
- //
- // MessageText:
- //
- // The drive cannot find the sector requested.
- //
- #define ERROR_SECTOR_NOT_FOUND 27L
- //
- // MessageId: ERROR_OUT_OF_PAPER
- //
- // MessageText:
- //
- // The printer is out of paper.
- //
- #define ERROR_OUT_OF_PAPER 28L
- //
- // MessageId: ERROR_WRITE_FAULT
- //
- // MessageText:
- //
- // The system cannot write to the specified device.
- //
- #define ERROR_WRITE_FAULT 29L
- //
- // MessageId: ERROR_READ_FAULT
- //
- // MessageText:
- //
- // The system cannot read from the specified device.
- //
- #define ERROR_READ_FAULT 30L
- //
- // MessageId: ERROR_GEN_FAILURE
- //
- // MessageText:
- //
- // A device attached to the system is not functioning.
- //
- #define ERROR_GEN_FAILURE 31L
- //
- // MessageId: ERROR_SHARING_VIOLATION
- //
- // MessageText:
- //
- // The process cannot access the file because it is being used by another process.
- //
- #define ERROR_SHARING_VIOLATION 32L
- //
- // MessageId: ERROR_LOCK_VIOLATION
- //
- // MessageText:
- //
- // The process cannot access the file because another process has locked a portion of the file.
- //
- #define ERROR_LOCK_VIOLATION 33L
- //
- // MessageId: ERROR_WRONG_DISK
- //
- // MessageText:
- //
- // The wrong diskette is in the drive.
- // Insert %2 (Volume Serial Number: %3) into drive %1.
- //
- #define ERROR_WRONG_DISK 34L
- //
- // MessageId: ERROR_SHARING_BUFFER_EXCEEDED
- //
- // MessageText:
- //
- // Too many files opened for sharing.
- //
- #define ERROR_SHARING_BUFFER_EXCEEDED 36L
- //
- // MessageId: ERROR_HANDLE_EOF
- //
- // MessageText:
- //
- // Reached the end of the file.
- //
- #define ERROR_HANDLE_EOF 38L
- //
- // MessageId: ERROR_HANDLE_DISK_FULL
- //
- // MessageText:
- //
- // The disk is full.
- //
- #define ERROR_HANDLE_DISK_FULL 39L
- //
- // MessageId: ERROR_NOT_SUPPORTED
- //
- // MessageText:
- //
- // The request is not supported.
- //
- #define ERROR_NOT_SUPPORTED 50L
- //
- // MessageId: ERROR_REM_NOT_LIST
- //
- // MessageText:
- //
- // Windows cannot find the network path. Verify that the network path is correct and the destination computer is not busy or turned off. If Windows still cannot find the network path, contact your network administrator.
- //
- #define ERROR_REM_NOT_LIST 51L
- //
- // MessageId: ERROR_DUP_NAME
- //
- // MessageText:
- //
- // You were not connected because a duplicate name exists on the network. Go to System in Control Panel to change the computer name and try again.
- //
- #define ERROR_DUP_NAME 52L
- //
- // MessageId: ERROR_BAD_NETPATH
- //
- // MessageText:
- //
- // The network path was not found.
- //
- #define ERROR_BAD_NETPATH 53L
- //
- // MessageId: ERROR_NETWORK_BUSY
- //
- // MessageText:
- //
- // The network is busy.
- //
- #define ERROR_NETWORK_BUSY 54L
- //
- // MessageId: ERROR_DEV_NOT_EXIST
- //
- // MessageText:
- //
- // The specified network resource or device is no longer available.
- //
- #define ERROR_DEV_NOT_EXIST 55L // dderror
- //
- // MessageId: ERROR_TOO_MANY_CMDS
- //
- // MessageText:
- //
- // The network BIOS command limit has been reached.
- //
- #define ERROR_TOO_MANY_CMDS 56L
- //
- // MessageId: ERROR_ADAP_HDW_ERR
- //
- // MessageText:
- //
- // A network adapter hardware error occurred.
- //
- #define ERROR_ADAP_HDW_ERR 57L
- //
- // MessageId: ERROR_BAD_NET_RESP
- //
- // MessageText:
- //
- // The specified server cannot perform the requested operation.
- //
- #define ERROR_BAD_NET_RESP 58L
- //
- // MessageId: ERROR_UNEXP_NET_ERR
- //
- // MessageText:
- //
- // An unexpected network error occurred.
- //
- #define ERROR_UNEXP_NET_ERR 59L
- //
- // MessageId: ERROR_BAD_REM_ADAP
- //
- // MessageText:
- //
- // The remote adapter is not compatible.
- //
- #define ERROR_BAD_REM_ADAP 60L
- //
- // MessageId: ERROR_PRINTQ_FULL
- //
- // MessageText:
- //
- // The printer queue is full.
- //
- #define ERROR_PRINTQ_FULL 61L
- //
- // MessageId: ERROR_NO_SPOOL_SPACE
- //
- // MessageText:
- //
- // Space to store the file waiting to be printed is not available on the server.
- //
- #define ERROR_NO_SPOOL_SPACE 62L
- //
- // MessageId: ERROR_PRINT_CANCELLED
- //
- // MessageText:
- //
- // Your file waiting to be printed was deleted.
- //
- #define ERROR_PRINT_CANCELLED 63L
- //
- // MessageId: ERROR_NETNAME_DELETED
- //
- // MessageText:
- //
- // The specified network name is no longer available.
- //
- #define ERROR_NETNAME_DELETED 64L
- //
- // MessageId: ERROR_NETWORK_ACCESS_DENIED
- //
- // MessageText:
- //
- // Network access is denied.
- //
- #define ERROR_NETWORK_ACCESS_DENIED 65L
- //
- // MessageId: ERROR_BAD_DEV_TYPE
- //
- // MessageText:
- //
- // The network resource type is not correct.
- //
- #define ERROR_BAD_DEV_TYPE 66L
- //
- // MessageId: ERROR_BAD_NET_NAME
- //
- // MessageText:
- //
- // The network name cannot be found.
- //
- #define ERROR_BAD_NET_NAME 67L
- //
- // MessageId: ERROR_TOO_MANY_NAMES
- //
- // MessageText:
- //
- // The name limit for the local computer network adapter card was exceeded.
- //
- #define ERROR_TOO_MANY_NAMES 68L
- //
- // MessageId: ERROR_TOO_MANY_SESS
- //
- // MessageText:
- //
- // The network BIOS session limit was exceeded.
- //
- #define ERROR_TOO_MANY_SESS 69L
- //
- // MessageId: ERROR_SHARING_PAUSED
- //
- // MessageText:
- //
- // The remote server has been paused or is in the process of being started.
- //
- #define ERROR_SHARING_PAUSED 70L
- //
- // MessageId: ERROR_REQ_NOT_ACCEP
- //
- // 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.
- //
- #define ERROR_REQ_NOT_ACCEP 71L
- //
- // MessageId: ERROR_REDIR_PAUSED
- //
- // MessageText:
- //
- // The specified printer or disk device has been paused.
- //
- #define ERROR_REDIR_PAUSED 72L
- //
- // MessageId: ERROR_FILE_EXISTS
- //
- // MessageText:
- //
- // The file exists.
- //
- #define ERROR_FILE_EXISTS 80L
- //
- // MessageId: ERROR_CANNOT_MAKE
- //
- // MessageText:
- //
- // The directory or file cannot be created.
- //
- #define ERROR_CANNOT_MAKE 82L
- //
- // MessageId: ERROR_FAIL_I24
- //
- // MessageText:
- //
- // Fail on INT 24.
- //
- #define ERROR_FAIL_I24 83L
- //
- // MessageId: ERROR_OUT_OF_STRUCTURES
- //
- // MessageText:
- //
- // Storage to process this request is not available.
- //
- #define ERROR_OUT_OF_STRUCTURES 84L
- //
- // MessageId: ERROR_ALREADY_ASSIGNED
- //
- // MessageText:
- //
- // The local device name is already in use.
- //
- #define ERROR_ALREADY_ASSIGNED 85L
- //
- // MessageId: ERROR_INVALID_PASSWORD
- //
- // MessageText:
- //
- // The specified network password is not correct.
- //
- #define ERROR_INVALID_PASSWORD 86L
- //
- // MessageId: ERROR_INVALID_PARAMETER
- //
- // MessageText:
- //
- // The parameter is incorrect.
- //
- #define ERROR_INVALID_PARAMETER 87L // dderror
- //
- // MessageId: ERROR_NET_WRITE_FAULT
- //
- // MessageText:
- //
- // A write fault occurred on the network.
- //
- #define ERROR_NET_WRITE_FAULT 88L
- //
- // MessageId: ERROR_NO_PROC_SLOTS
- //
- // MessageText:
- //
- // The system cannot start another process at this time.
- //
- #define ERROR_NO_PROC_SLOTS 89L
- //
- // MessageId: ERROR_TOO_MANY_SEMAPHORES
- //
- // MessageText:
- //
- // Cannot create another system semaphore.
- //
- #define ERROR_TOO_MANY_SEMAPHORES 100L
- //
- // MessageId: ERROR_EXCL_SEM_ALREADY_OWNED
- //
- // MessageText:
- //
- // The exclusive semaphore is owned by another process.
- //
- #define ERROR_EXCL_SEM_ALREADY_OWNED 101L
- //
- // MessageId: ERROR_SEM_IS_SET
- //
- // MessageText:
- //
- // The semaphore is set and cannot be closed.
- //
- #define ERROR_SEM_IS_SET 102L
- //
- // MessageId: ERROR_TOO_MANY_SEM_REQUESTS
- //
- // MessageText:
- //
- // The semaphore cannot be set again.
- //
- #define ERROR_TOO_MANY_SEM_REQUESTS 103L
- //
- // MessageId: ERROR_INVALID_AT_INTERRUPT_TIME
- //
- // MessageText:
- //
- // Cannot request exclusive semaphores at interrupt time.
- //
- #define ERROR_INVALID_AT_INTERRUPT_TIME 104L
- //
- // MessageId: ERROR_SEM_OWNER_DIED
- //
- // MessageText:
- //
- // The previous ownership of this semaphore has ended.
- //
- #define ERROR_SEM_OWNER_DIED 105L
- //
- // MessageId: ERROR_SEM_USER_LIMIT
- //
- // MessageText:
- //
- // Insert the diskette for drive %1.
- //
- #define ERROR_SEM_USER_LIMIT 106L
- //
- // MessageId: ERROR_DISK_CHANGE
- //
- // MessageText:
- //
- // The program stopped because an alternate diskette was not inserted.
- //
- #define ERROR_DISK_CHANGE 107L
- //
- // MessageId: ERROR_DRIVE_LOCKED
- //
- // MessageText:
- //
- // The disk is in use or locked by another process.
- //
- #define ERROR_DRIVE_LOCKED 108L
- //
- // MessageId: ERROR_BROKEN_PIPE
- //
- // MessageText:
- //
- // The pipe has been ended.
- //
- #define ERROR_BROKEN_PIPE 109L
- //
- // MessageId: ERROR_OPEN_FAILED
- //
- // MessageText:
- //
- // The system cannot open the device or file specified.
- //
- #define ERROR_OPEN_FAILED 110L
- //
- // MessageId: ERROR_BUFFER_OVERFLOW
- //
- // MessageText:
- //
- // The file name is too long.
- //
- #define ERROR_BUFFER_OVERFLOW 111L
- //
- // MessageId: ERROR_DISK_FULL
- //
- // MessageText:
- //
- // There is not enough space on the disk.
- //
- #define ERROR_DISK_FULL 112L
- //
- // MessageId: ERROR_NO_MORE_SEARCH_HANDLES
- //
- // MessageText:
- //
- // No more internal file identifiers available.
- //
- #define ERROR_NO_MORE_SEARCH_HANDLES 113L
- //
- // MessageId: ERROR_INVALID_TARGET_HANDLE
- //
- // MessageText:
- //
- // The target internal file identifier is incorrect.
- //
- #define ERROR_INVALID_TARGET_HANDLE 114L
- //
- // MessageId: ERROR_INVALID_CATEGORY
- //
- // MessageText:
- //
- // The IOCTL call made by the application program is not correct.
- //
- #define ERROR_INVALID_CATEGORY 117L
- //
- // MessageId: ERROR_INVALID_VERIFY_SWITCH
- //
- // MessageText:
- //
- // The verify-on-write switch parameter value is not correct.
- //
- #define ERROR_INVALID_VERIFY_SWITCH 118L
- //
- // MessageId: ERROR_BAD_DRIVER_LEVEL
- //
- // MessageText:
- //
- // The system does not support the command requested.
- //
- #define ERROR_BAD_DRIVER_LEVEL 119L
- //
- // MessageId: ERROR_CALL_NOT_IMPLEMENTED
- //
- // MessageText:
- //
- // This function is not supported on this system.
- //
- #define ERROR_CALL_NOT_IMPLEMENTED 120L
- //
- // MessageId: ERROR_SEM_TIMEOUT
- //
- // MessageText:
- //
- // The semaphore timeout period has expired.
- //
- #define ERROR_SEM_TIMEOUT 121L
- //
- // MessageId: ERROR_INSUFFICIENT_BUFFER
- //
- // MessageText:
- //
- // The data area passed to a system call is too small.
- //
- #define ERROR_INSUFFICIENT_BUFFER 122L // dderror
- //
- // MessageId: ERROR_INVALID_NAME
- //
- // MessageText:
- //
- // The filename, directory name, or volume label syntax is incorrect.
- //
- #define ERROR_INVALID_NAME 123L // dderror
- //
- // MessageId: ERROR_INVALID_LEVEL
- //
- // MessageText:
- //
- // The system call level is not correct.
- //
- #define ERROR_INVALID_LEVEL 124L
- //
- // MessageId: ERROR_NO_VOLUME_LABEL
- //
- // MessageText:
- //
- // The disk has no volume label.
- //
- #define ERROR_NO_VOLUME_LABEL 125L
- //
- // MessageId: ERROR_MOD_NOT_FOUND
- //
- // MessageText:
- //
- // The specified module could not be found.
- //
- #define ERROR_MOD_NOT_FOUND 126L
- //
- // MessageId: ERROR_PROC_NOT_FOUND
- //
- // MessageText:
- //
- // The specified procedure could not be found.
- //
- #define ERROR_PROC_NOT_FOUND 127L
- //
- // MessageId: ERROR_WAIT_NO_CHILDREN
- //
- // MessageText:
- //
- // There are no child processes to wait for.
- //
- #define ERROR_WAIT_NO_CHILDREN 128L
- //
- // MessageId: ERROR_CHILD_NOT_COMPLETE
- //
- // MessageText:
- //
- // The %1 application cannot be run in Win32 mode.
- //
- #define ERROR_CHILD_NOT_COMPLETE 129L
- //
- // MessageId: ERROR_DIRECT_ACCESS_HANDLE
- //
- // MessageText:
- //
- // Attempt to use a file handle to an open disk partition for an operation other than raw disk I/O.
- //
- #define ERROR_DIRECT_ACCESS_HANDLE 130L
- //
- // MessageId: ERROR_NEGATIVE_SEEK
- //
- // MessageText:
- //
- // An attempt was made to move the file pointer before the beginning of the file.
- //
- #define ERROR_NEGATIVE_SEEK 131L
- //
- // MessageId: ERROR_SEEK_ON_DEVICE
- //
- // MessageText:
- //
- // The file pointer cannot be set on the specified device or file.
- //
- #define ERROR_SEEK_ON_DEVICE 132L
- //
- // MessageId: ERROR_IS_JOIN_TARGET
- //
- // MessageText:
- //
- // A JOIN or SUBST command cannot be used for a drive that contains previously joined drives.
- //
- #define ERROR_IS_JOIN_TARGET 133L
- //
- // MessageId: ERROR_IS_JOINED
- //
- // MessageText:
- //
- // An attempt was made to use a JOIN or SUBST command on a drive that has already been joined.
- //
- #define ERROR_IS_JOINED 134L
- //
- // MessageId: ERROR_IS_SUBSTED
- //
- // MessageText:
- //
- // An attempt was made to use a JOIN or SUBST command on a drive that has already been substituted.
- //
- #define ERROR_IS_SUBSTED 135L
- //
- // MessageId: ERROR_NOT_JOINED
- //
- // MessageText:
- //
- // The system tried to delete the JOIN of a drive that is not joined.
- //
- #define ERROR_NOT_JOINED 136L
- //
- // MessageId: ERROR_NOT_SUBSTED
- //
- // MessageText:
- //
- // The system tried to delete the substitution of a drive that is not substituted.
- //
- #define ERROR_NOT_SUBSTED 137L
- //
- // MessageId: ERROR_JOIN_TO_JOIN
- //
- // MessageText:
- //
- // The system tried to join a drive to a directory on a joined drive.
- //
- #define ERROR_JOIN_TO_JOIN 138L
- //
- // MessageId: ERROR_SUBST_TO_SUBST
- //
- // MessageText:
- //
- // The system tried to substitute a drive to a directory on a substituted drive.
- //
- #define ERROR_SUBST_TO_SUBST 139L
- //
- // MessageId: ERROR_JOIN_TO_SUBST
- //
- // MessageText:
- //
- // The system tried to join a drive to a directory on a substituted drive.
- //
- #define ERROR_JOIN_TO_SUBST 140L
- //
- // MessageId: ERROR_SUBST_TO_JOIN
- //
- // MessageText:
- //
- // The system tried to SUBST a drive to a directory on a joined drive.
- //
- #define ERROR_SUBST_TO_JOIN 141L
- //
- // MessageId: ERROR_BUSY_DRIVE
- //
- // MessageText:
- //
- // The system cannot perform a JOIN or SUBST at this time.
- //
- #define ERROR_BUSY_DRIVE 142L
- //
- // MessageId: ERROR_SAME_DRIVE
- //
- // MessageText:
- //
- // The system cannot join or substitute a drive to or for a directory on the same drive.
- //
- #define ERROR_SAME_DRIVE 143L
- //
- // MessageId: ERROR_DIR_NOT_ROOT
- //
- // MessageText:
- //
- // The directory is not a subdirectory of the root directory.
- //
- #define ERROR_DIR_NOT_ROOT 144L
- //
- // MessageId: ERROR_DIR_NOT_EMPTY
- //
- // MessageText:
- //
- // The directory is not empty.
- //
- #define ERROR_DIR_NOT_EMPTY 145L
- //
- // MessageId: ERROR_IS_SUBST_PATH
- //
- // MessageText:
- //
- // The path specified is being used in a substitute.
- //
- #define ERROR_IS_SUBST_PATH 146L
- //
- // MessageId: ERROR_IS_JOIN_PATH
- //
- // MessageText:
- //
- // Not enough resources are available to process this command.
- //
- #define ERROR_IS_JOIN_PATH 147L
- //
- // MessageId: ERROR_PATH_BUSY
- //
- // MessageText:
- //
- // The path specified cannot be used at this time.
- //
- #define ERROR_PATH_BUSY 148L
- //
- // MessageId: ERROR_IS_SUBST_TARGET
- //
- // MessageText:
- //
- // An attempt was made to join or substitute a drive for which a directory on the drive is the target of a previous substitute.
- //
- #define ERROR_IS_SUBST_TARGET 149L
- //
- // MessageId: ERROR_SYSTEM_TRACE
- //
- // MessageText:
- //
- // System trace information was not specified in your CONFIG.SYS file, or tracing is disallowed.
- //
- #define ERROR_SYSTEM_TRACE 150L
- //
- // MessageId: ERROR_INVALID_EVENT_COUNT
- //
- // MessageText:
- //
- // The number of specified semaphore events for DosMuxSemWait is not correct.
- //
- #define ERROR_INVALID_EVENT_COUNT 151L
- //
- // MessageId: ERROR_TOO_MANY_MUXWAITERS
- //
- // MessageText:
- //
- // DosMuxSemWait did not execute; too many semaphores are already set.
- //
- #define ERROR_TOO_MANY_MUXWAITERS 152L
- //
- // MessageId: ERROR_INVALID_LIST_FORMAT
- //
- // MessageText:
- //
- // The DosMuxSemWait list is not correct.
- //
- #define ERROR_INVALID_LIST_FORMAT 153L
- //
- // MessageId: ERROR_LABEL_TOO_LONG
- //
- // MessageText:
- //
- // The volume label you entered exceeds the label character limit of the target file system.
- //
- #define ERROR_LABEL_TOO_LONG 154L
- //
- // MessageId: ERROR_TOO_MANY_TCBS
- //
- // MessageText:
- //
- // Cannot create another thread.
- //
- #define ERROR_TOO_MANY_TCBS 155L
- //
- // MessageId: ERROR_SIGNAL_REFUSED
- //
- // MessageText:
- //
- // The recipient process has refused the signal.
- //
- #define ERROR_SIGNAL_REFUSED 156L
- //
- // MessageId: ERROR_DISCARDED
- //
- // MessageText:
- //
- // The segment is already discarded and cannot be locked.
- //
- #define ERROR_DISCARDED 157L
- //
- // MessageId: ERROR_NOT_LOCKED
- //
- // MessageText:
- //
- // The segment is already unlocked.
- //
- #define ERROR_NOT_LOCKED 158L
- //
- // MessageId: ERROR_BAD_THREADID_ADDR
- //
- // MessageText:
- //
- // The address for the thread ID is not correct.
- //
- #define ERROR_BAD_THREADID_ADDR 159L
- //
- // MessageId: ERROR_BAD_ARGUMENTS
- //
- // MessageText:
- //
- // One or more arguments are not correct.
- //
- #define ERROR_BAD_ARGUMENTS 160L
- //
- // MessageId: ERROR_BAD_PATHNAME
- //
- // MessageText:
- //
- // The specified path is invalid.
- //
- #define ERROR_BAD_PATHNAME 161L
- //
- // MessageId: ERROR_SIGNAL_PENDING
- //
- // MessageText:
- //
- // A signal is already pending.
- //
- #define ERROR_SIGNAL_PENDING 162L
- //
- // MessageId: ERROR_MAX_THRDS_REACHED
- //
- // MessageText:
- //
- // No more threads can be created in the system.
- //
- #define ERROR_MAX_THRDS_REACHED 164L
- //
- // MessageId: ERROR_LOCK_FAILED
- //
- // MessageText:
- //
- // Unable to lock a region of a file.
- //
- #define ERROR_LOCK_FAILED 167L
- //
- // MessageId: ERROR_BUSY
- //
- // MessageText:
- //
- // The requested resource is in use.
- //
- #define ERROR_BUSY 170L // dderror
- //
- // MessageId: ERROR_CANCEL_VIOLATION
- //
- // MessageText:
- //
- // A lock request was not outstanding for the supplied cancel region.
- //
- #define ERROR_CANCEL_VIOLATION 173L
- //
- // MessageId: ERROR_ATOMIC_LOCKS_NOT_SUPPORTED
- //
- // MessageText:
- //
- // The file system does not support atomic changes to the lock type.
- //
- #define ERROR_ATOMIC_LOCKS_NOT_SUPPORTED 174L
- //
- // MessageId: ERROR_INVALID_SEGMENT_NUMBER
- //
- // MessageText:
- //
- // The system detected a segment number that was not correct.
- //
- #define ERROR_INVALID_SEGMENT_NUMBER 180L
- //
- // MessageId: ERROR_INVALID_ORDINAL
- //
- // MessageText:
- //
- // The operating system cannot run %1.
- //
- #define ERROR_INVALID_ORDINAL 182L
- //
- // MessageId: ERROR_ALREADY_EXISTS
- //
- // MessageText:
- //
- // Cannot create a file when that file already exists.
- //
- #define ERROR_ALREADY_EXISTS 183L
- //
- // MessageId: ERROR_INVALID_FLAG_NUMBER
- //
- // MessageText:
- //
- // The flag passed is not correct.
- //
- #define ERROR_INVALID_FLAG_NUMBER 186L
- //
- // MessageId: ERROR_SEM_NOT_FOUND
- //
- // MessageText:
- //
- // The specified system semaphore name was not found.
- //
- #define ERROR_SEM_NOT_FOUND 187L
- //
- // MessageId: ERROR_INVALID_STARTING_CODESEG
- //
- // MessageText:
- //
- // The operating system cannot run %1.
- //
- #define ERROR_INVALID_STARTING_CODESEG 188L
- //
- // MessageId: ERROR_INVALID_STACKSEG
- //
- // MessageText:
- //
- // The operating system cannot run %1.
- //
- #define ERROR_INVALID_STACKSEG 189L
- //
- // MessageId: ERROR_INVALID_MODULETYPE
- //
- // MessageText:
- //
- // The operating system cannot run %1.
- //
- #define ERROR_INVALID_MODULETYPE 190L
- //
- // MessageId: ERROR_INVALID_EXE_SIGNATURE
- //
- // MessageText:
- //
- // Cannot run %1 in Win32 mode.
- //
- #define ERROR_INVALID_EXE_SIGNATURE 191L
- //
- // MessageId: ERROR_EXE_MARKED_INVALID
- //
- // MessageText:
- //
- // The operating system cannot run %1.
- //
- #define ERROR_EXE_MARKED_INVALID 192L
- //
- // MessageId: ERROR_BAD_EXE_FORMAT
- //
- // MessageText:
- //
- // %1 is not a valid Win32 application.
- //
- #define ERROR_BAD_EXE_FORMAT 193L
- //
- // MessageId: ERROR_ITERATED_DATA_EXCEEDS_64k
- //
- // MessageText:
- //
- // The operating system cannot run %1.
- //
- #define ERROR_ITERATED_DATA_EXCEEDS_64k 194L
- //
- // MessageId: ERROR_INVALID_MINALLOCSIZE
- //
- // MessageText:
- //
- // The operating system cannot run %1.
- //
- #define ERROR_INVALID_MINALLOCSIZE 195L
- //
- // MessageId: ERROR_DYNLINK_FROM_INVALID_RING
- //
- // MessageText:
- //
- // The operating system cannot run this application program.
- //
- #define ERROR_DYNLINK_FROM_INVALID_RING 196L
- //
- // MessageId: ERROR_IOPL_NOT_ENABLED
- //
- // MessageText:
- //
- // The operating system is not presently configured to run this application.
- //
- #define ERROR_IOPL_NOT_ENABLED 197L
- //
- // MessageId: ERROR_INVALID_SEGDPL
- //
- // MessageText:
- //
- // The operating system cannot run %1.
- //
- #define ERROR_INVALID_SEGDPL 198L
- //
- // MessageId: ERROR_AUTODATASEG_EXCEEDS_64k
- //
- // MessageText:
- //
- // The operating system cannot run this application program.
- //
- #define ERROR_AUTODATASEG_EXCEEDS_64k 199L
- //
- // MessageId: ERROR_RING2SEG_MUST_BE_MOVABLE
- //
- // MessageText:
- //
- // The code segment cannot be greater than or equal to 64K.
- //
- #define ERROR_RING2SEG_MUST_BE_MOVABLE 200L
- //
- // MessageId: ERROR_RELOC_CHAIN_XEEDS_SEGLIM
- //
- // MessageText:
- //
- // The operating system cannot run %1.
- //
- #define ERROR_RELOC_CHAIN_XEEDS_SEGLIM 201L
- //
- // MessageId: ERROR_INFLOOP_IN_RELOC_CHAIN
- //
- // MessageText:
- //
- // The operating system cannot run %1.
- //
- #define ERROR_INFLOOP_IN_RELOC_CHAIN 202L
- //
- // MessageId: ERROR_ENVVAR_NOT_FOUND
- //
- // MessageText:
- //
- // The system could not find the environment option that was entered.
- //
- #define ERROR_ENVVAR_NOT_FOUND 203L
- //
- // MessageId: ERROR_NO_SIGNAL_SENT
- //
- // MessageText:
- //
- // No process in the command subtree has a signal handler.
- //
- #define ERROR_NO_SIGNAL_SENT 205L
- //
- // MessageId: ERROR_FILENAME_EXCED_RANGE
- //
- // MessageText:
- //
- // The filename or extension is too long.
- //
- #define ERROR_FILENAME_EXCED_RANGE 206L
- //
- // MessageId: ERROR_RING2_STACK_IN_USE
- //
- // MessageText:
- //
- // The ring 2 stack is in use.
- //
- #define ERROR_RING2_STACK_IN_USE 207L
- //
- // MessageId: ERROR_META_EXPANSION_TOO_LONG
- //
- // MessageText:
- //
- // The global filename characters, * or ?, are entered incorrectly or too many global filename characters are specified.
- //
- #define ERROR_META_EXPANSION_TOO_LONG 208L
- //
- // MessageId: ERROR_INVALID_SIGNAL_NUMBER
- //
- // MessageText:
- //
- // The signal being posted is not correct.
- //
- #define ERROR_INVALID_SIGNAL_NUMBER 209L
- //
- // MessageId: ERROR_THREAD_1_INACTIVE
- //
- // MessageText:
- //
- // The signal handler cannot be set.
- //
- #define ERROR_THREAD_1_INACTIVE 210L
- //
- // MessageId: ERROR_LOCKED
- //
- // MessageText:
- //
- // The segment is locked and cannot be reallocated.
- //
- #define ERROR_LOCKED 212L
- //
- // MessageId: ERROR_TOO_MANY_MODULES
- //
- // MessageText:
- //
- // Too many dynamic-link modules are attached to this program or dynamic-link module.
- //
- #define ERROR_TOO_MANY_MODULES 214L
- //
- // MessageId: ERROR_NESTING_NOT_ALLOWED
- //
- // MessageText:
- //
- // Cannot nest calls to LoadModule.
- //
- #define ERROR_NESTING_NOT_ALLOWED 215L
- //
- // MessageId: ERROR_EXE_MACHINE_TYPE_MISMATCH
- //
- // MessageText:
- //
- // The image file %1 is valid, but is for a machine type other than the current machine.
- //
- #define ERROR_EXE_MACHINE_TYPE_MISMATCH 216L
- //
- // MessageId: ERROR_BAD_PIPE
- //
- // MessageText:
- //
- // The pipe state is invalid.
- //
- #define ERROR_BAD_PIPE 230L
- //
- // MessageId: ERROR_PIPE_BUSY
- //
- // MessageText:
- //
- // All pipe instances are busy.
- //
- #define ERROR_PIPE_BUSY 231L
- //
- // MessageId: ERROR_NO_DATA
- //
- // MessageText:
- //
- // The pipe is being closed.
- //
- #define ERROR_NO_DATA 232L
- //
- // MessageId: ERROR_PIPE_NOT_CONNECTED
- //
- // MessageText:
- //
- // No process is on the other end of the pipe.
- //
- #define ERROR_PIPE_NOT_CONNECTED 233L
- //
- // MessageId: ERROR_MORE_DATA
- //
- // MessageText:
- //
- // More data is available.
- //
- #define ERROR_MORE_DATA 234L // dderror
- //
- // MessageId: ERROR_VC_DISCONNECTED
- //
- // MessageText:
- //
- // The session was canceled.
- //
- #define ERROR_VC_DISCONNECTED 240L
- //
- // MessageId: ERROR_INVALID_EA_NAME
- //
- // MessageText:
- //
- // The specified extended attribute name was invalid.
- //
- #define ERROR_INVALID_EA_NAME 254L
- //
- // MessageId: ERROR_EA_LIST_INCONSISTENT
- //
- // MessageText:
- //
- // The extended attributes are inconsistent.
- //
- #define ERROR_EA_LIST_INCONSISTENT 255L
- //
- // MessageId: WAIT_TIMEOUT
- //
- // MessageText:
- //
- // The wait operation timed out.
- //
- #define WAIT_TIMEOUT 258L // dderror
- //
- // MessageId: ERROR_NO_MORE_ITEMS
- //
- // MessageText:
- //
- // No more data is available.
- //
- #define ERROR_NO_MORE_ITEMS 259L
- //
- // MessageId: ERROR_CANNOT_COPY
- //
- // MessageText:
- //
- // The copy functions cannot be used.
- //
- #define ERROR_CANNOT_COPY 266L
- //
- // MessageId: ERROR_DIRECTORY
- //
- // MessageText:
- //
- // The directory name is invalid.
- //
- #define ERROR_DIRECTORY 267L
- //
- // MessageId: ERROR_EAS_DIDNT_FIT
- //
- // MessageText:
- //
- // The extended attributes did not fit in the buffer.
- //
- #define ERROR_EAS_DIDNT_FIT 275L
- //
- // MessageId: ERROR_EA_FILE_CORRUPT
- //
- // MessageText:
- //
- // The extended attribute file on the mounted file system is corrupt.
- //
- #define ERROR_EA_FILE_CORRUPT 276L
- //
- // MessageId: ERROR_EA_TABLE_FULL
- //
- // MessageText:
- //
- // The extended attribute table file is full.
- //
- #define ERROR_EA_TABLE_FULL 277L
- //
- // MessageId: ERROR_INVALID_EA_HANDLE
- //
- // MessageText:
- //
- // The specified extended attribute handle is invalid.
- //
- #define ERROR_INVALID_EA_HANDLE 278L
- //
- // MessageId: ERROR_EAS_NOT_SUPPORTED
- //
- // MessageText:
- //
- // The mounted file system does not support extended attributes.
- //
- #define ERROR_EAS_NOT_SUPPORTED 282L
- //
- // MessageId: ERROR_NOT_OWNER
- //
- // MessageText:
- //
- // Attempt to release mutex not owned by caller.
- //
- #define ERROR_NOT_OWNER 288L
- //
- // MessageId: ERROR_TOO_MANY_POSTS
- //
- // MessageText:
- //
- // Too many posts were made to a semaphore.
- //
- #define ERROR_TOO_MANY_POSTS 298L
- //
- // MessageId: ERROR_PARTIAL_COPY
- //
- // MessageText:
- //
- // Only part of a ReadProcessMemory or WriteProcessMemory request was completed.
- //
- #define ERROR_PARTIAL_COPY 299L
- //
- // MessageId: ERROR_OPLOCK_NOT_GRANTED
- //
- // MessageText:
- //
- // The oplock request is denied.
- //
- #define ERROR_OPLOCK_NOT_GRANTED 300L
- //
- // MessageId: ERROR_INVALID_OPLOCK_PROTOCOL
- //
- // MessageText:
- //
- // An invalid oplock acknowledgment was received by the system.
- //
- #define ERROR_INVALID_OPLOCK_PROTOCOL 301L
- //
- // MessageId: ERROR_DISK_TOO_FRAGMENTED
- //
- // MessageText:
- //
- // The volume is too fragmented to complete this operation.
- //
- #define ERROR_DISK_TOO_FRAGMENTED 302L
- //
- // MessageId: ERROR_DELETE_PENDING
- //
- // MessageText:
- //
- // The file cannot be opened because it is in the process of being deleted.
- //
- #define ERROR_DELETE_PENDING 303L
- //
- // MessageId: ERROR_MR_MID_NOT_FOUND
- //
- // MessageText:
- //
- // The system cannot find message text for message number 0x%1 in the message file for %2.
- //
- #define ERROR_MR_MID_NOT_FOUND 317L
- //
- // MessageId: ERROR_INVALID_ADDRESS
- //
- // MessageText:
- //
- // Attempt to access invalid address.
- //
- #define ERROR_INVALID_ADDRESS 487L
- //
- // MessageId: ERROR_ARITHMETIC_OVERFLOW
- //
- // MessageText:
- //
- // Arithmetic result exceeded 32 bits.
- //
- #define ERROR_ARITHMETIC_OVERFLOW 534L
- //
- // MessageId: ERROR_PIPE_CONNECTED
- //
- // MessageText:
- //
- // There is a process on other end of the pipe.
- //
- #define ERROR_PIPE_CONNECTED 535L
- //
- // MessageId: ERROR_PIPE_LISTENING
- //
- // MessageText:
- //
- // Waiting for a process to open the other end of the pipe.
- //
- #define ERROR_PIPE_LISTENING 536L
- //
- // MessageId: ERROR_EA_ACCESS_DENIED
- //
- // MessageText:
- //
- // Access to the extended attribute was denied.
- //
- #define ERROR_EA_ACCESS_DENIED 994L
- //
- // MessageId: ERROR_OPERATION_ABORTED
- //
- // MessageText:
- //
- // The I/O operation has been aborted because of either a thread exit or an application request.
- //
- #define ERROR_OPERATION_ABORTED 995L
- //
- // MessageId: ERROR_IO_INCOMPLETE
- //
- // MessageText:
- //
- // Overlapped I/O event is not in a signaled state.
- //
- #define ERROR_IO_INCOMPLETE 996L
- //
- // MessageId: ERROR_IO_PENDING
- //
- // MessageText:
- //
- // Overlapped I/O operation is in progress.
- //
- #define ERROR_IO_PENDING 997L // dderror
- //
- // MessageId: ERROR_NOACCESS
- //
- // MessageText:
- //
- // Invalid access to memory location.
- //
- #define ERROR_NOACCESS 998L
- //
- // MessageId: ERROR_SWAPERROR
- //
- // MessageText:
- //
- // Error performing inpage operation.
- //
- #define ERROR_SWAPERROR 999L
- //
- // MessageId: ERROR_STACK_OVERFLOW
- //
- // MessageText:
- //
- // Recursion too deep; the stack overflowed.
- //
- #define ERROR_STACK_OVERFLOW 1001L
- //
- // MessageId: ERROR_INVALID_MESSAGE
- //
- // MessageText:
- //
- // The window cannot act on the sent message.
- //
- #define ERROR_INVALID_MESSAGE 1002L
- //
- // MessageId: ERROR_CAN_NOT_COMPLETE
- //
- // MessageText:
- //
- // Cannot complete this function.
- //
- #define ERROR_CAN_NOT_COMPLETE 1003L
- //
- // MessageId: ERROR_INVALID_FLAGS
- //
- // MessageText:
- //
- // Invalid flags.
- //
- #define ERROR_INVALID_FLAGS 1004L
- //
- // 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.
- //
- #define ERROR_UNRECOGNIZED_VOLUME 1005L
- //
- // MessageId: ERROR_FILE_INVALID
- //
- // MessageText:
- //
- // The volume for a file has been externally altered so that the opened file is no longer valid.
- //
- #define ERROR_FILE_INVALID 1006L
- //
- // MessageId: ERROR_FULLSCREEN_MODE
- //
- // MessageText:
- //
- // The requested operation cannot be performed in full-screen mode.
- //
- #define ERROR_FULLSCREEN_MODE 1007L
- //
- // MessageId: ERROR_NO_TOKEN
- //
- // MessageText:
- //
- // An attempt was made to reference a token that does not exist.
- //
- #define ERROR_NO_TOKEN 1008L
- //
- // MessageId: ERROR_BADDB
- //
- // MessageText:
- //
- // The configuration registry database is corrupt.
- //
- #define ERROR_BADDB 1009L
- //
- // MessageId: ERROR_BADKEY
- //
- // MessageText:
- //
- // The configuration registry key is invalid.
- //
- #define ERROR_BADKEY 1010L
- //
- // MessageId: ERROR_CANTOPEN
- //
- // MessageText:
- //
- // The configuration registry key could not be opened.
- //
- #define ERROR_CANTOPEN 1011L
- //
- // MessageId: ERROR_CANTREAD
- //
- // MessageText:
- //
- // The configuration registry key could not be read.
- //
- #define ERROR_CANTREAD 1012L
- //
- // MessageId: ERROR_CANTWRITE
- //
- // MessageText:
- //
- // The configuration registry key could not be written.
- //
- #define ERROR_CANTWRITE 1013L
- //
- // 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.
- //
- #define ERROR_REGISTRY_RECOVERED 1014L
- //
- // 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.
- //
- #define ERROR_REGISTRY_CORRUPT 1015L
- //
- // 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.
- //
- #define ERROR_REGISTRY_IO_FAILED 1016L
- //
- // 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.
- //
- #define ERROR_NOT_REGISTRY_FILE 1017L
- //
- // MessageId: ERROR_KEY_DELETED
- //
- // MessageText:
- //
- // Illegal operation attempted on a registry key that has been marked for deletion.
- //
- #define ERROR_KEY_DELETED 1018L
- //
- // MessageId: ERROR_NO_LOG_SPACE
- //
- // MessageText:
- //
- // System could not allocate the required space in a registry log.
- //
- #define ERROR_NO_LOG_SPACE 1019L
- //
- // MessageId: ERROR_KEY_HAS_CHILDREN
- //
- // MessageText:
- //
- // Cannot create a symbolic link in a registry key that already has subkeys or values.
- //
- #define ERROR_KEY_HAS_CHILDREN 1020L
- //
- // MessageId: ERROR_CHILD_MUST_BE_VOLATILE
- //
- // MessageText:
- //
- // Cannot create a stable subkey under a volatile parent key.
- //
- #define ERROR_CHILD_MUST_BE_VOLATILE 1021L
- //
- // 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.
- //
- #define ERROR_NOTIFY_ENUM_DIR 1022L
- //
- // MessageId: ERROR_DEPENDENT_SERVICES_RUNNING
- //
- // MessageText:
- //
- // A stop control has been sent to a service that other running services are dependent on.
- //
- #define ERROR_DEPENDENT_SERVICES_RUNNING 1051L
- //
- // MessageId: ERROR_INVALID_SERVICE_CONTROL
- //
- // MessageText:
- //
- // The requested control is not valid for this service.
- //
- #define ERROR_INVALID_SERVICE_CONTROL 1052L
- //
- // MessageId: ERROR_SERVICE_REQUEST_TIMEOUT
- //
- // MessageText:
- //
- // The service did not respond to the start or control request in a timely fashion.
- //
- #define ERROR_SERVICE_REQUEST_TIMEOUT 1053L
- //
- // MessageId: ERROR_SERVICE_NO_THREAD
- //
- // MessageText:
- //
- // A thread could not be created for the service.
- //
- #define ERROR_SERVICE_NO_THREAD 1054L
- //
- // MessageId: ERROR_SERVICE_DATABASE_LOCKED
- //
- // MessageText:
- //
- // The service database is locked.
- //
- #define ERROR_SERVICE_DATABASE_LOCKED 1055L
- //
- // MessageId: ERROR_SERVICE_ALREADY_RUNNING
- //
- // MessageText:
- //
- // An instance of the service is already running.
- //
- #define ERROR_SERVICE_ALREADY_RUNNING 1056L
- //
- // 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.
- //
- #define ERROR_INVALID_SERVICE_ACCOUNT 1057L
- //
- // 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.
- //
- #define ERROR_SERVICE_DISABLED 1058L
- //
- // MessageId: ERROR_CIRCULAR_DEPENDENCY
- //
- // MessageText:
- //
- // Circular service dependency was specified.
- //
- #define ERROR_CIRCULAR_DEPENDENCY 1059L
- //
- // MessageId: ERROR_SERVICE_DOES_NOT_EXIST
- //
- // MessageText:
- //
- // The specified service does not exist as an installed service.
- //
- #define ERROR_SERVICE_DOES_NOT_EXIST 1060L
- //
- // MessageId: ERROR_SERVICE_CANNOT_ACCEPT_CTRL
- //
- // MessageText:
- //
- // The service cannot accept control messages at this time.
- //
- #define ERROR_SERVICE_CANNOT_ACCEPT_CTRL 1061L
- //
- // MessageId: ERROR_SERVICE_NOT_ACTIVE
- //
- // MessageText:
- //
- // The service has not been started.
- //
- #define ERROR_SERVICE_NOT_ACTIVE 1062L
- //
- // MessageId: ERROR_FAILED_SERVICE_CONTROLLER_CONNECT
- //
- // MessageText:
- //
- // The service process could not connect to the service controller.
- //
- #define ERROR_FAILED_SERVICE_CONTROLLER_CONNECT 1063L
- //
- // MessageId: ERROR_EXCEPTION_IN_SERVICE
- //
- // MessageText:
- //
- // An exception occurred in the service when handling the control request.
- //
- #define ERROR_EXCEPTION_IN_SERVICE 1064L
- //
- // MessageId: ERROR_DATABASE_DOES_NOT_EXIST
- //
- // MessageText:
- //
- // The database specified does not exist.
- //
- #define ERROR_DATABASE_DOES_NOT_EXIST 1065L
- //
- // MessageId: ERROR_SERVICE_SPECIFIC_ERROR
- //
- // MessageText:
- //
- // The service has returned a service-specific error code.
- //
- #define ERROR_SERVICE_SPECIFIC_ERROR 1066L
- //
- // MessageId: ERROR_PROCESS_ABORTED
- //
- // MessageText:
- //
- // The process terminated unexpectedly.
- //
- #define ERROR_PROCESS_ABORTED 1067L
- //
- // MessageId: ERROR_SERVICE_DEPENDENCY_FAIL
- //
- // MessageText:
- //
- // The dependency service or group failed to start.
- //
- #define ERROR_SERVICE_DEPENDENCY_FAIL 1068L
- //
- // MessageId: ERROR_SERVICE_LOGON_FAILED
- //
- // MessageText:
- //
- // The service did not start due to a logon failure.
- //
- #define ERROR_SERVICE_LOGON_FAILED 1069L
- //
- // MessageId: ERROR_SERVICE_START_HANG
- //
- // MessageText:
- //
- // After starting, the service hung in a start-pending state.
- //
- #define ERROR_SERVICE_START_HANG 1070L
- //
- // MessageId: ERROR_INVALID_SERVICE_LOCK
- //
- // MessageText:
- //
- // The specified service database lock is invalid.
- //
- #define ERROR_INVALID_SERVICE_LOCK 1071L
- //
- // MessageId: ERROR_SERVICE_MARKED_FOR_DELETE
- //
- // MessageText:
- //
- // The specified service has been marked for deletion.
- //
- #define ERROR_SERVICE_MARKED_FOR_DELETE 1072L
- //
- // MessageId: ERROR_SERVICE_EXISTS
- //
- // MessageText:
- //
- // The specified service already exists.
- //
- #define ERROR_SERVICE_EXISTS 1073L
- //
- // MessageId: ERROR_ALREADY_RUNNING_LKG
- //
- // MessageText:
- //
- // The system is currently running with the last-known-good configuration.
- //
- #define ERROR_ALREADY_RUNNING_LKG 1074L
- //
- // MessageId: ERROR_SERVICE_DEPENDENCY_DELETED
- //
- // MessageText:
- //
- // The dependency service does not exist or has been marked for deletion.
- //
- #define ERROR_SERVICE_DEPENDENCY_DELETED 1075L
- //
- // MessageId: ERROR_BOOT_ALREADY_ACCEPTED
- //
- // MessageText:
- //
- // The current boot has already been accepted for use as the last-known-good control set.
- //
- #define ERROR_BOOT_ALREADY_ACCEPTED 1076L
- //
- // MessageId: ERROR_SERVICE_NEVER_STARTED
- //
- // MessageText:
- //
- // No attempts to start the service have been made since the last boot.
- //
- #define ERROR_SERVICE_NEVER_STARTED 1077L
- //
- // MessageId: ERROR_DUPLICATE_SERVICE_NAME
- //
- // MessageText:
- //
- // The name is already in use as either a service name or a service display name.
- //
- #define ERROR_DUPLICATE_SERVICE_NAME 1078L
- //
- // MessageId: ERROR_DIFFERENT_SERVICE_ACCOUNT
- //
- // MessageText:
- //
- // The account specified for this service is different from the account specified for other services running in the same process.
- //
- #define ERROR_DIFFERENT_SERVICE_ACCOUNT 1079L
- //
- // MessageId: ERROR_CANNOT_DETECT_DRIVER_FAILURE
- //
- // MessageText:
- //
- // Failure actions can only be set for Win32 services, not for drivers.
- //
- #define ERROR_CANNOT_DETECT_DRIVER_FAILURE 1080L
- //
- // MessageId: ERROR_CANNOT_DETECT_PROCESS_ABORT
- //
- // MessageText:
- //
- // This service runs in the same process as the service control manager.
- // Therefore, the service control manager cannot take action if this service's process terminates unexpectedly.
- //
- #define ERROR_CANNOT_DETECT_PROCESS_ABORT 1081L
- //
- // MessageId: ERROR_NO_RECOVERY_PROGRAM
- //
- // MessageText:
- //
- // No recovery program has been configured for this service.
- //
- #define ERROR_NO_RECOVERY_PROGRAM 1082L
- //
- // MessageId: ERROR_SERVICE_NOT_IN_EXE
- //
- // MessageText:
- //
- // The executable program that this service is configured to run in does not implement the service.
- //
- #define ERROR_SERVICE_NOT_IN_EXE 1083L
- //
- // MessageId: ERROR_NOT_SAFEBOOT_SERVICE
- //
- // MessageText:
- //
- // This service cannot be started in Safe Mode
- //
- #define ERROR_NOT_SAFEBOOT_SERVICE 1084L
- //
- // MessageId: ERROR_END_OF_MEDIA
- //
- // MessageText:
- //
- // The physical end of the tape has been reached.
- //
- #define ERROR_END_OF_MEDIA 1100L
- //
- // MessageId: ERROR_FILEMARK_DETECTED
- //
- // MessageText:
- //
- // A tape access reached a filemark.
- //
- #define ERROR_FILEMARK_DETECTED 1101L
- //
- // MessageId: ERROR_BEGINNING_OF_MEDIA
- //
- // MessageText:
- //
- // The beginning of the tape or a partition was encountered.
- //
- #define ERROR_BEGINNING_OF_MEDIA 1102L
- //
- // MessageId: ERROR_SETMARK_DETECTED
- //
- // MessageText:
- //
- // A tape access reached the end of a set of files.
- //
- #define ERROR_SETMARK_DETECTED 1103L
- //
- // MessageId: ERROR_NO_DATA_DETECTED
- //
- // MessageText:
- //
- // No more data is on the tape.
- //
- #define ERROR_NO_DATA_DETECTED 1104L
- //
- // MessageId: ERROR_PARTITION_FAILURE
- //
- // MessageText:
- //
- // Tape could not be partitioned.
- //
- #define ERROR_PARTITION_FAILURE 1105L
- //
- // MessageId: ERROR_INVALID_BLOCK_LENGTH
- //
- // MessageText:
- //
- // When accessing a new tape of a multivolume partition, the current block size is incorrect.
- //
- #define ERROR_INVALID_BLOCK_LENGTH 1106L
- //
- // MessageId: ERROR_DEVICE_NOT_PARTITIONED
- //
- // MessageText:
- //
- // Tape partition information could not be found when loading a tape.
- //
- #define ERROR_DEVICE_NOT_PARTITIONED 1107L
- //
- // MessageId: ERROR_UNABLE_TO_LOCK_MEDIA
- //
- // MessageText:
- //
- // Unable to lock the media eject mechanism.
- //
- #define ERROR_UNABLE_TO_LOCK_MEDIA 1108L
- //
- // MessageId: ERROR_UNABLE_TO_UNLOAD_MEDIA
- //
- // MessageText:
- //
- // Unable to unload the media.
- //
- #define ERROR_UNABLE_TO_UNLOAD_MEDIA 1109L
- //
- // MessageId: ERROR_MEDIA_CHANGED
- //
- // MessageText:
- //
- // The media in the drive may have changed.
- //
- #define ERROR_MEDIA_CHANGED 1110L
- //
- // MessageId: ERROR_BUS_RESET
- //
- // MessageText:
- //
- // The I/O bus was reset.
- //
- #define ERROR_BUS_RESET 1111L
- //
- // MessageId: ERROR_NO_MEDIA_IN_DRIVE
- //
- // MessageText:
- //
- // No media in drive.
- //
- #define ERROR_NO_MEDIA_IN_DRIVE 1112L
- //
- // MessageId: ERROR_NO_UNICODE_TRANSLATION
- //
- // MessageText:
- //
- // No mapping for the Unicode character exists in the target multi-byte code page.
- //
- #define ERROR_NO_UNICODE_TRANSLATION 1113L
- //
- // MessageId: ERROR_DLL_INIT_FAILED
- //
- // MessageText:
- //
- // A dynamic link library (DLL) initialization routine failed.
- //
- #define ERROR_DLL_INIT_FAILED 1114L
- //
- // MessageId: ERROR_SHUTDOWN_IN_PROGRESS
- //
- // MessageText:
- //
- // A system shutdown is in progress.
- //
- #define ERROR_SHUTDOWN_IN_PROGRESS 1115L
- //
- // MessageId: ERROR_NO_SHUTDOWN_IN_PROGRESS
- //
- // MessageText:
- //
- // Unable to abort the system shutdown because no shutdown was in progress.
- //
- #define ERROR_NO_SHUTDOWN_IN_PROGRESS 1116L
- //
- // MessageId: ERROR_IO_DEVICE
- //
- // MessageText:
- //
- // The request could not be performed because of an I/O device error.
- //
- #define ERROR_IO_DEVICE 1117L
- //
- // MessageId: ERROR_SERIAL_NO_DEVICE
- //
- // MessageText:
- //
- // No serial device was successfully initialized. The serial driver will unload.
- //
- #define ERROR_SERIAL_NO_DEVICE 1118L
- //
- // MessageId: ERROR_IRQ_BUSY
- //
- // MessageText:
- //
- // Unable to open a device that was sharing an interrupt request (IRQ) with other devices. At least one other device that uses that IRQ was already opened.
- //
- #define ERROR_IRQ_BUSY 1119L
- //
- // MessageId: ERROR_MORE_WRITES
- //
- // MessageText:
- //
- // A serial I/O operation was completed by another write to the serial port.
- // (The IOCTL_SERIAL_XOFF_COUNTER reached zero.)
- //
- #define ERROR_MORE_WRITES 1120L
- //
- // MessageId: ERROR_COUNTER_TIMEOUT
- //
- // MessageText:
- //
- // A serial I/O operation completed because the timeout period expired.
- // (The IOCTL_SERIAL_XOFF_COUNTER did not reach zero.)
- //
- #define ERROR_COUNTER_TIMEOUT 1121L
- //
- // MessageId: ERROR_FLOPPY_ID_MARK_NOT_FOUND
- //
- // MessageText:
- //
- // No ID address mark was found on the floppy disk.
- //
- #define ERROR_FLOPPY_ID_MARK_NOT_FOUND 1122L
- //
- // MessageId: ERROR_FLOPPY_WRONG_CYLINDER
- //
- // MessageText:
- //
- // Mismatch between the floppy disk sector ID field and the floppy disk controller track address.
- //
- #define ERROR_FLOPPY_WRONG_CYLINDER 1123L
- //
- // MessageId: ERROR_FLOPPY_UNKNOWN_ERROR
- //
- // MessageText:
- //
- // The floppy disk controller reported an error that is not recognized by the floppy disk driver.
- //
- #define ERROR_FLOPPY_UNKNOWN_ERROR 1124L
- //
- // MessageId: ERROR_FLOPPY_BAD_REGISTERS
- //
- // MessageText:
- //
- // The floppy disk controller returned inconsistent results in its registers.
- //
- #define ERROR_FLOPPY_BAD_REGISTERS 1125L
- //
- // MessageId: ERROR_DISK_RECALIBRATE_FAILED
- //
- // MessageText:
- //
- // While accessing the hard disk, a recalibrate operation failed, even after retries.
- //
- #define ERROR_DISK_RECALIBRATE_FAILED 1126L
- //
- // MessageId: ERROR_DISK_OPERATION_FAILED
- //
- // MessageText:
- //
- // While accessing the hard disk, a disk operation failed even after retries.
- //
- #define ERROR_DISK_OPERATION_FAILED 1127L
- //
- // MessageId: ERROR_DISK_RESET_FAILED
- //
- // MessageText:
- //
- // While accessing the hard disk, a disk controller reset was needed, but even that failed.
- //
- #define ERROR_DISK_RESET_FAILED 1128L
- //
- // MessageId: ERROR_EOM_OVERFLOW
- //
- // MessageText:
- //
- // Physical end of tape encountered.
- //
- #define ERROR_EOM_OVERFLOW 1129L
- //
- // MessageId: ERROR_NOT_ENOUGH_SERVER_MEMORY
- //
- // MessageText:
- //
- // Not enough server storage is available to process this command.
- //
- #define ERROR_NOT_ENOUGH_SERVER_MEMORY 1130L
- //
- // MessageId: ERROR_POSSIBLE_DEADLOCK
- //
- // MessageText:
- //
- // A potential deadlock condition has been detected.
- //
- #define ERROR_POSSIBLE_DEADLOCK 1131L
- //
- // MessageId: ERROR_MAPPED_ALIGNMENT
- //
- // MessageText:
- //
- // The base address or the file offset specified does not have the proper alignment.
- //
- #define ERROR_MAPPED_ALIGNMENT 1132L
- //
- // MessageId: ERROR_SET_POWER_STATE_VETOED
- //
- // MessageText:
- //
- // An attempt to change the system power state was vetoed by another application or driver.
- //
- #define ERROR_SET_POWER_STATE_VETOED 1140L
- //
- // MessageId: ERROR_SET_POWER_STATE_FAILED
- //
- // MessageText:
- //
- // The system BIOS failed an attempt to change the system power state.
- //
- #define ERROR_SET_POWER_STATE_FAILED 1141L
- //
- // MessageId: ERROR_TOO_MANY_LINKS
- //
- // MessageText:
- //
- // An attempt was made to create more links on a file than the file system supports.
- //
- #define ERROR_TOO_MANY_LINKS 1142L
- //
- // MessageId: ERROR_OLD_WIN_VERSION
- //
- // MessageText:
- //
- // The specified program requires a newer version of Windows.
- //
- #define ERROR_OLD_WIN_VERSION 1150L
- //
- // MessageId: ERROR_APP_WRONG_OS
- //
- // MessageText:
- //
- // The specified program is not a Windows or MS-DOS program.
- //
- #define ERROR_APP_WRONG_OS 1151L
- //
- // MessageId: ERROR_SINGLE_INSTANCE_APP
- //
- // MessageText:
- //
- // Cannot start more than one instance of the specified program.
- //
- #define ERROR_SINGLE_INSTANCE_APP 1152L
- //
- // MessageId: ERROR_RMODE_APP
- //
- // MessageText:
- //
- // The specified program was written for an earlier version of Windows.
- //
- #define ERROR_RMODE_APP 1153L
- //
- // MessageId: ERROR_INVALID_DLL
- //
- // MessageText:
- //
- // One of the library files needed to run this application is damaged.
- //
- #define ERROR_INVALID_DLL 1154L
- //
- // MessageId: ERROR_NO_ASSOCIATION
- //
- // MessageText:
- //
- // No application is associated with the specified file for this operation.
- //
- #define ERROR_NO_ASSOCIATION 1155L
- //
- // MessageId: ERROR_DDE_FAIL
- //
- // MessageText:
- //
- // An error occurred in sending the command to the application.
- //
- #define ERROR_DDE_FAIL 1156L
- //
- // MessageId: ERROR_DLL_NOT_FOUND
- //
- // MessageText:
- //
- // One of the library files needed to run this application cannot be found.
- //
- #define ERROR_DLL_NOT_FOUND 1157L
- //
- // MessageId: ERROR_NO_MORE_USER_HANDLES
- //
- // MessageText:
- //
- // The current process has used all of its system allowance of handles for Window Manager objects.
- //
- #define ERROR_NO_MORE_USER_HANDLES 1158L
- //
- // MessageId: ERROR_MESSAGE_SYNC_ONLY
- //
- // MessageText:
- //
- // The message can be used only with synchronous operations.
- //
- #define ERROR_MESSAGE_SYNC_ONLY 1159L
- //
- // MessageId: ERROR_SOURCE_ELEMENT_EMPTY
- //
- // MessageText:
- //
- // The indicated source element has no media.
- //
- #define ERROR_SOURCE_ELEMENT_EMPTY 1160L
- //
- // MessageId: ERROR_DESTINATION_ELEMENT_FULL
- //
- // MessageText:
- //
- // The indicated destination element already contains media.
- //
- #define ERROR_DESTINATION_ELEMENT_FULL 1161L
- //
- // MessageId: ERROR_ILLEGAL_ELEMENT_ADDRESS
- //
- // MessageText:
- //
- // The indicated element does not exist.
- //
- #define ERROR_ILLEGAL_ELEMENT_ADDRESS 1162L
- //
- // MessageId: ERROR_MAGAZINE_NOT_PRESENT
- //
- // MessageText:
- //
- // The indicated element is part of a magazine that is not present.
- //
- #define ERROR_MAGAZINE_NOT_PRESENT 1163L
- //
- // MessageId: ERROR_DEVICE_REINITIALIZATION_NEEDED
- //
- // MessageText:
- //
- // The indicated device requires reinitialization due to hardware errors.
- //
- #define ERROR_DEVICE_REINITIALIZATION_NEEDED 1164L // dderror
- //
- // MessageId: ERROR_DEVICE_REQUIRES_CLEANING
- //
- // MessageText:
- //
- // The device has indicated that cleaning is required before further operations are attempted.
- //
- #define ERROR_DEVICE_REQUIRES_CLEANING 1165L
- //
- // MessageId: ERROR_DEVICE_DOOR_OPEN
- //
- // MessageText:
- //
- // The device has indicated that its door is open.
- //
- #define ERROR_DEVICE_DOOR_OPEN 1166L
- //
- // MessageId: ERROR_DEVICE_NOT_CONNECTED
- //
- // MessageText:
- //
- // The device is not connected.
- //
- #define ERROR_DEVICE_NOT_CONNECTED 1167L
- //
- // MessageId: ERROR_NOT_FOUND
- //
- // MessageText:
- //
- // Element not found.
- //
- #define ERROR_NOT_FOUND 1168L
- //
- // MessageId: ERROR_NO_MATCH
- //
- // MessageText:
- //
- // There was no match for the specified key in the index.
- //
- #define ERROR_NO_MATCH 1169L
- //
- // MessageId: ERROR_SET_NOT_FOUND
- //
- // MessageText:
- //
- // The property set specified does not exist on the object.
- //
- #define ERROR_SET_NOT_FOUND 1170L
- //
- // MessageId: ERROR_POINT_NOT_FOUND
- //
- // MessageText:
- //
- // The point passed to GetMouseMovePoints is not in the buffer.
- //
- #define ERROR_POINT_NOT_FOUND 1171L
- //
- // MessageId: ERROR_NO_TRACKING_SERVICE
- //
- // MessageText:
- //
- // The tracking (workstation) service is not running.
- //
- #define ERROR_NO_TRACKING_SERVICE 1172L
- //
- // MessageId: ERROR_NO_VOLUME_ID
- //
- // MessageText:
- //
- // The Volume ID could not be found.
- //
- #define ERROR_NO_VOLUME_ID 1173L
- //
- // MessageId: ERROR_UNABLE_TO_REMOVE_REPLACED
- //
- // MessageText:
- //
- // Unable to remove the file to be replaced.
- //
- #define ERROR_UNABLE_TO_REMOVE_REPLACED 1175L
- //
- // MessageId: ERROR_UNABLE_TO_MOVE_REPLACEMENT
- //
- // MessageText:
- //
- // Unable to move the replacement file to the file to be replaced. The file to be replaced has retained its original name.
- //
- #define ERROR_UNABLE_TO_MOVE_REPLACEMENT 1176L
- //
- // MessageId: ERROR_UNABLE_TO_MOVE_REPLACEMENT_2
- //
- // MessageText:
- //
- // Unable to move the replacement file to the file to be replaced. The file to be replaced has been renamed using the backup name.
- //
- #define ERROR_UNABLE_TO_MOVE_REPLACEMENT_2 1177L
- //
- // MessageId: ERROR_JOURNAL_DELETE_IN_PROGRESS
- //
- // MessageText:
- //
- // The volume change journal is being deleted.
- //
- #define ERROR_JOURNAL_DELETE_IN_PROGRESS 1178L
- //
- // MessageId: ERROR_JOURNAL_NOT_ACTIVE
- //
- // MessageText:
- //
- // The volume change journal is not active.
- //
- #define ERROR_JOURNAL_NOT_ACTIVE 1179L
- //
- // MessageId: ERROR_POTENTIAL_FILE_FOUND
- //
- // MessageText:
- //
- // A file was found, but it may not be the correct file.
- //
- #define ERROR_POTENTIAL_FILE_FOUND 1180L
- //
- // MessageId: ERROR_JOURNAL_ENTRY_DELETED
- //
- // MessageText:
- //
- // The journal entry has been deleted from the journal.
- //
- #define ERROR_JOURNAL_ENTRY_DELETED 1181L
- //
- // MessageId: ERROR_BAD_DEVICE
- //
- // MessageText:
- //
- // The specified device name is invalid.
- //
- #define ERROR_BAD_DEVICE 1200L
- //
- // MessageId: ERROR_CONNECTION_UNAVAIL
- //
- // MessageText:
- //
- // The device is not currently connected but it is a remembered connection.
- //
- #define ERROR_CONNECTION_UNAVAIL 1201L
- //
- // MessageId: ERROR_DEVICE_ALREADY_REMEMBERED
- //
- // MessageText:
- //
- // The local device name has a remembered connection to another network resource.
- //
- #define ERROR_DEVICE_ALREADY_REMEMBERED 1202L
- //
- // MessageId: ERROR_NO_NET_OR_BAD_PATH
- //
- // MessageText:
- //
- // No network provider accepted the given network path.
- //
- #define ERROR_NO_NET_OR_BAD_PATH 1203L
- //
- // MessageId: ERROR_BAD_PROVIDER
- //
- // MessageText:
- //
- // The specified network provider name is invalid.
- //
- #define ERROR_BAD_PROVIDER 1204L
- //
- // MessageId: ERROR_CANNOT_OPEN_PROFILE
- //
- // MessageText:
- //
- // Unable to open the network connection profile.
- //
- #define ERROR_CANNOT_OPEN_PROFILE 1205L
- //
- // MessageId: ERROR_BAD_PROFILE
- //
- // MessageText:
- //
- // The network connection profile is corrupted.
- //
- #define ERROR_BAD_PROFILE 1206L
- //
- // MessageId: ERROR_NOT_CONTAINER
- //
- // MessageText:
- //
- // Cannot enumerate a noncontainer.
- //
- #define ERROR_NOT_CONTAINER 1207L
- //
- // MessageId: ERROR_EXTENDED_ERROR
- //
- // MessageText:
- //
- // An extended error has occurred.
- //
- #define ERROR_EXTENDED_ERROR 1208L
- //
- // MessageId: ERROR_INVALID_GROUPNAME
- //
- // MessageText:
- //
- // The format of the specified group name is invalid.
- //
- #define ERROR_INVALID_GROUPNAME 1209L
- //
- // MessageId: ERROR_INVALID_COMPUTERNAME
- //
- // MessageText:
- //
- // The format of the specified computer name is invalid.
- //
- #define ERROR_INVALID_COMPUTERNAME 1210L
- //
- // MessageId: ERROR_INVALID_EVENTNAME
- //
- // MessageText:
- //
- // The format of the specified event name is invalid.
- //
- #define ERROR_INVALID_EVENTNAME 1211L
- //
- // MessageId: ERROR_INVALID_DOMAINNAME
- //
- // MessageText:
- //
- // The format of the specified domain name is invalid.
- //
- #define ERROR_INVALID_DOMAINNAME 1212L
- //
- // MessageId: ERROR_INVALID_SERVICENAME
- //
- // MessageText:
- //
- // The format of the specified service name is invalid.
- //
- #define ERROR_INVALID_SERVICENAME 1213L
- //
- // MessageId: ERROR_INVALID_NETNAME
- //
- // MessageText:
- //
- // The format of the specified network name is invalid.
- //
- #define ERROR_INVALID_NETNAME 1214L
- //
- // MessageId: ERROR_INVALID_SHARENAME
- //
- // MessageText:
- //
- // The format of the specified share name is invalid.
- //
- #define ERROR_INVALID_SHARENAME 1215L
- //
- // MessageId: ERROR_INVALID_PASSWORDNAME
- //
- // MessageText:
- //
- // The format of the specified password is invalid.
- //
- #define ERROR_INVALID_PASSWORDNAME 1216L
- //
- // MessageId: ERROR_INVALID_MESSAGENAME
- //
- // MessageText:
- //
- // The format of the specified message name is invalid.
- //
- #define ERROR_INVALID_MESSAGENAME 1217L
- //
- // MessageId: ERROR_INVALID_MESSAGEDEST
- //
- // MessageText:
- //
- // The format of the specified message destination is invalid.
- //
- #define ERROR_INVALID_MESSAGEDEST 1218L
- //
- // MessageId: ERROR_SESSION_CREDENTIAL_CONFLICT
- //
- // MessageText:
- //
- // Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed. Disconnect all previous connections to the server or shared resource and try again..
- //
- #define ERROR_SESSION_CREDENTIAL_CONFLICT 1219L
- //
- // MessageId: ERROR_REMOTE_SESSION_LIMIT_EXCEEDED
- //
- // MessageText:
- //
- // An attempt was made to establish a session to a network server, but there are already too many sessions established to that server.
- //
- #define ERROR_REMOTE_SESSION_LIMIT_EXCEEDED 1220L
- //
- // MessageId: ERROR_DUP_DOMAINNAME
- //
- // MessageText:
- //
- // The workgroup or domain name is already in use by another computer on the network.
- //
- #define ERROR_DUP_DOMAINNAME 1221L
- //
- // MessageId: ERROR_NO_NETWORK
- //
- // MessageText:
- //
- // The network is not present or not started.
- //
- #define ERROR_NO_NETWORK 1222L
- //
- // MessageId: ERROR_CANCELLED
- //
- // MessageText:
- //
- // The operation was canceled by the user.
- //
- #define ERROR_CANCELLED 1223L
- //
- // MessageId: ERROR_USER_MAPPED_FILE
- //
- // MessageText:
- //
- // The requested operation cannot be performed on a file with a user-mapped section open.
- //
- #define ERROR_USER_MAPPED_FILE 1224L
- //
- // MessageId: ERROR_CONNECTION_REFUSED
- //
- // MessageText:
- //
- // The remote system refused the network connection.
- //
- #define ERROR_CONNECTION_REFUSED 1225L
- //
- // MessageId: ERROR_GRACEFUL_DISCONNECT
- //
- // MessageText:
- //
- // The network connection was gracefully closed.
- //
- #define ERROR_GRACEFUL_DISCONNECT 1226L
- //
- // MessageId: ERROR_ADDRESS_ALREADY_ASSOCIATED
- //
- // MessageText:
- //
- // The network transport endpoint already has an address associated with it.
- //
- #define ERROR_ADDRESS_ALREADY_ASSOCIATED 1227L
- //
- // MessageId: ERROR_ADDRESS_NOT_ASSOCIATED
- //
- // MessageText:
- //
- // An address has not yet been associated with the network endpoint.
- //
- #define ERROR_ADDRESS_NOT_ASSOCIATED 1228L
- //
- // MessageId: ERROR_CONNECTION_INVALID
- //
- // MessageText:
- //
- // An operation was attempted on a nonexistent network connection.
- //
- #define ERROR_CONNECTION_INVALID 1229L
- //
- // MessageId: ERROR_CONNECTION_ACTIVE
- //
- // MessageText:
- //
- // An invalid operation was attempted on an active network connection.
- //
- #define ERROR_CONNECTION_ACTIVE 1230L
- //
- // MessageId: ERROR_NETWORK_UNREACHABLE
- //
- // MessageText:
- //
- // The network location cannot be reached. For information about network troubleshooting, see Windows Help.
- //
- #define ERROR_NETWORK_UNREACHABLE 1231L
- //
- // MessageId: ERROR_HOST_UNREACHABLE
- //
- // MessageText:
- //
- // The network location cannot be reached. For information about network troubleshooting, see Windows Help.
- //
- #define ERROR_HOST_UNREACHABLE 1232L
- //
- // MessageId: ERROR_PROTOCOL_UNREACHABLE
- //
- // MessageText:
- //
- // The network location cannot be reached. For information about network troubleshooting, see Windows Help.
- //
- #define ERROR_PROTOCOL_UNREACHABLE 1233L
- //
- // MessageId: ERROR_PORT_UNREACHABLE
- //
- // MessageText:
- //
- // No service is operating at the destination network endpoint on the remote system.
- //
- #define ERROR_PORT_UNREACHABLE 1234L
- //
- // MessageId: ERROR_REQUEST_ABORTED
- //
- // MessageText:
- //
- // The request was aborted.
- //
- #define ERROR_REQUEST_ABORTED 1235L
- //
- // MessageId: ERROR_CONNECTION_ABORTED
- //
- // MessageText:
- //
- // The network connection was aborted by the local system.
- //
- #define ERROR_CONNECTION_ABORTED 1236L
- //
- // MessageId: ERROR_RETRY
- //
- // MessageText:
- //
- // The operation could not be completed. A retry should be performed.
- //
- #define ERROR_RETRY 1237L
- //
- // MessageId: ERROR_CONNECTION_COUNT_LIMIT
- //
- // MessageText:
- //
- // A connection to the server could not be made because the limit on the number of concurrent connections for this account has been reached.
- //
- #define ERROR_CONNECTION_COUNT_LIMIT 1238L
- //
- // MessageId: ERROR_LOGIN_TIME_RESTRICTION
- //
- // MessageText:
- //
- // Attempting to log in during an unauthorized time of day for this account.
- //
- #define ERROR_LOGIN_TIME_RESTRICTION 1239L
- //
- // MessageId: ERROR_LOGIN_WKSTA_RESTRICTION
- //
- // MessageText:
- //
- // The account is not authorized to log in from this station.
- //
- #define ERROR_LOGIN_WKSTA_RESTRICTION 1240L
- //
- // MessageId: ERROR_INCORRECT_ADDRESS
- //
- // MessageText:
- //
- // The network address could not be used for the operation requested.
- //
- #define ERROR_INCORRECT_ADDRESS 1241L
- //
- // MessageId: ERROR_ALREADY_REGISTERED
- //
- // MessageText:
- //
- // The service is already registered.
- //
- #define ERROR_ALREADY_REGISTERED 1242L
- //
- // MessageId: ERROR_SERVICE_NOT_FOUND
- //
- // MessageText:
- //
- // The specified service does not exist.
- //
- #define ERROR_SERVICE_NOT_FOUND 1243L
- //
- // MessageId: ERROR_NOT_AUTHENTICATED
- //
- // MessageText:
- //
- // The operation being requested was not performed because the user has not been authenticated.
- //
- #define ERROR_NOT_AUTHENTICATED 1244L
- //
- // MessageId: ERROR_NOT_LOGGED_ON
- //
- // MessageText:
- //
- // The operation being requested was not performed because the user has not logged on to the network.
- // The specified service does not exist.
- //
- #define ERROR_NOT_LOGGED_ON 1245L
- //
- // MessageId: ERROR_CONTINUE
- //
- // MessageText:
- //
- // Continue with work in progress.
- //
- #define ERROR_CONTINUE 1246L // dderror
- //
- // MessageId: ERROR_ALREADY_INITIALIZED
- //
- // MessageText:
- //
- // An attempt was made to perform an initialization operation when initialization has already been completed.
- //
- #define ERROR_ALREADY_INITIALIZED 1247L
- //
- // MessageId: ERROR_NO_MORE_DEVICES
- //
- // MessageText:
- //
- // No more local devices.
- //
- #define ERROR_NO_MORE_DEVICES 1248L // dderror
- //
- // MessageId: ERROR_NO_SUCH_SITE
- //
- // MessageText:
- //
- // The specified site does not exist.
- //
- #define ERROR_NO_SUCH_SITE 1249L
- //
- // MessageId: ERROR_DOMAIN_CONTROLLER_EXISTS
- //
- // MessageText:
- //
- // A domain controller with the specified name already exists.
- //
- #define ERROR_DOMAIN_CONTROLLER_EXISTS 1250L
- //
- // MessageId: ERROR_ONLY_IF_CONNECTED
- //
- // MessageText:
- //
- // This operation is supported only when you are connected to the server.
- //
- #define ERROR_ONLY_IF_CONNECTED 1251L
- //
- // MessageId: ERROR_OVERRIDE_NOCHANGES
- //
- // MessageText:
- //
- // The group policy framework should call the extension even if there are no changes.
- //
- #define ERROR_OVERRIDE_NOCHANGES 1252L
- //
- // MessageId: ERROR_BAD_USER_PROFILE
- //
- // MessageText:
- //
- // The specified user does not have a valid profile.
- //
- #define ERROR_BAD_USER_PROFILE 1253L
- //
- // MessageId: ERROR_NOT_SUPPORTED_ON_SBS
- //
- // MessageText:
- //
- // This operation is not supported on a Microsoft Small Business Server
- //
- #define ERROR_NOT_SUPPORTED_ON_SBS 1254L
- //
- // MessageId: ERROR_SERVER_SHUTDOWN_IN_PROGRESS
- //
- // MessageText:
- //
- // The server machine is shutting down.
- //
- #define ERROR_SERVER_SHUTDOWN_IN_PROGRESS 1255L
- //
- // MessageId: ERROR_HOST_DOWN
- //
- // MessageText:
- //
- // The remote system is not available. For information about network troubleshooting, see Windows Help.
- //
- #define ERROR_HOST_DOWN 1256L
- //
- // MessageId: ERROR_NON_ACCOUNT_SID
- //
- // MessageText:
- //
- // The security identifier provided is not from an account domain.
- //
- #define ERROR_NON_ACCOUNT_SID 1257L
- //
- // MessageId: ERROR_NON_DOMAIN_SID
- //
- // MessageText:
- //
- // The security identifier provided does not have a domain component.
- //
- #define ERROR_NON_DOMAIN_SID 1258L
- //
- // MessageId: ERROR_APPHELP_BLOCK
- //
- // MessageText:
- //
- // AppHelp dialog canceled thus preventing the application from starting.
- //
- #define ERROR_APPHELP_BLOCK 1259L
- //
- // MessageId: ERROR_ACCESS_DISABLED_BY_POLICY
- //
- // MessageText:
- //
- // Windows cannot open this program because it has been prevented by a software restriction policy. For more information, open Event Viewer or contact your system administrator.
- //
- #define ERROR_ACCESS_DISABLED_BY_POLICY 1260L
- //
- // MessageId: ERROR_REG_NAT_CONSUMPTION
- //
- // MessageText:
- //
- // A program attempt to use an invalid register value. Normally caused by an uninitialized register. This error is Itanium specific.
- //
- #define ERROR_REG_NAT_CONSUMPTION 1261L
- //
- // MessageId: ERROR_CSCSHARE_OFFLINE
- //
- // MessageText:
- //
- // The share is currently offline or does not exist.
- //
- #define ERROR_CSCSHARE_OFFLINE 1262L
- //
- // MessageId: ERROR_PKINIT_FAILURE
- //
- // MessageText:
- //
- // The kerberos protocol encountered an error while validating the
- // KDC certificate during smartcard logon.
- //
- #define ERROR_PKINIT_FAILURE 1263L
- //
- // MessageId: ERROR_SMARTCARD_SUBSYSTEM_FAILURE
- //
- // MessageText:
- //
- // The kerberos protocol encountered an error while attempting to utilize
- // the smartcard subsystem.
- //
- #define ERROR_SMARTCARD_SUBSYSTEM_FAILURE 1264L
- //
- // MessageId: ERROR_DOWNGRADE_DETECTED
- //
- // MessageText:
- //
- // The system detected a possible attempt to compromise security. Please ensure that you can contact the server that authenticated you.
- //
- #define ERROR_DOWNGRADE_DETECTED 1265L
- //
- // MessageId: SEC_E_SMARTCARD_CERT_REVOKED
- //
- // MessageText:
- //
- // The smartcard certificate used for authentication has been revoked.
- // Please contact your system administrator. There may be additional information in the
- // event log.
- //
- #define SEC_E_SMARTCARD_CERT_REVOKED 1266L
- //
- // MessageId: SEC_E_ISSUING_CA_UNTRUSTED
- //
- // MessageText:
- //
- // An untrusted certificate authority was detected While processing the
- // smartcard certificate used for authentication. Please contact your system
- // administrator.
- //
- #define SEC_E_ISSUING_CA_UNTRUSTED 1267L
- //
- // MessageId: SEC_E_REVOCATION_OFFLINE_C
- //
- // MessageText:
- //
- // The revocation status of the smartcard certificate used for
- // authentication could not be determined. Please contact your system administrator.
- //
- #define SEC_E_REVOCATION_OFFLINE_C 1268L
- //
- // MessageId: SEC_E_PKINIT_CLIENT_FAILURE
- //
- // MessageText:
- //
- // The smartcard certificate used for authentication was not trusted. Please
- // contact your system administrator.
- //
- #define SEC_E_PKINIT_CLIENT_FAILURE 1269L
- //
- // MessageId: SEC_E_SMARTCARD_CERT_EXPIRED
- //
- // MessageText:
- //
- // The smartcard certificate used for authentication has expired. Please
- // contact your system administrator.
- //
- #define SEC_E_SMARTCARD_CERT_EXPIRED 1270L
- //
- // MessageId: ERROR_MACHINE_LOCKED
- //
- // MessageText:
- //
- // The machine is locked and can not be shut down without the force option.
- //
- #define ERROR_MACHINE_LOCKED 1271L
- //
- // MessageId: ERROR_CALLBACK_SUPPLIED_INVALID_DATA
- //
- // MessageText:
- //
- // An application-defined callback gave invalid data when called.
- //
- #define ERROR_CALLBACK_SUPPLIED_INVALID_DATA 1273L
- //
- // MessageId: ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED
- //
- // MessageText:
- //
- // The group policy framework should call the extension in the synchronous foreground policy refresh.
- //
- #define ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED 1274L
- //
- // MessageId: ERROR_DRIVER_BLOCKED
- //
- // MessageText:
- //
- // This driver has been blocked from loading
- //
- #define ERROR_DRIVER_BLOCKED 1275L
- //
- // MessageId: ERROR_INVALID_IMPORT_OF_NON_DLL
- //
- // MessageText:
- //
- // A dynamic link library (DLL) referenced a module that was neither a DLL nor the process's executable image.
- //
- #define ERROR_INVALID_IMPORT_OF_NON_DLL 1276L
- ///////////////////////////
- //
- // Add new status codes before this point unless there is a component specific section below.
- //
- ///////////////////////////
- ///////////////////////////
- // //
- // Security Status Codes //
- // //
- ///////////////////////////
- //
- // MessageId: ERROR_NOT_ALL_ASSIGNED
- //
- // MessageText:
- //
- // Not all privileges referenced are assigned to the caller.
- //
- #define ERROR_NOT_ALL_ASSIGNED 1300L
- //
- // MessageId: ERROR_SOME_NOT_MAPPED
- //
- // MessageText:
- //
- // Some mapping between account names and security IDs was not done.
- //
- #define ERROR_SOME_NOT_MAPPED 1301L
- //
- // MessageId: ERROR_NO_QUOTAS_FOR_ACCOUNT
- //
- // MessageText:
- //
- // No system quota limits are specifically set for this account.
- //
- #define ERROR_NO_QUOTAS_FOR_ACCOUNT 1302L
- //
- // MessageId: ERROR_LOCAL_USER_SESSION_KEY
- //
- // MessageText:
- //
- // No encryption key is available. A well-known encryption key was returned.
- //
- #define ERROR_LOCAL_USER_SESSION_KEY 1303L
- //
- // MessageId: ERROR_NULL_LM_PASSWORD
- //
- // MessageText:
- //
- // The password is too complex to be converted to a LAN Manager password. The LAN Manager password returned is a NULL string.
- //
- #define ERROR_NULL_LM_PASSWORD 1304L
- //
- // MessageId: ERROR_UNKNOWN_REVISION
- //
- // MessageText:
- //
- // The revision level is unknown.
- //
- #define ERROR_UNKNOWN_REVISION 1305L
- //
- // MessageId: ERROR_REVISION_MISMATCH
- //
- // MessageText:
- //
- // Indicates two revision levels are incompatible.
- //
- #define ERROR_REVISION_MISMATCH 1306L
- //
- // MessageId: ERROR_INVALID_OWNER
- //
- // MessageText:
- //
- // This security ID may not be assigned as the owner of this object.
- //
- #define ERROR_INVALID_OWNER 1307L
- //
- // MessageId: ERROR_INVALID_PRIMARY_GROUP
- //
- // MessageText:
- //
- // This security ID may not be assigned as the primary group of an object.
- //
- #define ERROR_INVALID_PRIMARY_GROUP 1308L
- //
- // MessageId: ERROR_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.
- //
- #define ERROR_NO_IMPERSONATION_TOKEN 1309L
- //
- // MessageId: ERROR_CANT_DISABLE_MANDATORY
- //
- // MessageText:
- //
- // The group may not be disabled.
- //
- #define ERROR_CANT_DISABLE_MANDATORY 1310L
- //
- // MessageId: ERROR_NO_LOGON_SERVERS
- //
- // MessageText:
- //
- // There are currently no logon servers available to service the logon request.
- //
- #define ERROR_NO_LOGON_SERVERS 1311L
- //
- // MessageId: ERROR_NO_SUCH_LOGON_SESSION
- //
- // MessageText:
- //
- // A specified logon session does not exist. It may already have been terminated.
- //
- #define ERROR_NO_SUCH_LOGON_SESSION 1312L
- //
- // MessageId: ERROR_NO_SUCH_PRIVILEGE
- //
- // MessageText:
- //
- // A specified privilege does not exist.
- //
- #define ERROR_NO_SUCH_PRIVILEGE 1313L
- //
- // MessageId: ERROR_PRIVILEGE_NOT_HELD
- //
- // MessageText:
- //
- // A required privilege is not held by the client.
- //
- #define ERROR_PRIVILEGE_NOT_HELD 1314L
- //
- // MessageId: ERROR_INVALID_ACCOUNT_NAME
- //
- // MessageText:
- //
- // The name provided is not a properly formed account name.
- //
- #define ERROR_INVALID_ACCOUNT_NAME 1315L
- //
- // MessageId: ERROR_USER_EXISTS
- //
- // MessageText:
- //
- // The specified user already exists.
- //
- #define ERROR_USER_EXISTS 1316L
- //
- // MessageId: ERROR_NO_SUCH_USER
- //
- // MessageText:
- //
- // The specified user does not exist.
- //
- #define ERROR_NO_SUCH_USER 1317L
- //
- // MessageId: ERROR_GROUP_EXISTS
- //
- // MessageText:
- //
- // The specified group already exists.
- //
- #define ERROR_GROUP_EXISTS 1318L
- //
- // MessageId: ERROR_NO_SUCH_GROUP
- //
- // MessageText:
- //
- // The specified group does not exist.
- //
- #define ERROR_NO_SUCH_GROUP 1319L
- //
- // MessageId: ERROR_MEMBER_IN_GROUP
- //
- // MessageText:
- //
- // Either the specified user account is already a member of the specified group, or the specified group cannot be deleted because it contains a member.
- //
- #define ERROR_MEMBER_IN_GROUP 1320L
- //
- // MessageId: ERROR_MEMBER_NOT_IN_GROUP
- //
- // MessageText:
- //
- // The specified user account is not a member of the specified group account.
- //
- #define ERROR_MEMBER_NOT_IN_GROUP 1321L
- //
- // MessageId: ERROR_LAST_ADMIN
- //
- // MessageText:
- //
- // The last remaining administration account cannot be disabled or deleted.
- //
- #define ERROR_LAST_ADMIN 1322L
- //
- // MessageId: ERROR_WRONG_PASSWORD
- //
- // MessageText:
- //
- // Unable to update the password. The value provided as the current password is incorrect.
- //
- #define ERROR_WRONG_PASSWORD 1323L
- //
- // MessageId: ERROR_ILL_FORMED_PASSWORD
- //
- // MessageText:
- //
- // Unable to update the password. The value provided for the new password contains values that are not allowed in passwords.
- //
- #define ERROR_ILL_FORMED_PASSWORD 1324L
- //
- // MessageId: ERROR_PASSWORD_RESTRICTION
- //
- // MessageText:
- //
- // Unable to update the password. The value provided for the new password does not meet the length, complexity, or history requirement of the domain.
- //
- #define ERROR_PASSWORD_RESTRICTION 1325L
- //
- // MessageId: ERROR_LOGON_FAILURE
- //
- // MessageText:
- //
- // Logon failure: unknown user name or bad password.
- //
- #define ERROR_LOGON_FAILURE 1326L
- //
- // MessageId: ERROR_ACCOUNT_RESTRICTION
- //
- // MessageText:
- //
- // Logon failure: user account restriction. Possible reasons are blank passwords not allowed, logon hour restrictions, or a policy restriction has been enforced.
- //
- #define ERROR_ACCOUNT_RESTRICTION 1327L
- //
- // MessageId: ERROR_INVALID_LOGON_HOURS
- //
- // MessageText:
- //
- // Logon failure: account logon time restriction violation.
- //
- #define ERROR_INVALID_LOGON_HOURS 1328L
- //
- // MessageId: ERROR_INVALID_WORKSTATION
- //
- // MessageText:
- //
- // Logon failure: user not allowed to log on to this computer.
- //
- #define ERROR_INVALID_WORKSTATION 1329L
- //
- // MessageId: ERROR_PASSWORD_EXPIRED
- //
- // MessageText:
- //
- // Logon failure: the specified account password has expired.
- //
- #define ERROR_PASSWORD_EXPIRED 1330L
- //
- // MessageId: ERROR_ACCOUNT_DISABLED
- //
- // MessageText:
- //
- // Logon failure: account currently disabled.
- //
- #define ERROR_ACCOUNT_DISABLED 1331L
- //
- // MessageId: ERROR_NONE_MAPPED
- //
- // MessageText:
- //
- // No mapping between account names and security IDs was done.
- //
- #define ERROR_NONE_MAPPED 1332L
- //
- // MessageId: ERROR_TOO_MANY_LUIDS_REQUESTED
- //
- // MessageText:
- //
- // Too many local user identifiers (LUIDs) were requested at one time.
- //
- #define ERROR_TOO_MANY_LUIDS_REQUESTED 1333L
- //
- // MessageId: ERROR_LUIDS_EXHAUSTED
- //
- // MessageText:
- //
- // No more local user identifiers (LUIDs) are available.
- //
- #define ERROR_LUIDS_EXHAUSTED 1334L
- //
- // MessageId: ERROR_INVALID_SUB_AUTHORITY
- //
- // MessageText:
- //
- // The subauthority part of a security ID is invalid for this particular use.
- //
- #define ERROR_INVALID_SUB_AUTHORITY 1335L
- //
- // MessageId: ERROR_INVALID_ACL
- //
- // MessageText:
- //
- // The access control list (ACL) structure is invalid.
- //
- #define ERROR_INVALID_ACL 1336L
- //
- // MessageId: ERROR_INVALID_SID
- //
- // MessageText:
- //
- // The security ID structure is invalid.
- //
- #define ERROR_INVALID_SID 1337L
- //
- // MessageId: ERROR_INVALID_SECURITY_DESCR
- //
- // MessageText:
- //
- // The security descriptor structure is invalid.
- //
- #define ERROR_INVALID_SECURITY_DESCR 1338L
- //
- // MessageId: ERROR_BAD_INHERITANCE_ACL
- //
- // MessageText:
- //
- // The inherited access control list (ACL) or access control entry (ACE) could not be built.
- //
- #define ERROR_BAD_INHERITANCE_ACL 1340L
- //
- // MessageId: ERROR_SERVER_DISABLED
- //
- // MessageText:
- //
- // The server is currently disabled.
- //
- #define ERROR_SERVER_DISABLED 1341L
- //
- // MessageId: ERROR_SERVER_NOT_DISABLED
- //
- // MessageText:
- //
- // The server is currently enabled.
- //
- #define ERROR_SERVER_NOT_DISABLED 1342L
- //
- // MessageId: ERROR_INVALID_ID_AUTHORITY
- //
- // MessageText:
- //
- // The value provided was an invalid value for an identifier authority.
- //
- #define ERROR_INVALID_ID_AUTHORITY 1343L
- //
- // MessageId: ERROR_ALLOTTED_SPACE_EXCEEDED
- //
- // MessageText:
- //
- // No more memory is available for security information updates.
- //
- #define ERROR_ALLOTTED_SPACE_EXCEEDED 1344L
- //
- // MessageId: ERROR_INVALID_GROUP_ATTRIBUTES
- //
- // MessageText:
- //
- // The specified attributes are invalid, or incompatible with the attributes for the group as a whole.
- //
- #define ERROR_INVALID_GROUP_ATTRIBUTES 1345L
- //
- // MessageId: ERROR_BAD_IMPERSONATION_LEVEL
- //
- // MessageText:
- //
- // Either a required impersonation level was not provided, or the provided impersonation level is invalid.
- //
- #define ERROR_BAD_IMPERSONATION_LEVEL 1346L
- //
- // MessageId: ERROR_CANT_OPEN_ANONYMOUS
- //
- // MessageText:
- //
- // Cannot open an anonymous level security token.
- //
- #define ERROR_CANT_OPEN_ANONYMOUS 1347L
- //
- // MessageId: ERROR_BAD_VALIDATION_CLASS
- //
- // MessageText:
- //
- // The validation information class requested was invalid.
- //
- #define ERROR_BAD_VALIDATION_CLASS 1348L
- //
- // MessageId: ERROR_BAD_TOKEN_TYPE
- //
- // MessageText:
- //
- // The type of the token is inappropriate for its attempted use.
- //
- #define ERROR_BAD_TOKEN_TYPE 1349L
- //
- // MessageId: ERROR_NO_SECURITY_ON_OBJECT
- //
- // MessageText:
- //
- // Unable to perform a security operation on an object that has no associated security.
- //
- #define ERROR_NO_SECURITY_ON_OBJECT 1350L
- //
- // MessageId: ERROR_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.
- //
- #define ERROR_CANT_ACCESS_DOMAIN_INFO 1351L
- //
- // MessageId: ERROR_INVALID_SERVER_STATE
- //
- // MessageText:
- //
- // The security account manager (SAM) or local security authority (LSA) server was in the wrong state to perform the security operation.
- //
- #define ERROR_INVALID_SERVER_STATE 1352L
- //
- // MessageId: ERROR_INVALID_DOMAIN_STATE
- //
- // MessageText:
- //
- // The domain was in the wrong state to perform the security operation.
- //
- #define ERROR_INVALID_DOMAIN_STATE 1353L
- //
- // MessageId: ERROR_INVALID_DOMAIN_ROLE
- //
- // MessageText:
- //
- // This operation is only allowed for the Primary Domain Controller of the domain.
- //
- #define ERROR_INVALID_DOMAIN_ROLE 1354L
- //
- // MessageId: ERROR_NO_SUCH_DOMAIN
- //
- // MessageText:
- //
- // The specified domain either does not exist or could not be contacted.
- //
- #define ERROR_NO_SUCH_DOMAIN 1355L
- //
- // MessageId: ERROR_DOMAIN_EXISTS
- //
- // MessageText:
- //
- // The specified domain already exists.
- //
- #define ERROR_DOMAIN_EXISTS 1356L
- //
- // MessageId: ERROR_DOMAIN_LIMIT_EXCEEDED
- //
- // MessageText:
- //
- // An attempt was made to exceed the limit on the number of domains per server.
- //
- #define ERROR_DOMAIN_LIMIT_EXCEEDED 1357L
- //
- // MessageId: ERROR_INTERNAL_DB_CORRUPTION
- //
- // MessageText:
- //
- // Unable to complete the requested operation because of either a catastrophic media failure or a data structure corruption on the disk.
- //
- #define ERROR_INTERNAL_DB_CORRUPTION 1358L
- //
- // MessageId: ERROR_INTERNAL_ERROR
- //
- // MessageText:
- //
- // An internal error occurred.
- //
- #define ERROR_INTERNAL_ERROR 1359L
- //
- // MessageId: ERROR_GENERIC_NOT_MAPPED
- //
- // MessageText:
- //
- // Generic access types were contained in an access mask which should already be mapped to nongeneric types.
- //
- #define ERROR_GENERIC_NOT_MAPPED 1360L
- //
- // MessageId: ERROR_BAD_DESCRIPTOR_FORMAT
- //
- // MessageText:
- //
- // A security descriptor is not in the right format (absolute or self-relative).
- //
- #define ERROR_BAD_DESCRIPTOR_FORMAT 1361L
- //
- // MessageId: ERROR_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.
- //
- #define ERROR_NOT_LOGON_PROCESS 1362L
- //
- // MessageId: ERROR_LOGON_SESSION_EXISTS
- //
- // MessageText:
- //
- // Cannot start a new logon session with an ID that is already in use.
- //
- #define ERROR_LOGON_SESSION_EXISTS 1363L
- //
- // MessageId: ERROR_NO_SUCH_PACKAGE
- //
- // MessageText:
- //
- // A specified authentication package is unknown.
- //
- #define ERROR_NO_SUCH_PACKAGE 1364L
- //
- // MessageId: ERROR_BAD_LOGON_SESSION_STATE
- //
- // MessageText:
- //
- // The logon session is not in a state that is consistent with the requested operation.
- //
- #define ERROR_BAD_LOGON_SESSION_STATE 1365L
- //
- // MessageId: ERROR_LOGON_SESSION_COLLISION
- //
- // MessageText:
- //
- // The logon session ID is already in use.
- //
- #define ERROR_LOGON_SESSION_COLLISION 1366L
- //
- // MessageId: ERROR_INVALID_LOGON_TYPE
- //
- // MessageText:
- //
- // A logon request contained an invalid logon type value.
- //
- #define ERROR_INVALID_LOGON_TYPE 1367L
- //
- // MessageId: ERROR_CANNOT_IMPERSONATE
- //
- // MessageText:
- //
- // Unable to impersonate using a named pipe until data has been read from that pipe.
- //
- #define ERROR_CANNOT_IMPERSONATE 1368L
- //
- // MessageId: ERROR_RXACT_INVALID_STATE
- //
- // MessageText:
- //
- // The transaction state of a registry subtree is incompatible with the requested operation.
- //
- #define ERROR_RXACT_INVALID_STATE 1369L
- //
- // MessageId: ERROR_RXACT_COMMIT_FAILURE
- //
- // MessageText:
- //
- // An internal security database corruption has been encountered.
- //
- #define ERROR_RXACT_COMMIT_FAILURE 1370L
- //
- // MessageId: ERROR_SPECIAL_ACCOUNT
- //
- // MessageText:
- //
- // Cannot perform this operation on built-in accounts.
- //
- #define ERROR_SPECIAL_ACCOUNT 1371L
- //
- // MessageId: ERROR_SPECIAL_GROUP
- //
- // MessageText:
- //
- // Cannot perform this operation on this built-in special group.
- //
- #define ERROR_SPECIAL_GROUP 1372L
- //
- // MessageId: ERROR_SPECIAL_USER
- //
- // MessageText:
- //
- // Cannot perform this operation on this built-in special user.
- //
- #define ERROR_SPECIAL_USER 1373L
- //
- // MessageId: ERROR_MEMBERS_PRIMARY_GROUP
- //
- // MessageText:
- //
- // The user cannot be removed from a group because the group is currently the user's primary group.
- //
- #define ERROR_MEMBERS_PRIMARY_GROUP 1374L
- //
- // MessageId: ERROR_TOKEN_ALREADY_IN_USE
- //
- // MessageText:
- //
- // The token is already in use as a primary token.
- //
- #define ERROR_TOKEN_ALREADY_IN_USE 1375L
- //
- // MessageId: ERROR_NO_SUCH_ALIAS
- //
- // MessageText:
- //
- // The specified local group does not exist.
- //
- #define ERROR_NO_SUCH_ALIAS 1376L
- //
- // MessageId: ERROR_MEMBER_NOT_IN_ALIAS
- //
- // MessageText:
- //
- // The specified account name is not a member of the local group.
- //
- #define ERROR_MEMBER_NOT_IN_ALIAS 1377L
- //
- // MessageId: ERROR_MEMBER_IN_ALIAS
- //
- // MessageText:
- //
- // The specified account name is already a member of the local group.
- //
- #define ERROR_MEMBER_IN_ALIAS 1378L
- //
- // MessageId: ERROR_ALIAS_EXISTS
- //
- // MessageText:
- //
- // The specified local group already exists.
- //
- #define ERROR_ALIAS_EXISTS 1379L
- //
- // MessageId: ERROR_LOGON_NOT_GRANTED
- //
- // MessageText:
- //
- // Logon failure: the user has not been granted the requested logon type at this computer.
- //
- #define ERROR_LOGON_NOT_GRANTED 1380L
- //
- // MessageId: ERROR_TOO_MANY_SECRETS
- //
- // MessageText:
- //
- // The maximum number of secrets that may be stored in a single system has been exceeded.
- //
- #define ERROR_TOO_MANY_SECRETS 1381L
- //
- // MessageId: ERROR_SECRET_TOO_LONG
- //
- // MessageText:
- //
- // The length of a secret exceeds the maximum length allowed.
- //
- #define ERROR_SECRET_TOO_LONG 1382L
- //
- // MessageId: ERROR_INTERNAL_DB_ERROR
- //
- // MessageText:
- //
- // The local security authority database contains an internal inconsistency.
- //
- #define ERROR_INTERNAL_DB_ERROR 1383L
- //
- // MessageId: ERROR_TOO_MANY_CONTEXT_IDS
- //
- // MessageText:
- //
- // During a logon attempt, the user's security context accumulated too many security IDs.
- //
- #define ERROR_TOO_MANY_CONTEXT_IDS 1384L
- //
- // MessageId: ERROR_LOGON_TYPE_NOT_GRANTED
- //
- // MessageText:
- //
- // Logon failure: the user has not been granted the requested logon type at this computer.
- //
- #define ERROR_LOGON_TYPE_NOT_GRANTED 1385L
- //
- // MessageId: ERROR_NT_CROSS_ENCRYPTION_REQUIRED
- //
- // MessageText:
- //
- // A cross-encrypted password is necessary to change a user password.
- //
- #define ERROR_NT_CROSS_ENCRYPTION_REQUIRED 1386L
- //
- // MessageId: ERROR_NO_SUCH_MEMBER
- //
- // MessageText:
- //
- // A member could not be added to or removed from the local group because the member does not exist.
- //
- #define ERROR_NO_SUCH_MEMBER 1387L
- //
- // MessageId: ERROR_INVALID_MEMBER
- //
- // MessageText:
- //
- // A new member could not be added to a local group because the member has the wrong account type.
- //
- #define ERROR_INVALID_MEMBER 1388L
- //
- // MessageId: ERROR_TOO_MANY_SIDS
- //
- // MessageText:
- //
- // Too many security IDs have been specified.
- //
- #define ERROR_TOO_MANY_SIDS 1389L
- //
- // MessageId: ERROR_LM_CROSS_ENCRYPTION_REQUIRED
- //
- // MessageText:
- //
- // A cross-encrypted password is necessary to change this user password.
- //
- #define ERROR_LM_CROSS_ENCRYPTION_REQUIRED 1390L
- //
- // MessageId: ERROR_NO_INHERITANCE
- //
- // MessageText:
- //
- // Indicates an ACL contains no inheritable components.
- //
- #define ERROR_NO_INHERITANCE 1391L
- //
- // MessageId: ERROR_FILE_CORRUPT
- //
- // MessageText:
- //
- // The file or directory is corrupted and unreadable.
- //
- #define ERROR_FILE_CORRUPT 1392L
- //
- // MessageId: ERROR_DISK_CORRUPT
- //
- // MessageText:
- //
- // The disk structure is corrupted and unreadable.
- //
- #define ERROR_DISK_CORRUPT 1393L
- //
- // MessageId: ERROR_NO_USER_SESSION_KEY
- //
- // MessageText:
- //
- // There is no user session key for the specified logon session.
- //
- #define ERROR_NO_USER_SESSION_KEY 1394L
- //
- // MessageId: ERROR_LICENSE_QUOTA_EXCEEDED
- //
- // MessageText:
- //
- // The service being accessed is licensed for a particular number of connections.
- // No more connections can be made to the service at this time because there are already as many connections as the service can accept.
- //
- #define ERROR_LICENSE_QUOTA_EXCEEDED 1395L
- //
- // MessageId: ERROR_WRONG_TARGET_NAME
- //
- // MessageText:
- //
- // Logon Failure: The target account name is incorrect.
- //
- #define ERROR_WRONG_TARGET_NAME 1396L
- //
- // MessageId: ERROR_MUTUAL_AUTH_FAILED
- //
- // MessageText:
- //
- // Mutual Authentication failed. The server's password is out of date at the domain controller.
- //
- #define ERROR_MUTUAL_AUTH_FAILED 1397L
- //
- // MessageId: ERROR_TIME_SKEW
- //
- // MessageText:
- //
- // There is a time and/or date difference between the client and server.
- //
- #define ERROR_TIME_SKEW 1398L
- //
- // MessageId: ERROR_CURRENT_DOMAIN_NOT_ALLOWED
- //
- // MessageText:
- //
- // This operation can not be performed on the current domain.
- //
- #define ERROR_CURRENT_DOMAIN_NOT_ALLOWED 1399L
- // End of security error codes
- ///////////////////////////
- // //
- // WinUser Error Codes //
- // //
- ///////////////////////////
- //
- // MessageId: ERROR_INVALID_WINDOW_HANDLE
- //
- // MessageText:
- //
- // Invalid window handle.
- //
- #define ERROR_INVALID_WINDOW_HANDLE 1400L
- //
- // MessageId: ERROR_INVALID_MENU_HANDLE
- //
- // MessageText:
- //
- // Invalid menu handle.
- //
- #define ERROR_INVALID_MENU_HANDLE 1401L
- //
- // MessageId: ERROR_INVALID_CURSOR_HANDLE
- //
- // MessageText:
- //
- // Invalid cursor handle.
- //
- #define ERROR_INVALID_CURSOR_HANDLE 1402L
- //
- // MessageId: ERROR_INVALID_ACCEL_HANDLE
- //
- // MessageText:
- //
- // Invalid accelerator table handle.
- //
- #define ERROR_INVALID_ACCEL_HANDLE 1403L
- //
- // MessageId: ERROR_INVALID_HOOK_HANDLE
- //
- // MessageText:
- //
- // Invalid hook handle.
- //
- #define ERROR_INVALID_HOOK_HANDLE 1404L
- //
- // MessageId: ERROR_INVALID_DWP_HANDLE
- //
- // MessageText:
- //
- // Invalid handle to a multiple-window position structure.
- //
- #define ERROR_INVALID_DWP_HANDLE 1405L
- //
- // MessageId: ERROR_TLW_WITH_WSCHILD
- //
- // MessageText:
- //
- // Cannot create a top-level child window.
- //
- #define ERROR_TLW_WITH_WSCHILD 1406L
- //
- // MessageId: ERROR_CANNOT_FIND_WND_CLASS
- //
- // MessageText:
- //
- // Cannot find window class.
- //
- #define ERROR_CANNOT_FIND_WND_CLASS 1407L
- //
- // MessageId: ERROR_WINDOW_OF_OTHER_THREAD
- //
- // MessageText:
- //
- // Invalid window; it belongs to other thread.
- //
- #define ERROR_WINDOW_OF_OTHER_THREAD 1408L
- //
- // MessageId: ERROR_HOTKEY_ALREADY_REGISTERED
- //
- // MessageText:
- //
- // Hot key is already registered.
- //
- #define ERROR_HOTKEY_ALREADY_REGISTERED 1409L
- //
- // MessageId: ERROR_CLASS_ALREADY_EXISTS
- //
- // MessageText:
- //
- // Class already exists.
- //
- #define ERROR_CLASS_ALREADY_EXISTS 1410L
- //
- // MessageId: ERROR_CLASS_DOES_NOT_EXIST
- //
- // MessageText:
- //
- // Class does not exist.
- //
- #define ERROR_CLASS_DOES_NOT_EXIST 1411L
- //
- // MessageId: ERROR_CLASS_HAS_WINDOWS
- //
- // MessageText:
- //
- // Class still has open windows.
- //
- #define ERROR_CLASS_HAS_WINDOWS 1412L
- //
- // MessageId: ERROR_INVALID_INDEX
- //
- // MessageText:
- //
- // Invalid index.
- //
- #define ERROR_INVALID_INDEX 1413L
- //
- // MessageId: ERROR_INVALID_ICON_HANDLE
- //
- // MessageText:
- //
- // Invalid icon handle.
- //
- #define ERROR_INVALID_ICON_HANDLE 1414L
- //
- // MessageId: ERROR_PRIVATE_DIALOG_INDEX
- //
- // MessageText:
- //
- // Using private DIALOG window words.
- //
- #define ERROR_PRIVATE_DIALOG_INDEX 1415L
- //
- // MessageId: ERROR_LISTBOX_ID_NOT_FOUND
- //
- // MessageText:
- //
- // The list box identifier was not found.
- //
- #define ERROR_LISTBOX_ID_NOT_FOUND 1416L
- //
- // MessageId: ERROR_NO_WILDCARD_CHARACTERS
- //
- // MessageText:
- //
- // No wildcards were found.
- //
- #define ERROR_NO_WILDCARD_CHARACTERS 1417L
- //
- // MessageId: ERROR_CLIPBOARD_NOT_OPEN
- //
- // MessageText:
- //
- // Thread does not have a clipboard open.
- //
- #define ERROR_CLIPBOARD_NOT_OPEN 1418L
- //
- // MessageId: ERROR_HOTKEY_NOT_REGISTERED
- //
- // MessageText:
- //
- // Hot key is not registered.
- //
- #define ERROR_HOTKEY_NOT_REGISTERED 1419L
- //
- // MessageId: ERROR_WINDOW_NOT_DIALOG
- //
- // MessageText:
- //
- // The window is not a valid dialog window.
- //
- #define ERROR_WINDOW_NOT_DIALOG 1420L
- //
- // MessageId: ERROR_CONTROL_ID_NOT_FOUND
- //
- // MessageText:
- //
- // Control ID not found.
- //
- #define ERROR_CONTROL_ID_NOT_FOUND 1421L
- //
- // MessageId: ERROR_INVALID_COMBOBOX_MESSAGE
- //
- // MessageText:
- //
- // Invalid message for a combo box because it does not have an edit control.
- //
- #define ERROR_INVALID_COMBOBOX_MESSAGE 1422L
- //
- // MessageId: ERROR_WINDOW_NOT_COMBOBOX
- //
- // MessageText:
- //
- // The window is not a combo box.
- //
- #define ERROR_WINDOW_NOT_COMBOBOX 1423L
- //
- // MessageId: ERROR_INVALID_EDIT_HEIGHT
- //
- // MessageText:
- //
- // Height must be less than 256.
- //
- #define ERROR_INVALID_EDIT_HEIGHT 1424L
- //
- // MessageId: ERROR_DC_NOT_FOUND
- //
- // MessageText:
- //
- // Invalid device context (DC) handle.
- //
- #define ERROR_DC_NOT_FOUND 1425L
- //
- // MessageId: ERROR_INVALID_HOOK_FILTER
- //
- // MessageText:
- //
- // Invalid hook procedure type.
- //
- #define ERROR_INVALID_HOOK_FILTER 1426L
- //
- // MessageId: ERROR_INVALID_FILTER_PROC
- //
- // MessageText:
- //
- // Invalid hook procedure.
- //
- #define ERROR_INVALID_FILTER_PROC 1427L
- //
- // MessageId: ERROR_HOOK_NEEDS_HMOD
- //
- // MessageText:
- //
- // Cannot set nonlocal hook without a module handle.
- //
- #define ERROR_HOOK_NEEDS_HMOD 1428L
- //
- // MessageId: ERROR_GLOBAL_ONLY_HOOK
- //
- // MessageText:
- //
- // This hook procedure can only be set globally.
- //
- #define ERROR_GLOBAL_ONLY_HOOK 1429L
- //
- // MessageId: ERROR_JOURNAL_HOOK_SET
- //
- // MessageText:
- //
- // The journal hook procedure is already installed.
- //
- #define ERROR_JOURNAL_HOOK_SET 1430L
- //
- // MessageId: ERROR_HOOK_NOT_INSTALLED
- //
- // MessageText:
- //
- // The hook procedure is not installed.
- //
- #define ERROR_HOOK_NOT_INSTALLED 1431L
- //
- // MessageId: ERROR_INVALID_LB_MESSAGE
- //
- // MessageText:
- //
- // Invalid message for single-selection list box.
- //
- #define ERROR_INVALID_LB_MESSAGE 1432L
- //
- // MessageId: ERROR_SETCOUNT_ON_BAD_LB
- //
- // MessageText:
- //
- // LB_SETCOUNT sent to non-lazy list box.
- //
- #define ERROR_SETCOUNT_ON_BAD_LB 1433L
- //
- // MessageId: ERROR_LB_WITHOUT_TABSTOPS
- //
- // MessageText:
- //
- // This list box does not support tab stops.
- //
- #define ERROR_LB_WITHOUT_TABSTOPS 1434L
- //
- // MessageId: ERROR_DESTROY_OBJECT_OF_OTHER_THREAD
- //
- // MessageText:
- //
- // Cannot destroy object created by another thread.
- //
- #define ERROR_DESTROY_OBJECT_OF_OTHER_THREAD 1435L
- //
- // MessageId: ERROR_CHILD_WINDOW_MENU
- //
- // MessageText:
- //
- // Child windows cannot have menus.
- //
- #define ERROR_CHILD_WINDOW_MENU 1436L
- //
- // MessageId: ERROR_NO_SYSTEM_MENU
- //
- // MessageText:
- //
- // The window does not have a system menu.
- //
- #define ERROR_NO_SYSTEM_MENU 1437L
- //
- // MessageId: ERROR_INVALID_MSGBOX_STYLE
- //
- // MessageText:
- //
- // Invalid message box style.
- //
- #define ERROR_INVALID_MSGBOX_STYLE 1438L
- //
- // MessageId: ERROR_INVALID_SPI_VALUE
- //
- // MessageText:
- //
- // Invalid system-wide (SPI_*) parameter.
- //
- #define ERROR_INVALID_SPI_VALUE 1439L
- //
- // MessageId: ERROR_SCREEN_ALREADY_LOCKED
- //
- // MessageText:
- //
- // Screen already locked.
- //
- #define ERROR_SCREEN_ALREADY_LOCKED 1440L
- //
- // MessageId: ERROR_HWNDS_HAVE_DIFF_PARENT
- //
- // MessageText:
- //
- // All handles to windows in a multiple-window position structure must have the same parent.
- //
- #define ERROR_HWNDS_HAVE_DIFF_PARENT 1441L
- //
- // MessageId: ERROR_NOT_CHILD_WINDOW
- //
- // MessageText:
- //
- // The window is not a child window.
- //
- #define ERROR_NOT_CHILD_WINDOW 1442L
- //
- // MessageId: ERROR_INVALID_GW_COMMAND
- //
- // MessageText:
- //
- // Invalid GW_* command.
- //
- #define ERROR_INVALID_GW_COMMAND 1443L
- //
- // MessageId: ERROR_INVALID_THREAD_ID
- //
- // MessageText:
- //
- // Invalid thread identifier.
- //
- #define ERROR_INVALID_THREAD_ID 1444L
- //
- // MessageId: ERROR_NON_MDICHILD_WINDOW
- //
- // MessageText:
- //
- // Cannot process a message from a window that is not a multiple document interface (MDI) window.
- //
- #define ERROR_NON_MDICHILD_WINDOW 1445L
- //
- // MessageId: ERROR_POPUP_ALREADY_ACTIVE
- //
- // MessageText:
- //
- // Popup menu already active.
- //
- #define ERROR_POPUP_ALREADY_ACTIVE 1446L
- //
- // MessageId: ERROR_NO_SCROLLBARS
- //
- // MessageText:
- //
- // The window does not have scroll bars.
- //
- #define ERROR_NO_SCROLLBARS 1447L
- //
- // MessageId: ERROR_INVALID_SCROLLBAR_RANGE
- //
- // MessageText:
- //
- // Scroll bar range cannot be greater than MAXLONG.
- //
- #define ERROR_INVALID_SCROLLBAR_RANGE 1448L
- //
- // MessageId: ERROR_INVALID_SHOWWIN_COMMAND
- //
- // MessageText:
- //
- // Cannot show or remove the window in the way specified.
- //
- #define ERROR_INVALID_SHOWWIN_COMMAND 1449L
- //
- // MessageId: ERROR_NO_SYSTEM_RESOURCES
- //
- // MessageText:
- //
- // Insufficient system resources exist to complete the requested service.
- //
- #define ERROR_NO_SYSTEM_RESOURCES 1450L
- //
- // MessageId: ERROR_NONPAGED_SYSTEM_RESOURCES
- //
- // MessageText:
- //
- // Insufficient system resources exist to complete the requested service.
- //
- #define ERROR_NONPAGED_SYSTEM_RESOURCES 1451L
- //
- // MessageId: ERROR_PAGED_SYSTEM_RESOURCES
- //
- // MessageText:
- //
- // Insufficient system resources exist to complete the requested service.
- //
- #define ERROR_PAGED_SYSTEM_RESOURCES 1452L
- //
- // MessageId: ERROR_WORKING_SET_QUOTA
- //
- // MessageText:
- //
- // Insufficient quota to complete the requested service.
- //
- #define ERROR_WORKING_SET_QUOTA 1453L
- //
- // MessageId: ERROR_PAGEFILE_QUOTA
- //
- // MessageText:
- //
- // Insufficient quota to complete the requested service.
- //
- #define ERROR_PAGEFILE_QUOTA 1454L
- //
- // MessageId: ERROR_COMMITMENT_LIMIT
- //
- // MessageText:
- //
- // The paging file is too small for this operation to complete.
- //
- #define ERROR_COMMITMENT_LIMIT 1455L
- //
- // MessageId: ERROR_MENU_ITEM_NOT_FOUND
- //
- // MessageText:
- //
- // A menu item was not found.
- //
- #define ERROR_MENU_ITEM_NOT_FOUND 1456L
- //
- // MessageId: ERROR_INVALID_KEYBOARD_HANDLE
- //
- // MessageText:
- //
- // Invalid keyboard layout handle.
- //
- #define ERROR_INVALID_KEYBOARD_HANDLE 1457L
- //
- // MessageId: ERROR_HOOK_TYPE_NOT_ALLOWED
- //
- // MessageText:
- //
- // Hook type not allowed.
- //
- #define ERROR_HOOK_TYPE_NOT_ALLOWED 1458L
- //
- // MessageId: ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION
- //
- // MessageText:
- //
- // This operation requires an interactive window station.
- //
- #define ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION 1459L
- //
- // MessageId: ERROR_TIMEOUT
- //
- // MessageText:
- //
- // This operation returned because the timeout period expired.
- //
- #define ERROR_TIMEOUT 1460L
- //
- // MessageId: ERROR_INVALID_MONITOR_HANDLE
- //
- // MessageText:
- //
- // Invalid monitor handle.
- //
- #define ERROR_INVALID_MONITOR_HANDLE 1461L
- // End of WinUser error codes
- ///////////////////////////
- // //
- // Eventlog Status Codes //
- // //
- ///////////////////////////
- //
- // MessageId: ERROR_EVENTLOG_FILE_CORRUPT
- //
- // MessageText:
- //
- // The event log file is corrupted.
- //
- #define ERROR_EVENTLOG_FILE_CORRUPT 1500L
- //
- // MessageId: ERROR_EVENTLOG_CANT_START
- //
- // MessageText:
- //
- // No event log file could be opened, so the event logging service did not start.
- //
- #define ERROR_EVENTLOG_CANT_START 1501L
- //
- // MessageId: ERROR_LOG_FILE_FULL
- //
- // MessageText:
- //
- // The event log file is full.
- //
- #define ERROR_LOG_FILE_FULL 1502L
- //
- // MessageId: ERROR_EVENTLOG_FILE_CHANGED
- //
- // MessageText:
- //
- // The event log file has changed between read operations.
- //
- #define ERROR_EVENTLOG_FILE_CHANGED 1503L
- // End of eventlog error codes
- ///////////////////////////
- // //
- // MSI Error Codes //
- // //
- ///////////////////////////
- //
- // MessageId: ERROR_INSTALL_SERVICE_FAILURE
- //
- // MessageText:
- //
- // The Windows Installer Service could not be accessed. This can occur if you are running Windows in safe mode, or if the Windows Installer is not correctly installed. Contact your support personnel for assistance.
- //
- #define ERROR_INSTALL_SERVICE_FAILURE 1601L
- //
- // MessageId: ERROR_INSTALL_USEREXIT
- //
- // MessageText:
- //
- // User cancelled installation.
- //
- #define ERROR_INSTALL_USEREXIT 1602L
- //
- // MessageId: ERROR_INSTALL_FAILURE
- //
- // MessageText:
- //
- // Fatal error during installation.
- //
- #define ERROR_INSTALL_FAILURE 1603L
- //
- // MessageId: ERROR_INSTALL_SUSPEND
- //
- // MessageText:
- //
- // Installation suspended, incomplete.
- //
- #define ERROR_INSTALL_SUSPEND 1604L
- //
- // MessageId: ERROR_UNKNOWN_PRODUCT
- //
- // MessageText:
- //
- // This action is only valid for products that are currently installed.
- //
- #define ERROR_UNKNOWN_PRODUCT 1605L
- //
- // MessageId: ERROR_UNKNOWN_FEATURE
- //
- // MessageText:
- //
- // Feature ID not registered.
- //
- #define ERROR_UNKNOWN_FEATURE 1606L
- //
- // MessageId: ERROR_UNKNOWN_COMPONENT
- //
- // MessageText:
- //
- // Component ID not registered.
- //
- #define ERROR_UNKNOWN_COMPONENT 1607L
- //
- // MessageId: ERROR_UNKNOWN_PROPERTY
- //
- // MessageText:
- //
- // Unknown property.
- //
- #define ERROR_UNKNOWN_PROPERTY 1608L
- //
- // MessageId: ERROR_INVALID_HANDLE_STATE
- //
- // MessageText:
- //
- // Handle is in an invalid state.
- //
- #define ERROR_INVALID_HANDLE_STATE 1609L
- //
- // MessageId: ERROR_BAD_CONFIGURATION
- //
- // MessageText:
- //
- // The configuration data for this product is corrupt. Contact your support personnel.
- //
- #define ERROR_BAD_CONFIGURATION 1610L
- //