Commit 0c4c1985 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

crypt32: Add stub for I_CryptGetAsn1Decoder.

parent 84a54b5a
......@@ -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)
......
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment