CertStoreProvWriteCRLCallback callback function
An application-defined callback function that is called by CertAddEncodedCRLToStore, CertAddCRLContextToStore and CertAddSerializedElementToStore before adding to the store. In addition to the encoded CRL, the added pCrlContext might also have properties.
Syntax
BOOL WINAPI CertStoreProvWriteCRLCallback( _In_ HCERTSTOREPROV hStoreProv, _In_ PCCRL_CONTEXT pCrlContext, _In_ DWORD dwFlags ); typedef void (*PFN_CERT_STORE_PROV_WRITE_CRL)();
Parameters
- hStoreProv [in]
-
Provider-specific value returned in CERT_STORE_PROV_INFO by CertDllOpenStoreProv.
- pCrlContext [in]
- dwFlags [in]
-
CERT_STORE_PROV_WRITE_ADD_FLAG is used to specify when this function is called by the following functions that add a CRL to the store:
Return value
Returns TRUE if it is okay to update the store.
Requirements
|
Minimum supported client |
Windows XP [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows Server 2003 [desktop apps only] |
|
Header |
|
See also
- Callback Functions
- CERT_STORE_PROV_INFO
- CertAddCRLContextToStore
- CertAddEncodedCRLToStore
- CertAddSerializedElementToStore
- CertDllOpenStoreProv