Função CertSrvBackupEnd (certbcli.h)
A função CertSrvBackupEnd encerra uma sessão de backup dos Serviços de Certificados.
Sintaxe
HRESULT CERTBCLI_API CertSrvBackupEnd(
[in] HCSBC hbc
);
Parâmetros
[in] hbc
Um identificador para um contexto de backup dos Serviços de Certificados.
Retornar valor
O valor retornado é um HRESULT. Um valor de S_OK indica êxito.
Comentários
Após a conclusão de uma sessão de backup, a sessão precisa ser encerrada por meio de CertSrvBackupEnd. Para cada chamada bem-sucedida para CertSrvBackupPrepare, deve haver uma chamada para CertSrvBackupEnd.
Exemplos
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.
}
Requisitos
Requisito | Valor |
---|---|
Cliente mínimo com suporte | Nenhum compatível |
Servidor mínimo com suporte | Windows Server 2003 [somente aplicativos da área de trabalho] |
Plataforma de Destino | Windows |
Cabeçalho | certbcli.h (inclua Certsrv.h) |
Biblioteca | Certadm.lib |
DLL | Certadm.dll |
Confira também
Usando as funções de Backup e Restauração dos Serviços de Certificados