Complete disaster-recovery snapshot: engine/game source, game data assets, VC6 toolchain + DX SDKs, build outputs, deployed game, and _UNUSED archive. Large binaries in Git LFS; text preserved byte-for-byte (core.autocrlf=false, no eol attributes). See RECOVERY.md for the one-clone rebuild procedure.
372 lines
8.2 KiB
C++
372 lines
8.2 KiB
C++
/*
|
|
scarderr.mc
|
|
|
|
Error message codes from the Smart Card Resource Manager
|
|
These messages must be reconciled with winerror.w
|
|
|
|
30-Jun-97 - DBarlow Created. */
|
|
#ifndef SCARD_S_SUCCESS
|
|
//
|
|
// =============================
|
|
// Facility SCARD Error Messages
|
|
// =============================
|
|
//
|
|
#define SCARD_S_SUCCESS NO_ERROR
|
|
//
|
|
// 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_SYSTEM 0x0
|
|
#define FACILITY_SCARD 0x10
|
|
|
|
|
|
//
|
|
// Define the severity codes
|
|
//
|
|
|
|
|
|
//
|
|
// MessageId: SCARD_F_INTERNAL_ERROR
|
|
//
|
|
// MessageText:
|
|
//
|
|
// An internal consistency check failed
|
|
//
|
|
#define SCARD_F_INTERNAL_ERROR ((DWORD)0x80100001L)
|
|
|
|
//
|
|
// MessageId: SCARD_E_CANCELLED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The action was cancelled by an SCardCancel request
|
|
//
|
|
#define SCARD_E_CANCELLED ((DWORD)0x80100002L)
|
|
|
|
//
|
|
// MessageId: SCARD_E_INVALID_HANDLE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The supplied handle was invalid
|
|
//
|
|
#define SCARD_E_INVALID_HANDLE ((DWORD)0x80100003L)
|
|
|
|
//
|
|
// MessageId: SCARD_E_INVALID_PARAMETER
|
|
//
|
|
// MessageText:
|
|
//
|
|
// One or more of the supplied parameters could not be properly interpreted
|
|
//
|
|
#define SCARD_E_INVALID_PARAMETER ((DWORD)0x80100004L)
|
|
|
|
//
|
|
// MessageId: SCARD_E_INVALID_TARGET
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Registry startup information is missing or invalid
|
|
//
|
|
#define SCARD_E_INVALID_TARGET ((DWORD)0x80100005L)
|
|
|
|
//
|
|
// MessageId: SCARD_E_NO_MEMORY
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Not enough memory available to complete this command
|
|
//
|
|
#define SCARD_E_NO_MEMORY ((DWORD)0x80100006L)
|
|
|
|
//
|
|
// MessageId: SCARD_F_WAITED_TOO_LONG
|
|
//
|
|
// MessageText:
|
|
//
|
|
// An internal consistency timer has expired
|
|
//
|
|
#define SCARD_F_WAITED_TOO_LONG ((DWORD)0x80100007L)
|
|
|
|
//
|
|
// MessageId: SCARD_E_INSUFFICIENT_BUFFER
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The data buffer to receive returned data is too small for the returned data
|
|
//
|
|
#define SCARD_E_INSUFFICIENT_BUFFER ((DWORD)0x80100008L)
|
|
|
|
//
|
|
// MessageId: SCARD_E_UNKNOWN_READER
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The specified reader name is not recognized
|
|
//
|
|
#define SCARD_E_UNKNOWN_READER ((DWORD)0x80100009L)
|
|
|
|
//
|
|
// MessageId: SCARD_E_TIMEOUT
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The user-specified timeout value has expired
|
|
//
|
|
#define SCARD_E_TIMEOUT ((DWORD)0x8010000AL)
|
|
|
|
//
|
|
// MessageId: SCARD_E_SHARING_VIOLATION
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The smart card cannot be accessed because of other connections outstanding
|
|
//
|
|
#define SCARD_E_SHARING_VIOLATION ((DWORD)0x8010000BL)
|
|
|
|
//
|
|
// MessageId: SCARD_E_NO_SMARTCARD
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The operation requires a Smart Card, but no Smart Card is currently in the device
|
|
//
|
|
#define SCARD_E_NO_SMARTCARD ((DWORD)0x8010000CL)
|
|
|
|
//
|
|
// MessageId: SCARD_E_UNKNOWN_CARD
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The specified smart card name is not recognized
|
|
//
|
|
#define SCARD_E_UNKNOWN_CARD ((DWORD)0x8010000DL)
|
|
|
|
//
|
|
// MessageId: SCARD_E_CANT_DISPOSE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The system could not dispose of the media in the requested manner
|
|
//
|
|
#define SCARD_E_CANT_DISPOSE ((DWORD)0x8010000EL)
|
|
|
|
//
|
|
// MessageId: SCARD_E_PROTO_MISMATCH
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The requested protocols are incompatible with the protocol currently in use with the smart card
|
|
//
|
|
#define SCARD_E_PROTO_MISMATCH ((DWORD)0x8010000FL)
|
|
|
|
//
|
|
// MessageId: SCARD_E_NOT_READY
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The reader or smart card is not ready to accept commands
|
|
//
|
|
#define SCARD_E_NOT_READY ((DWORD)0x80100010L)
|
|
|
|
//
|
|
// MessageId: SCARD_E_INVALID_VALUE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// One or more of the supplied parameters values could not be properly interpreted
|
|
//
|
|
#define SCARD_E_INVALID_VALUE ((DWORD)0x80100011L)
|
|
|
|
//
|
|
// MessageId: SCARD_E_SYSTEM_CANCELLED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The action was cancelled by the system, presumably to log off or shut down
|
|
//
|
|
#define SCARD_E_SYSTEM_CANCELLED ((DWORD)0x80100012L)
|
|
|
|
//
|
|
// MessageId: SCARD_F_COMM_ERROR
|
|
//
|
|
// MessageText:
|
|
//
|
|
// An internal communications error has been detected
|
|
//
|
|
#define SCARD_F_COMM_ERROR ((DWORD)0x80100013L)
|
|
|
|
//
|
|
// MessageId: SCARD_F_UNKNOWN_ERROR
|
|
//
|
|
// MessageText:
|
|
//
|
|
// An internal error has been detected, but the source is unknown
|
|
//
|
|
#define SCARD_F_UNKNOWN_ERROR ((DWORD)0x80100014L)
|
|
|
|
//
|
|
// MessageId: SCARD_E_INVALID_ATR
|
|
//
|
|
// MessageText:
|
|
//
|
|
// An ATR obtained from the registry is not a valid ATR string
|
|
//
|
|
#define SCARD_E_INVALID_ATR ((DWORD)0x80100015L)
|
|
|
|
//
|
|
// MessageId: SCARD_E_NOT_TRANSACTED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// An attempt was made to end a non-existent transaction
|
|
//
|
|
#define SCARD_E_NOT_TRANSACTED ((DWORD)0x80100016L)
|
|
|
|
//
|
|
// MessageId: SCARD_E_READER_UNAVAILABLE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The specified reader is not currently available for use
|
|
//
|
|
#define SCARD_E_READER_UNAVAILABLE ((DWORD)0x80100017L)
|
|
|
|
//
|
|
// MessageId: SCARD_P_SHUTDOWN
|
|
//
|
|
// MessageText:
|
|
//
|
|
// PRIVATE -- Internal flag to force server termination
|
|
//
|
|
#define SCARD_P_SHUTDOWN ((DWORD)0x80100018L)
|
|
|
|
//
|
|
// MessageId: SCARD_E_PCI_TOO_SMALL
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The PCI Receive buffer was too small
|
|
//
|
|
#define SCARD_E_PCI_TOO_SMALL ((DWORD)0x80100019L)
|
|
|
|
//
|
|
// MessageId: SCARD_E_READER_UNSUPPORTED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The reader driver does not meet minimal requirements for support
|
|
//
|
|
#define SCARD_E_READER_UNSUPPORTED ((DWORD)0x8010001AL)
|
|
|
|
//
|
|
// MessageId: SCARD_E_DUPLICATE_READER
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The reader driver did not produce a unique reader name
|
|
//
|
|
#define SCARD_E_DUPLICATE_READER ((DWORD)0x8010001BL)
|
|
|
|
//
|
|
// MessageId: SCARD_E_CARD_UNSUPPORTED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The smart card does not meet minimal requirements for support
|
|
//
|
|
#define SCARD_E_CARD_UNSUPPORTED ((DWORD)0x8010001CL)
|
|
|
|
//
|
|
// MessageId: SCARD_E_NO_SERVICE
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The Smart card resource manager is not running
|
|
//
|
|
#define SCARD_E_NO_SERVICE ((DWORD)0x8010001DL)
|
|
|
|
//
|
|
// MessageId: SCARD_E_SERVICE_STOPPED
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The Smart card resource manager has shut down
|
|
//
|
|
#define SCARD_E_SERVICE_STOPPED ((DWORD)0x8010001EL)
|
|
|
|
//
|
|
// These are resettable warning codes.
|
|
//
|
|
//
|
|
// MessageId: SCARD_W_UNSUPPORTED_CARD
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The reader cannot communicate with the smart card, due to ATR configuration conflicts
|
|
//
|
|
#define SCARD_W_UNSUPPORTED_CARD ((DWORD)0x80100065L)
|
|
|
|
//
|
|
// MessageId: SCARD_W_UNRESPONSIVE_CARD
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The smart card is not responding to a reset
|
|
//
|
|
#define SCARD_W_UNRESPONSIVE_CARD ((DWORD)0x80100066L)
|
|
|
|
//
|
|
// MessageId: SCARD_W_UNPOWERED_CARD
|
|
//
|
|
// MessageText:
|
|
//
|
|
// Power has been removed from the smart card, so that further communication is not possible
|
|
//
|
|
#define SCARD_W_UNPOWERED_CARD ((DWORD)0x80100067L)
|
|
|
|
//
|
|
// MessageId: SCARD_W_RESET_CARD
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The smart card has been reset, so any shared state information is invalid
|
|
//
|
|
#define SCARD_W_RESET_CARD ((DWORD)0x80100068L)
|
|
|
|
//
|
|
// MessageId: SCARD_W_REMOVED_CARD
|
|
//
|
|
// MessageText:
|
|
//
|
|
// The smart card has been removed, so that further communication is not possible
|
|
//
|
|
#define SCARD_W_REMOVED_CARD ((DWORD)0x80100069L)
|
|
|
|
#endif // SCARD_S_SUCCESS
|