PFN_CERT_STORE_PROV_WRITE_CRL funzione di callback (wincrypt.h)

Funzione di callback definita dall'applicazione chiamata da CertAddEncodedCRLToStore, CertAddCRLContextToStore e CertAddSerializedElementToStore prima di aggiungere all'archivio. Oltre alla CRL codificata, la proprietà pCrlContext aggiunta potrebbe avere anche proprietà.

Sintassi

PFN_CERT_STORE_PROV_WRITE_CRL PfnCertStoreProvWriteCrl;

BOOL PfnCertStoreProvWriteCrl(
  [in] HCERTSTOREPROV hStoreProv,
  [in] PCCRL_CONTEXT pCrlContext,
  [in] DWORD dwFlags
)
{...}

Parametri

[in] hStoreProv

Valore specifico del provider restituito in CERT_STORE_PROV_INFO da CertDllOpenStoreProv.

[in] pCrlContext

Vedere CertAddCRLContextToStore.

[in] dwFlags

CERT_STORE_PROV_WRITE_ADD_FLAG viene usato per specificare quando questa funzione viene chiamata dalle funzioni seguenti che aggiungono un CRL all'archivio:

CertAddEncodedCRLToStore

CertAddCRLContextToStore

CertAddSerializedElementToStore

Valore restituito

Restituisce TRUE se è corretto aggiornare l'archivio.

Requisiti

   
Client minimo supportato Windows XP [solo app desktop]
Server minimo supportato Windows Server 2003 [solo app desktop]
Piattaforma di destinazione Windows
Intestazione wincrypt.h

Vedi anche

CERT_STORE_PROV_INFO

Funzioni di callback

CertAddCRLContextToStore

CertAddEncodedCRLToStore

CertAddSerializedElementToStore

CertDllOpenStoreProv