From 0455a5665e6ea17cb8c255df9585a6c210597ac1 Mon Sep 17 00:00:00 2001 From: Jakub Jelen Date: Mon, 24 Feb 2020 18:14:34 +0100 Subject: [PATCH] winscard: Add missing constant define --- src/libopensc/internal-winscard.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libopensc/internal-winscard.h b/src/libopensc/internal-winscard.h index 6b2a21c5..00c004e0 100644 --- a/src/libopensc/internal-winscard.h +++ b/src/libopensc/internal-winscard.h @@ -93,6 +93,7 @@ typedef unsigned __int8 uint8_t; #define SCARD_S_SUCCESS 0x00000000 /**< No error was encountered. */ #define SCARD_E_CANCELLED 0x80100002 /**< The action was cancelled by an SCardCancel request. */ #define SCARD_E_INVALID_HANDLE 0x80100003 /**< The supplied handle was invalid. */ +#define SCARD_E_UNKNOWN_READER 0x80100009 /**< The specified reader name is not recognized. */ #define SCARD_E_TIMEOUT 0x8010000A /**< The user-specified timeout value has expired. */ #define SCARD_E_SHARING_VIOLATION 0x8010000B /**< The smart card cannot be accessed because of other connections outstanding. */ #define SCARD_E_NO_SMARTCARD 0x8010000C /**< The operation requires a smart card, but no smart card is currently in the device. */