Funzione CertSrvBackupClose (certbcli.h)
La funzione CertSrvBackupClose chiude il file aperto dalla funzione CertSrvBackupOpenFile .
Sintassi
HRESULT CERTBCLI_API CertSrvBackupClose(
[in] HCSBC hbc
);
Parametri
[in] hbc
Handle in un contesto di backup di Servizi certificati.
Valore restituito
Il valore restituito è un HRESULT. Un valore di S_OK indica l'esito positivo.
Commenti
Per ogni chiamata riuscita a CertSrvBackupOpenFile, deve essere presente una chiamata successiva a CertSrvBackupClose. Al termine del backup di un file, il file deve essere chiuso.
Esempio
FNCERTSRVBACKUPCLOSE* pfnClose;
char * szBackupCloseFunc = "CertSrvBackupClose";
HRESULT hr=0;
// Get the address for the desired function.
// hInst was set by calling LoadLibrary for Certadm.dll.
pfnClose = (FNCERTSRVBACKUPCLOSE*)GetProcAddress(hInst,
szBackupCloseFunc);
if ( NULL == pfnClose )
{
printf("Failed GetProcAddress - %s, error=%d\n",
szBackupCloseFunc,
GetLastError() );
exit(1); // Or other appropriate error action.
}
// Close the file.
// hCSBC represents an HCSBC used in
// an earlier call to CertSrvBackupOpenFile.
hr = pfnClose(hCSBC);
if (FAILED(hr))
{
printf("Failed pfnClose call [%x]\n", hr);
exit(1); // Or other appropriate error action.
}
Requisiti
Requisito | Valore |
---|---|
Client minimo supportato | Nessuno supportato |
Server minimo supportato | Windows Server 2003 [solo app desktop] |
Piattaforma di destinazione | Windows |
Intestazione | certbcli.h (includere Certsrv.h) |
Libreria | Certadm.lib |
DLL | Certadm.dll |
Vedi anche
Uso delle funzioni di backup e ripristino dei servizi certificati