Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The CertStoreProvGetCRLProperty callback function retrieves a specified property of a CRL.
Syntax
BOOL WINAPI CertStoreProvGetCRLProperty(
_In_ HCERTSTOREPROV hStoreProv,
_In_ PCCRL_CONTEXT pCrlContext,
_In_ DWORD dwPropId,
_In_ DWORD dwFlags,
_Out_ void *pvData,
_Inout_ DWORD *pcbData
);
Parameters
-
hStoreProv [in]
-
HCERTSTOREPROV handle to a certificate store.
-
pCrlContext [in]
-
A pointer to a CRL_CONTEXT structure.
-
dwPropId [in]
-
Indicates a property identifier.
-
dwFlags [in]
-
Any needed flag values.
-
pvData [out]
-
A pointer to a buffer to contain the pointer to a CRL_CONTEXT structure to be returned by the function. May be set to NULL on a first call to the function to get the value of pcbData before allocating memory for the buffer.
-
pcbData [in, out]
-
A pointer to a DWORD indicating the length of the pvData buffer.
Return value
Returns TRUE if the function succeeds or FALSE if it fails.
Requirements
Requirement | Value |
---|---|
Minimum supported client |
Windows XP [desktop apps only] |
Minimum supported server |
Windows Server 2003 [desktop apps only] |
See also