--- trunk/OpenPGPminidriver/CardSecureKeyInjection.c 2010/03/18 16:03:39 11 +++ trunk/OpenPGPminidriver/CardSecureKeyInjection.c 2010/03/31 08:58:46 12 @@ -126,6 +126,21 @@ return SCARD_E_UNSUPPORTED_FEATURE; } +/** This function is used to get the properties of a key.*/ +DWORD WINAPI CardGetKeyProperty( + __in PCARD_DATA pCardData, + __in CARD_KEY_HANDLE hKey, + __in LPCWSTR pwszProperty, + __out_bcount_part_opt(cbData, *pdwDataLen) PBYTE pbData, + __in DWORD cbData, + __out PDWORD pdwDataLen, + __in DWORD dwFlags + ) +{ + Trace(WINEVENT_LEVEL_VERBOSE, L"Enter"); + return SCARD_E_UNSUPPORTED_FEATURE; +} + /** This function is used to set the properties of a key.*/ DWORD WINAPI CardSetKeyProperty( __in PCARD_DATA pCardData,