CertStoreProvGetCTLProperty callback function
The CertStoreProvGetCTLProperty callback function retrieves a specified property of a certificate trust list (CTL).
Syntax
BOOL WINAPI CertStoreProvGetCTLProperty(
_In_ HCERTSTOREPROV hStoreProv,
_In_ PCCTL_CONTEXT pCtlContext,
_In_ DWORD dwPropId,
_In_ DWORD dwFlags,
_Out_ void *pvData,
_Inout_ DWORD *pcbData
);
Parameters
-
hStoreProv [in]
-
A HCERTSTOREPROV handle to a certificate store.
-
pCtlContext [in]
-
A pointer to a CTL_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 CTL_CONTEXT structure to be returned by the function. To get the value of pcbData before allocating memory for the buffer, this parameter can be set to NULL on a first call to the function.
-
pcbData [in, out]
-
A pointer to a DWORD that indicates the length of the pvData buffer.
Return value
If the function succeeds, the function returns nonzero.
If the function fails, it returns zero.
Requirements
Requirement | Value |
---|---|
Minimum supported client |
Windows XP [desktop apps only] |
Minimum supported server |
Windows Server 2003 [desktop apps only] |
See also