CertStoreProvDeleteCRLCallback callback function
An application-defined callback function that is called by CertDeleteCRLFromStore before deleting the CRL from the store.
Syntax
BOOL WINAPI CertStoreProvDeleteCRLCallback( _In_ HCERTSTOREPROV hStoreProv, _In_ PCCRL_CONTEXT pCrlContext, _In_ DWORD dwFlags ); typedef void (*PFN_CERT_STORE_PROV_DELETE_CRL)();
Parameters
- hStoreProv [in]
-
Provider-specific value returned in CERT_STORE_PROV_INFO by CertDllOpenStoreProv.
- pCrlContext [in]
-
A pointer to the CRL context to be deleted.
- dwFlags [in]
-
Reserved for future use and is set to zero.
Return value
Returns TRUE if it is okay to delete from the store. Otherwise, returns FALSE.
Requirements
|
Minimum supported client |
Windows XP [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows Server 2003 [desktop apps only] |
|
Header |
|
See also