crypt32: Add stub for I_CryptGetAsn1Decoder.
This commit is contained in:
parent
84a54b5a1f
commit
0c4c1985b0
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue