Fonction CertSrvBackupEnd (certbcli.h)
La fonction CertSrvBackupEnd met fin à une session de sauvegarde des services de certificats.
Syntaxe
HRESULT CERTBCLI_API CertSrvBackupEnd(
[in] HCSBC hbc
);
Paramètres
[in] hbc
Handle dans un contexte de sauvegarde des services de certificats.
Valeur retournée
La valeur de retour est HRESULT. Une valeur de S_OK indique la réussite.
Remarques
À la fin d’une session de sauvegarde, la session doit être arrêtée au moyen de CertSrvBackupEnd. Pour chaque appel réussi à CertSrvBackupPrepare, il doit y avoir un appel à CertSrvBackupEnd.
Exemples
FNCERTSRVBACKUPEND* pfnBackupEnd;
char * szBackEndFunc = "CertSrvBackupEnd";
HRESULT hr=0;
// Get the address for the desired function.
// hInst was set by calling LoadLibrary for Certadm.dll.
pfnBackupEnd = (FNCERTSRVBACKUPEND*)GetProcAddress(hInst,
szBackEndFunc);
if (NULL == pfnBackupEnd)
{
printf("Failed GetProcAddress - %s, error=%d\n",
szBackEndFunc,
GetLastError() );
exit(1); // Or other appropriate error action.
}
// When done, release the HCSBC.
// hCSBC would have been created by an earlier call
// to CertSrvBackupPrepare.
hr = pfnBackupEnd(hCSBC);
if (FAILED(hr))
{
printf("Failed pfnBackupEnd call [%x]\n", hr);
exit(1); // Or other appropriate error action.
}
Configuration requise
Condition requise | Valeur |
---|---|
Client minimal pris en charge | Aucun pris en charge |
Serveur minimal pris en charge | Windows Server 2003 [applications de bureau uniquement] |
Plateforme cible | Windows |
En-tête | certbcli.h (include Certsrv.h) |
Bibliothèque | Certadm.lib |
DLL | Certadm.dll |
Voir aussi
Utilisation des fonctions de sauvegarde et de restauration des services de certificat