Even more Windows 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 // // MessageText: // // Failure accessing install service. // #define ERROR_INSTALL_SERVICE 1601L // // MessageId: ERROR_INSTALL_USEREXIT // // MessageText: // // The user canceled the 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: // // Product code not registered. // #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: // // Configuration data corrupt. // #define ERROR_BAD_CONFIGURATION 1610L // // MessageId: ERROR_INDEX_ABSENT // // MessageText: // // Language not available. // #define ERROR_INDEX_ABSENT 1611L // // MessageId: ERROR_INSTALL_SOURCE_ABSENT // // MessageText: // // Install source unavailable. // #define ERROR_INSTALL_SOURCE_ABSENT 1612L // // MessageId: ERROR_BAD_DATABASE_VERSION // // MessageText: // // Database version unsupported. // #define ERROR_BAD_DATABASE_VERSION 1613L // // MessageId: ERROR_PRODUCT_UNINSTALLED // // MessageText: // // Product is uninstalled. // #define ERROR_PRODUCT_UNINSTALLED 1614L // // MessageId: ERROR_BAD_QUERY_SYNTAX // // MessageText: // // SQL query syntax invalid or unsupported. // #define ERROR_BAD_QUERY_SYNTAX 1615L // // MessageId: ERROR_INVALID_FIELD // // MessageText: // // Record field does not exist. // #define ERROR_INVALID_FIELD 1616L // End of MSI error codes /////////////////////////// // // // RPC Status Codes // // // /////////////////////////// // // MessageId: RPC_S_INVALID_STRING_BINDING // // MessageText: // // The string binding is invalid. // #define RPC_S_INVALID_STRING_BINDING 1700L // // MessageId: RPC_S_WRONG_KIND_OF_BINDING // // MessageText: // // The binding handle is not the correct type. // #define RPC_S_WRONG_KIND_OF_BINDING 1701L // // MessageId: RPC_S_INVALID_BINDING // // MessageText: // // The binding handle is invalid. // #define RPC_S_INVALID_BINDING 1702L // // MessageId: RPC_S_PROTSEQ_NOT_SUPPORTED // // MessageText: // // The RPC protocol sequence is not supported. // #define RPC_S_PROTSEQ_NOT_SUPPORTED 1703L // // MessageId: RPC_S_INVALID_RPC_PROTSEQ // // MessageText: // // The RPC protocol sequence is invalid. // #define RPC_S_INVALID_RPC_PROTSEQ 1704L // // MessageId: RPC_S_INVALID_STRING_UUID // // MessageText: // // The string universal unique identifier (UUID) is invalid. // #define RPC_S_INVALID_STRING_UUID 1705L // // MessageId: RPC_S_INVALID_ENDPOINT_FORMAT // // MessageText: // // The endpoint format is invalid. // #define RPC_S_INVALID_ENDPOINT_FORMAT 1706L // // MessageId: RPC_S_INVALID_NET_ADDR // // MessageText: // // The network address is invalid. // #define RPC_S_INVALID_NET_ADDR 1707L // // MessageId: RPC_S_NO_ENDPOINT_FOUND // // MessageText: // // No endpoint was found. // #define RPC_S_NO_ENDPOINT_FOUND 1708L // // MessageId: RPC_S_INVALID_TIMEOUT // // MessageText: // // The timeout value is invalid. // #define RPC_S_INVALID_TIMEOUT 1709L // // MessageId: RPC_S_OBJECT_NOT_FOUND // // MessageText: // // The object universal unique identifier (UUID) was not found. // #define RPC_S_OBJECT_NOT_FOUND 1710L // // MessageId: RPC_S_ALREADY_REGISTERED // // MessageText: // // The object universal unique identifier (UUID) has already been registered. // #define RPC_S_ALREADY_REGISTERED 1711L // // MessageId: RPC_S_TYPE_ALREADY_REGISTERED // // MessageText: // // The type universal unique identifier (UUID) has already been registered. // #define RPC_S_TYPE_ALREADY_REGISTERED 1712L // // MessageId: RPC_S_ALREADY_LISTENING // // MessageText: // // The RPC server is already listening. // #define RPC_S_ALREADY_LISTENING 1713L // // MessageId: RPC_S_NO_PROTSEQS_REGISTERED // // MessageText: // // No protocol sequences have been registered. // #define RPC_S_NO_PROTSEQS_REGISTERED 1714L // // MessageId: RPC_S_NOT_LISTENING // // MessageText: // // The RPC server is not listening. // #define RPC_S_NOT_LISTENING 1715L // // MessageId: RPC_S_UNKNOWN_MGR_TYPE // // MessageText: // // The manager type is unknown. // #define RPC_S_UNKNOWN_MGR_TYPE 1716L // // MessageId: RPC_S_UNKNOWN_IF // // MessageText: // // The interface is unknown. // #define RPC_S_UNKNOWN_IF 1717L // // MessageId: RPC_S_NO_BINDINGS // // MessageText: // // There are no bindings. // #define RPC_S_NO_BINDINGS 1718L // // MessageId: RPC_S_NO_PROTSEQS // // MessageText: // // There are no protocol sequences. // #define RPC_S_NO_PROTSEQS 1719L // // MessageId: RPC_S_CANT_CREATE_ENDPOINT // // MessageText: // // The endpoint cannot be created. // #define RPC_S_CANT_CREATE_ENDPOINT 1720L // // MessageId: RPC_S_OUT_OF_RESOURCES // // MessageText: // // Not enough resources are available to complete this operation. // #define RPC_S_OUT_OF_RESOURCES 1721L // // MessageId: RPC_S_SERVER_UNAVAILABLE // // MessageText: // // The RPC server is unavailable. // #define RPC_S_SERVER_UNAVAILABLE 1722L // // MessageId: RPC_S_SERVER_TOO_BUSY // // MessageText: // // The RPC server is too busy to complete this operation. // #define RPC_S_SERVER_TOO_BUSY 1723L // // MessageId: RPC_S_INVALID_NETWORK_OPTIONS // // MessageText: // // The network options are invalid. // #define RPC_S_INVALID_NETWORK_OPTIONS 1724L // // MessageId: RPC_S_NO_CALL_ACTIVE // // MessageText: // // There are no remote procedure calls active on this thread. // #define RPC_S_NO_CALL_ACTIVE 1725L // // MessageId: RPC_S_CALL_FAILED // // MessageText: // // The remote procedure call failed. // #define RPC_S_CALL_FAILED 1726L // // MessageId: RPC_S_CALL_FAILED_DNE // // MessageText: // // The remote procedure call failed and did not execute. // #define RPC_S_CALL_FAILED_DNE 1727L // // MessageId: RPC_S_PROTOCOL_ERROR // // MessageText: // // A remote procedure call (RPC) protocol error occurred. // #define RPC_S_PROTOCOL_ERROR 1728L // // MessageId: RPC_S_UNSUPPORTED_TRANS_SYN // // MessageText: // // The transfer syntax is not supported by the RPC server. // #define RPC_S_UNSUPPORTED_TRANS_SYN 1730L // // MessageId: RPC_S_UNSUPPORTED_TYPE // // MessageText: // // The universal unique identifier (UUID) type is not supported. // #define RPC_S_UNSUPPORTED_TYPE 1732L // // MessageId: RPC_S_INVALID_TAG // // MessageText: // // The tag is invalid. // #define RPC_S_INVALID_TAG 1733L // // MessageId: RPC_S_INVALID_BOUND // // MessageText: // // The array bounds are invalid. // #define RPC_S_INVALID_BOUND 1734L // // MessageId: RPC_S_NO_ENTRY_NAME // // MessageText: // // The binding does not contain an entry name. // #define RPC_S_NO_ENTRY_NAME 1735L // // MessageId: RPC_S_INVALID_NAME_SYNTAX // // MessageText: // // The name syntax is invalid. // #define RPC_S_INVALID_NAME_SYNTAX 1736L // // MessageId: RPC_S_UNSUPPORTED_NAME_SYNTAX // // MessageText: // // The name syntax is not supported. // #define RPC_S_UNSUPPORTED_NAME_SYNTAX 1737L // // MessageId: RPC_S_UUID_NO_ADDRESS // // MessageText: // // No network address is available to use to construct a universal // unique identifier (UUID). // #define RPC_S_UUID_NO_ADDRESS 1739L // // MessageId: RPC_S_DUPLICATE_ENDPOINT // // MessageText: // // The endpoint is a duplicate. // #define RPC_S_DUPLICATE_ENDPOINT 1740L // // MessageId: RPC_S_UNKNOWN_AUTHN_TYPE // // MessageText: // // The authentication type is unknown. // #define RPC_S_UNKNOWN_AUTHN_TYPE 1741L // // MessageId: RPC_S_MAX_CALLS_TOO_SMALL // // MessageText: // // The maximum number of calls is too small. // #define RPC_S_MAX_CALLS_TOO_SMALL 1742L // // MessageId: RPC_S_STRING_TOO_LONG // // MessageText: // // The string is too long. // #define RPC_S_STRING_TOO_LONG 1743L // // MessageId: RPC_S_PROTSEQ_NOT_FOUND // // MessageText: // // The RPC protocol sequence was not found. // #define RPC_S_PROTSEQ_NOT_FOUND 1744L // // MessageId: RPC_S_PROCNUM_OUT_OF_RANGE // // MessageText: // // The procedure number is out of range. // #define RPC_S_PROCNUM_OUT_OF_RANGE 1745L // // MessageId: RPC_S_BINDING_HAS_NO_AUTH // // MessageText: // // The binding does not contain any authentication information. // #define RPC_S_BINDING_HAS_NO_AUTH 1746L // // MessageId: RPC_S_UNKNOWN_AUTHN_SERVICE // // MessageText: // // The authentication service is unknown. // #define RPC_S_UNKNOWN_AUTHN_SERVICE 1747L // // MessageId: RPC_S_UNKNOWN_AUTHN_LEVEL // // MessageText: // // The authentication level is unknown. // #define RPC_S_UNKNOWN_AUTHN_LEVEL 1748L // // MessageId: RPC_S_INVALID_AUTH_IDENTITY // // MessageText: // // The security context is invalid. // #define RPC_S_INVALID_AUTH_IDENTITY 1749L // // MessageId: RPC_S_UNKNOWN_AUTHZ_SERVICE // // MessageText: // // The authorization service is unknown. // #define RPC_S_UNKNOWN_AUTHZ_SERVICE 1750L // // MessageId: EPT_S_INVALID_ENTRY // // MessageText: // // The entry is invalid. // #define EPT_S_INVALID_ENTRY 1751L // // MessageId: EPT_S_CANT_PERFORM_OP // // MessageText: // // The server endpoint cannot perform the operation. // #define EPT_S_CANT_PERFORM_OP 1752L // // MessageId: EPT_S_NOT_REGISTERED // // MessageText: // // There are no more endpoints available from the endpoint mapper. // #define EPT_S_NOT_REGISTERED 1753L // // MessageId: RPC_S_NOTHING_TO_EXPORT // // MessageText: // // No interfaces have been exported. // #define RPC_S_NOTHING_TO_EXPORT 1754L // // MessageId: RPC_S_INCOMPLETE_NAME // // MessageText: // // The entry name is incomplete. // #define RPC_S_INCOMPLETE_NAME 1755L // // MessageId: RPC_S_INVALID_VERS_OPTION // // MessageText: // // The version option is invalid. // #define RPC_S_INVALID_VERS_OPTION 1756L // // MessageId: RPC_S_NO_MORE_MEMBERS // // MessageText: // // There are no more members. // #define RPC_S_NO_MORE_MEMBERS 1757L // // MessageId: RPC_S_NOT_ALL_OBJS_UNEXPORTED // // MessageText: // // There is nothing to unexport. // #define RPC_S_NOT_ALL_OBJS_UNEXPORTED 1758L // // MessageId: RPC_S_INTERFACE_NOT_FOUND // // MessageText: // // The interface was not found. // #define RPC_S_INTERFACE_NOT_FOUND 1759L // // MessageId: RPC_S_ENTRY_ALREADY_EXISTS // // MessageText: // // The entry already exists. // #define RPC_S_ENTRY_ALREADY_EXISTS 1760L // // MessageId: RPC_S_ENTRY_NOT_FOUND // // MessageText: // // The entry is not found. // #define RPC_S_ENTRY_NOT_FOUND 1761L // // MessageId: RPC_S_NAME_SERVICE_UNAVAILABLE // // MessageText: // // The name service is unavailable. // #define RPC_S_NAME_SERVICE_UNAVAILABLE 1762L // // MessageId: RPC_S_INVALID_NAF_ID // // MessageText: // // The network address family is invalid. // #define RPC_S_INVALID_NAF_ID 1763L // // MessageId: RPC_S_CANNOT_SUPPORT // // MessageText: // // The requested operation is not supported. // #define RPC_S_CANNOT_SUPPORT 1764L // // MessageId: RPC_S_NO_CONTEXT_AVAILABLE // // MessageText: // // No security context is available to allow impersonation. // #define RPC_S_NO_CONTEXT_AVAILABLE 1765L // // MessageId: RPC_S_INTERNAL_ERROR // // MessageText: // // An internal error occurred in a remote procedure call (RPC). // #define RPC_S_INTERNAL_ERROR 1766L // // MessageId: RPC_S_ZERO_DIVIDE // // MessageText: // // The RPC server attempted an integer division by zero. // #define RPC_S_ZERO_DIVIDE 1767L // // MessageId: RPC_S_ADDRESS_ERROR // // MessageText: // // An addressing error occurred in the RPC server. // #define RPC_S_ADDRESS_ERROR 1768L // // MessageId: RPC_S_FP_DIV_ZERO // // MessageText: // // A floating-point operation at the RPC server caused a division by zero. // #define RPC_S_FP_DIV_ZERO 1769L // // MessageId: RPC_S_FP_UNDERFLOW // // MessageText: // // A floating-point underflow occurred at the RPC server. // #define RPC_S_FP_UNDERFLOW 1770L // // MessageId: RPC_S_FP_OVERFLOW // // MessageText: // // A floating-point overflow occurred at the RPC server. // #define RPC_S_FP_OVERFLOW 1771L // // MessageId: RPC_X_NO_MORE_ENTRIES // // MessageText: // // The list of RPC servers available for the binding of auto handles // has been exhausted. // #define RPC_X_NO_MORE_ENTRIES 1772L // // MessageId: RPC_X_SS_CHAR_TRANS_OPEN_FAIL // // MessageText: // // Unable to open the character translation table file. // #define RPC_X_SS_CHAR_TRANS_OPEN_FAIL 1773L // // MessageId: RPC_X_SS_CHAR_TRANS_SHORT_FILE // // MessageText: // // The file containing the character translation table has fewer than // 512 bytes. // #define RPC_X_SS_CHAR_TRANS_SHORT_FILE 1774L // // MessageId: RPC_X_SS_IN_NULL_CONTEXT // // MessageText: // // A null context handle was passed from the client to the host during // a remote procedure call. // #define RPC_X_SS_IN_NULL_CONTEXT 1775L // // MessageId: RPC_X_SS_CONTEXT_DAMAGED // // MessageText: // // The context handle changed during a remote procedure call. // #define RPC_X_SS_CONTEXT_DAMAGED 1777L // // MessageId: RPC_X_SS_HANDLES_MISMATCH // // MessageText: // // The binding handles passed to a remote procedure call do not match. // #define RPC_X_SS_HANDLES_MISMATCH 1778L // // MessageId: RPC_X_SS_CANNOT_GET_CALL_HANDLE // // MessageText: // // The stub is unable to get the remote procedure call handle. // #define RPC_X_SS_CANNOT_GET_CALL_HANDLE 1779L // // MessageId: RPC_X_NULL_REF_POINTER // // MessageText: // // A null reference pointer was passed to the stub. // #define RPC_X_NULL_REF_POINTER 1780L // // MessageId: RPC_X_ENUM_VALUE_OUT_OF_RANGE // // MessageText: // // The enumeration value is out of range. // #define RPC_X_ENUM_VALUE_OUT_OF_RANGE 1781L // // MessageId: RPC_X_BYTE_COUNT_TOO_SMALL // // MessageText: // // The byte count is too small. // #define RPC_X_BYTE_COUNT_TOO_SMALL 1782L // // MessageId: RPC_X_BAD_STUB_DATA // // MessageText: // // The stub received bad data. // #define RPC_X_BAD_STUB_DATA 1783L // // MessageId: ERROR_INVALID_USER_BUFFER // // MessageText: // // The supplied user buffer is not valid for the requested operation. // #define ERROR_INVALID_USER_BUFFER 1784L // // MessageId: ERROR_UNRECOGNIZED_MEDIA // // MessageText: // // The disk media is not recognized. It may not be formatted. // #define ERROR_UNRECOGNIZED_MEDIA 1785L // // MessageId: ERROR_NO_TRUST_LSA_SECRET // // MessageText: // // The workstation does not have a trust secret. // #define ERROR_NO_TRUST_LSA_SECRET 1786L // // MessageId: ERROR_NO_TRUST_SAM_ACCOUNT // // MessageText: // // The SAM database on the Windows NT Server does not have a computer // account for this workstation trust relationship. // #define ERROR_NO_TRUST_SAM_ACCOUNT 1787L // // MessageId: ERROR_TRUSTED_DOMAIN_FAILURE // // MessageText: // // The trust relationship between the primary domain and the trusted // domain failed. // #define ERROR_TRUSTED_DOMAIN_FAILURE 1788L // // MessageId: ERROR_TRUSTED_RELATIONSHIP_FAILURE // // MessageText: // // The trust relationship between this workstation and the primary // domain failed. // #define ERROR_TRUSTED_RELATIONSHIP_FAILURE 1789L // // MessageId: ERROR_TRUST_FAILURE // // MessageText: // // The network logon failed. // #define ERROR_TRUST_FAILURE 1790L // // MessageId: RPC_S_CALL_IN_PROGRESS // // MessageText: // // A remote procedure call is already in progress for this thread. // #define RPC_S_CALL_IN_PROGRESS 1791L // // MessageId: ERROR_NETLOGON_NOT_STARTED // // MessageText: // // An attempt was made to logon, but the network logon service was not started. // #define ERROR_NETLOGON_NOT_STARTED 1792L // // MessageId: ERROR_ACCOUNT_EXPIRED // // MessageText: // // The user's account has expired. // #define ERROR_ACCOUNT_EXPIRED 1793L // // MessageId: ERROR_REDIRECTOR_HAS_OPEN_HANDLES // // MessageText: // // The redirector is in use and cannot be unloaded. // #define ERROR_REDIRECTOR_HAS_OPEN_HANDLES 1794L // // MessageId: ERROR_PRINTER_DRIVER_ALREADY_INSTALLED // // MessageText: // // The specified printer driver is already installed. // #define ERROR_PRINTER_DRIVER_ALREADY_INSTALLED 1795L // // MessageId: ERROR_UNKNOWN_PORT // // MessageText: // // The specified port is unknown. // #define ERROR_UNKNOWN_PORT 1796L // // MessageId: ERROR_UNKNOWN_PRINTER_DRIVER // // MessageText: // // The printer driver is unknown. // #define ERROR_UNKNOWN_PRINTER_DRIVER 1797L // // MessageId: ERROR_UNKNOWN_PRINTPROCESSOR // // MessageText: // // The print processor is unknown. // #define ERROR_UNKNOWN_PRINTPROCESSOR 1798L // // MessageId: ERROR_INVALID_SEPARATOR_FILE // // MessageText: // // The specified separator file is invalid. // #define ERROR_INVALID_SEPARATOR_FILE 1799L // // MessageId: ERROR_INVALID_PRIORITY // // MessageText: // // The specified priority is invalid. // #define ERROR_INVALID_PRIORITY 1800L // // MessageId: ERROR_INVALID_PRINTER_NAME // // MessageText: // // The printer name is invalid. // #define ERROR_INVALID_PRINTER_NAME 1801L // // MessageId: ERROR_PRINTER_ALREADY_EXISTS // // MessageText: // // The printer already exists. // #define ERROR_PRINTER_ALREADY_EXISTS 1802L // // MessageId: ERROR_INVALID_PRINTER_COMMAND // // MessageText: // // The printer command is invalid. // #define ERROR_INVALID_PRINTER_COMMAND 1803L // // MessageId: ERROR_INVALID_DATATYPE // // MessageText: // // The specified datatype is invalid. // #define ERROR_INVALID_DATATYPE 1804L // // MessageId: ERROR_INVALID_ENVIRONMENT // // MessageText: // // The environment specified is invalid. // #define ERROR_INVALID_ENVIRONMENT 1805L // // MessageId: RPC_S_NO_MORE_BINDINGS // // MessageText: // // There are no more bindings. // #define RPC_S_NO_MORE_BINDINGS 1806L // // MessageId: ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT // // MessageText: // // The account used is an interdomain trust account. Use your global user account or local user account to access this server. // #define ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT 1807L // // MessageId: ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT // // MessageText: // // The account used is a computer account. Use your global user account or local user account to access this server. // #define ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT 1808L // // MessageId: ERROR_NOLOGON_SERVER_TRUST_ACCOUNT // // MessageText: // // The account used is a server trust account. Use your global user account or local user account to access this server. // #define ERROR_NOLOGON_SERVER_TRUST_ACCOUNT 1809L // // MessageId: ERROR_DOMAIN_TRUST_INCONSISTENT // // MessageText: // // The name or security ID (SID) of the domain specified is inconsistent // with the trust information for that domain. // #define ERROR_DOMAIN_TRUST_INCONSISTENT 1810L // // MessageId: ERROR_SERVER_HAS_OPEN_HANDLES // // MessageText: // // The server is in use and cannot be unloaded. // #define ERROR_SERVER_HAS_OPEN_HANDLES 1811L // // MessageId: ERROR_RESOURCE_DATA_NOT_FOUND // // MessageText: // // The specified image file did not contain a resource section. // #define ERROR_RESOURCE_DATA_NOT_FOUND 1812L // // MessageId: ERROR_RESOURCE_TYPE_NOT_FOUND // // MessageText: // // The specified resource type cannot be found in the image file. // #define ERROR_RESOURCE_TYPE_NOT_FOUND 1813L // // MessageId: ERROR_RESOURCE_NAME_NOT_FOUND // // MessageText: // // The specified resource name cannot be found in the image file. // #define ERROR_RESOURCE_NAME_NOT_FOUND 1814L // // MessageId: ERROR_RESOURCE_LANG_NOT_FOUND // // MessageText: // // The specified resource language ID cannot be found in the image file. // #define ERROR_RESOURCE_LANG_NOT_FOUND 1815L // // MessageId: ERROR_NOT_ENOUGH_QUOTA // // MessageText: // // Not enough quota is available to process this command. // #define ERROR_NOT_ENOUGH_QUOTA 1816L // // MessageId: RPC_S_NO_INTERFACES // // MessageText: // // No interfaces have been registered. // #define RPC_S_NO_INTERFACES 1817L // // MessageId: RPC_S_CALL_CANCELLED // // MessageText: // // The remote procedure call was cancelled. // #define RPC_S_CALL_CANCELLED 1818L // // MessageId: RPC_S_BINDING_INCOMPLETE // // MessageText: // // The binding handle does not contain all required information. // #define RPC_S_BINDING_INCOMPLETE 1819L // // MessageId: RPC_S_COMM_FAILURE // // MessageText: // // A communications failure occurred during a remote procedure call. // #define RPC_S_COMM_FAILURE 1820L // // MessageId: RPC_S_UNSUPPORTED_AUTHN_LEVEL // // MessageText: // // The requested authentication level is not supported. // #define RPC_S_UNSUPPORTED_AUTHN_LEVEL 1821L // // MessageId: RPC_S_NO_PRINC_NAME // // MessageText: // // No principal name registered. // #define RPC_S_NO_PRINC_NAME 1822L // // MessageId: RPC_S_NOT_RPC_ERROR // // MessageText: // // The error specified is not a valid Windows RPC error code. // #define RPC_S_NOT_RPC_ERROR 1823L // // MessageId: RPC_S_UUID_LOCAL_ONLY // // MessageText: // // A UUID that is valid only on this computer has been allocated. // #define RPC_S_UUID_LOCAL_ONLY 1824L // // MessageId: RPC_S_SEC_PKG_ERROR // // MessageText: // // A security package specific error occurred. // #define RPC_S_SEC_PKG_ERROR 1825L // // MessageId: RPC_S_NOT_CANCELLED // // MessageText: // // Thread is not canceled. // #define RPC_S_NOT_CANCELLED 1826L // // MessageId: RPC_X_INVALID_ES_ACTION // // MessageText: // // Invalid operation on the encoding/decoding handle. // #define RPC_X_INVALID_ES_ACTION 1827L // // MessageId: RPC_X_WRONG_ES_VERSION // // MessageText: // // Incompatible version of the serializing package. // #define RPC_X_WRONG_ES_VERSION 1828L // // MessageId: RPC_X_WRONG_STUB_VERSION // // MessageText: // // Incompatible version of the RPC stub. // #define RPC_X_WRONG_STUB_VERSION 1829L // // MessageId: RPC_X_INVALID_PIPE_OBJECT // // MessageText: // // The RPC pipe object is invalid or corrupted. // #define RPC_X_INVALID_PIPE_OBJECT 1830L // // MessageId: RPC_X_WRONG_PIPE_ORDER // // MessageText: // // An invalid operation was attempted on an RPC pipe object. // #define RPC_X_WRONG_PIPE_ORDER 1831L // // MessageId: RPC_X_WRONG_PIPE_VERSION // // MessageText: // // Unsupported RPC pipe version. // #define RPC_X_WRONG_PIPE_VERSION 1832L // // MessageId: RPC_S_GROUP_MEMBER_NOT_FOUND // // MessageText: // // The group member was not found. // #define RPC_S_GROUP_MEMBER_NOT_FOUND 1898L // // MessageId: EPT_S_CANT_CREATE // // MessageText: // // The endpoint mapper database entry could not be created. // #define EPT_S_CANT_CREATE 1899L // // MessageId: RPC_S_INVALID_OBJECT // // MessageText: // // The object universal unique identifier (UUID) is the nil UUID. // #define RPC_S_INVALID_OBJECT 1900L // // MessageId: ERROR_INVALID_TIME // // MessageText: // // The specified time is invalid. // #define ERROR_INVALID_TIME 1901L // // MessageId: ERROR_INVALID_FORM_NAME // // MessageText: // // The specified form name is invalid. // #define ERROR_INVALID_FORM_NAME 1902L // // MessageId: ERROR_INVALID_FORM_SIZE // // MessageText: // // The specified form size is invalid. // #define ERROR_INVALID_FORM_SIZE 1903L // // MessageId: ERROR_ALREADY_WAITING // // MessageText: // // The specified printer handle is already being waited on // #define ERROR_ALREADY_WAITING 1904L // // MessageId: ERROR_PRINTER_DELETED // // MessageText: // // The specified printer has been deleted. // #define ERROR_PRINTER_DELETED 1905L // // MessageId: ERROR_INVALID_PRINTER_STATE // // MessageText: // // The state of the printer is invalid. // #define ERROR_INVALID_PRINTER_STATE 1906L // // MessageId: ERROR_PASSWORD_MUST_CHANGE // // MessageText: // // The user must change his password before he logs on the first time. // #define ERROR_PASSWORD_MUST_CHANGE 1907L // // MessageId: ERROR_DOMAIN_CONTROLLER_NOT_FOUND // // MessageText: // // Could not find the domain controller for this domain. // #define ERROR_DOMAIN_CONTROLLER_NOT_FOUND 1908L // // MessageId: ERROR_ACCOUNT_LOCKED_OUT // // MessageText: // // The referenced account is currently locked out and may not be logged on to. // #define ERROR_ACCOUNT_LOCKED_OUT 1909L // // MessageId: OR_INVALID_OXID // // MessageText: // // The object exporter specified was not found. // #define OR_INVALID_OXID 1910L // // MessageId: OR_INVALID_OID // // MessageText: // // The object specified was not found. // #define OR_INVALID_OID 1911L // // MessageId: OR_INVALID_SET // // MessageText: // // The object resolver set specified was not found. // #define OR_INVALID_SET 1912L // // MessageId: RPC_S_SEND_INCOMPLETE // // MessageText: // // Some data remains to be sent in the request buffer. // #define RPC_S_SEND_INCOMPLETE 1913L // // MessageId: RPC_S_INVALID_ASYNC_HANDLE // // MessageText: // // Invalid asynchronous remote procedure call handle. // #define RPC_S_INVALID_ASYNC_HANDLE 1914L // // MessageId: RPC_S_INVALID_ASYNC_CALL // // MessageText: // // Invalid asynchronous RPC call handle for this operation. // #define RPC_S_INVALID_ASYNC_CALL 1915L // // MessageId: RPC_X_PIPE_CLOSED // // MessageText: // // The RPC pipe object has already been closed. // #define RPC_X_PIPE_CLOSED 1916L // // MessageId: RPC_X_PIPE_DISCIPLINE_ERROR // // MessageText: // // The RPC call completed before all pipes were processed. // #define RPC_X_PIPE_DISCIPLINE_ERROR 1917L // // MessageId: RPC_X_PIPE_EMPTY // // MessageText: // // No more data is available from the RPC pipe. // #define RPC_X_PIPE_EMPTY 1918L // // MessageId: ERROR_NO_SITENAME // // MessageText: // // No site name is available for this machine. // #define ERROR_NO_SITENAME 1919L // // MessageId: ERROR_CANT_ACCESS_FILE // // MessageText: // // The file can not be accessed by the system. // #define ERROR_CANT_ACCESS_FILE 1920L // // MessageId: ERROR_CANT_RESOLVE_FILENAME // // MessageText: // // The name of the file cannot be resolved by the system. // #define ERROR_CANT_RESOLVE_FILENAME 1921L // // MessageId: ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY // // MessageText: // // The directory service evaluated group memberships locally. // #define ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY 1922L // // MessageId: ERROR_DS_NO_ATTRIBUTE_OR_VALUE // // MessageText: // // The specified directory service attribute or value does not exist. // #define ERROR_DS_NO_ATTRIBUTE_OR_VALUE 1923L // // MessageId: ERROR_DS_INVALID_ATTRIBUTE_SYNTAX // // MessageText: // // The attribute syntax specified to the directory service is invalid. // #define ERROR_DS_INVALID_ATTRIBUTE_SYNTAX 1924L // // MessageId: ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED // // MessageText: // // The attribute type specified to the directory service is not defined. // #define ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED 1925L // // MessageId: ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS // // MessageText: // // The specified directory service attribute or value already exists. // #define ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS 1926L // // MessageId: ERROR_DS_BUSY // // MessageText: // // The directory service is busy. // #define ERROR_DS_BUSY 1927L // // MessageId: ERROR_DS_UNAVAILABLE // // MessageText: // // The directory service is unavailable. // #define ERROR_DS_UNAVAILABLE 1928L // // MessageId: ERROR_DS_NO_RIDS_ALLOCATED // // MessageText: // // The directory service was unable to allocate a relative identifier. // #define ERROR_DS_NO_RIDS_ALLOCATED 1929L // // MessageId: ERROR_DS_NO_MORE_RIDS // // MessageText: // // The directory service has exhausted the pool of relative identifiers. // #define ERROR_DS_NO_MORE_RIDS 1930L // // MessageId: ERROR_DS_INCORRECT_ROLE_OWNER // // MessageText: // // The requested operation could not be performed because the directory service is not the // master for that type of operation. // #define ERROR_DS_INCORRECT_ROLE_OWNER 1931L // // MessageId: ERROR_DS_RIDMGR_INIT_ERROR // // MessageText: // // The directory service was unable to initialize the subsystem that allocates relative identifiers. // #define ERROR_DS_RIDMGR_INIT_ERROR 1932L // // MessageId: ERROR_DS_OBJ_CLASS_VIOLATION // // MessageText: // // The requested operation did not satisfy one or more constraints associated with the class of the object. // #define ERROR_DS_OBJ_CLASS_VIOLATION 1933L // // MessageId: ERROR_DS_CANT_ON_NON_LEAF // // MessageText: // // The directory service can perform the requested operation only on a leaf object. // #define ERROR_DS_CANT_ON_NON_LEAF 1934L // // MessageId: ERROR_DS_CANT_ON_RDN // // MessageText: // // The directory service cannot perform the requested operation on the RDN attribute of an object. // #define ERROR_DS_CANT_ON_RDN 1935L // // MessageId: ERROR_DS_CANT_MOD_OBJ_CLASS // // MessageText: // // The directory service detected an attempt to modify the object class of an object. // #define ERROR_DS_CANT_MOD_OBJ_CLASS 1936L // // MessageId: ERROR_DS_CROSS_DOM_MOVE_ERROR // // MessageText: // // The requested cross domain move operation could not be performed. // #define ERROR_DS_CROSS_DOM_MOVE_ERROR 1937L // // MessageId: ERROR_DS_GC_NOT_AVAILABLE // // MessageText: // // Unable to contact the global catalog server. // #define ERROR_DS_GC_NOT_AVAILABLE 1938L // // MessageId: ERROR_NO_BROWSER_SERVERS_FOUND // // MessageText: // // The list of servers for this workgroup is not currently available // #define ERROR_NO_BROWSER_SERVERS_FOUND 6118L