CertSrvBackupEnd 函数 (certbcli.h)
CertSrvBackupEnd 函数结束证书服务备份会话。
语法
HRESULT CERTBCLI_API CertSrvBackupEnd(
[in] HCSBC hbc
);
参数
[in] hbc
证书服务备份上下文的句柄。
返回值
返回值为 HRESULT。 值为 S_OK 表示成功。
注解
备份会话完成后,需要通过 CertSrvBackupEnd 终止会话。 每次成功调用 CertSrvBackupPrepare 时,都应调用 CertSrvBackupEnd。
示例
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.
}
要求
要求 | 值 |
---|---|
最低受支持的客户端 | 无受支持的版本 |
最低受支持的服务器 | Windows Server 2003 [仅限桌面应用] |
目标平台 | Windows |
标头 | certbcli.h (包括 Certsrv.h) |
Library | Certadm.lib |
DLL | Certadm.dll |