crypt32: Add stub for CertAddCertificateLinkToStore.
This commit is contained in:
parent
f554669286
commit
9364d7a928
|
@ -71,6 +71,15 @@ BOOL WINAPI CertAddEncodedCertificateToStore(HCERTSTORE hCertStore,
|
|||
return ret;
|
||||
}
|
||||
|
||||
BOOL WINAPI CertAddCertificateLinkToStore(HCERTSTORE hCertStore,
|
||||
PCCERT_CONTEXT pCertContext, DWORD dwAddDisposition,
|
||||
PCCERT_CONTEXT *ppCertContext)
|
||||
{
|
||||
FIXME("(%p, %p, %08x, %p)\n", hCertStore, pCertContext, dwAddDisposition,
|
||||
ppCertContext);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
PCCERT_CONTEXT WINAPI CertCreateCertificateContext(DWORD dwCertEncodingType,
|
||||
const BYTE *pbCertEncoded, DWORD cbCertEncoded)
|
||||
{
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
@ stdcall CertAddCRLContextToStore(ptr ptr long ptr)
|
||||
@ stdcall CertAddCTLContextToStore(ptr ptr long ptr)
|
||||
@ stdcall CertAddCertificateContextToStore(ptr ptr long ptr)
|
||||
@ stdcall CertAddCertificateLinkToStore(ptr ptr long ptr)
|
||||
@ stdcall CertAddEncodedCRLToStore(ptr long ptr long long ptr)
|
||||
@ stdcall CertAddEncodedCTLToStore(ptr long ptr long long ptr)
|
||||
@ stdcall CertAddEncodedCertificateToStore(ptr long ptr long long ptr)
|
||||
|
|
Loading…
Reference in New Issue