crypt32: Add stub for I_CryptGetAsn1Decoder.

oldstable
Juan Lang 2007-08-09 13:20:00 -07:00 committed by Alexandre Julliard
parent 84a54b5a1f
commit 0c4c1985b0
2 changed files with 7 additions and 0 deletions

View File

@ -196,6 +196,7 @@
@ stdcall I_CryptFlushLruCache(ptr long long)
@ stdcall I_CryptFreeLruCache(ptr long long)
@ stdcall I_CryptFreeTls(long long)
@ stdcall I_CryptGetAsn1Decoder(long)
@ stdcall I_CryptGetDefaultCryptProv(long)
@ stub I_CryptGetDefaultCryptProvForEncrypt
@ stdcall I_CryptGetOssGlobal(long)

View File

@ -206,6 +206,12 @@ BOOL WINAPI I_CryptUninstallAsn1Module(void *x)
return TRUE;
}
void *WINAPI I_CryptGetAsn1Decoder(long x)
{
FIXME("%08lx\n", x);
return NULL;
}
BOOL WINAPI CryptFormatObject(DWORD dwCertEncodingType, DWORD dwFormatType,
DWORD dwFormatStrType, void *pFormatStruct, LPCSTR lpszStructType,
const BYTE *pbEncoded, DWORD cbEncoded, void *pbFormat, DWORD *pcbFormat)