crypt32: Implement CertDuplicateCTLContext.
This commit is contained in:
parent
0ada2b93f9
commit
3eb62ad60b
|
@ -156,6 +156,13 @@ end:
|
|||
return (PCCTL_CONTEXT)ctl;
|
||||
}
|
||||
|
||||
PCCTL_CONTEXT WINAPI CertDuplicateCTLContext(PCCTL_CONTEXT pCtlContext)
|
||||
{
|
||||
TRACE("(%p)\n", pCtlContext);
|
||||
Context_AddRef((void *)pCtlContext, sizeof(CTL_CONTEXT));
|
||||
return pCtlContext;
|
||||
}
|
||||
|
||||
static void CTLDataContext_Free(void *context)
|
||||
{
|
||||
PCTL_CONTEXT ctlContext = (PCTL_CONTEXT)context;
|
||||
|
|
|
@ -1062,12 +1062,6 @@ BOOL WINAPI CertAddCTLContextToStore(HCERTSTORE hCertStore,
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
PCCTL_CONTEXT WINAPI CertDuplicateCTLContext(PCCTL_CONTEXT pCtlContext)
|
||||
{
|
||||
FIXME("(%p): stub\n", pCtlContext );
|
||||
return pCtlContext;
|
||||
}
|
||||
|
||||
BOOL WINAPI CertDeleteCTLFromStore(PCCTL_CONTEXT pCtlContext)
|
||||
{
|
||||
FIXME("(%p): stub\n", pCtlContext);
|
||||
|
|
Loading…
Reference in New Issue