Group: Cryptography Reference - Library: crypt32
BOOL WINAPI CertCloseStore(
HCERTSTORE hCertStore,
DWORD dwFlags
); DECLARE INTEGER CertCloseStore IN crypt32;
INTEGER hCertStore,;
LONG dwFlags hCertStore [in] Handle of the certificate store to be closed.
dwFlags [in] Typically, this parameter uses the default value zero.
If the function succeeds, the return value is TRUE.
There needs to be a corresponding call to CertCloseStore for each successful call to the CertOpenSystemStore, CertOpenStore or CertDuplicateStore functions.
Home