共用方式為


CertSrvBackupClose 函式 (certbcli.h)

CertSrvBackupClose 函式會關閉 CertSrvBackupOpenFile 函式所開啟的檔案。

語法

HRESULT CERTBCLI_API CertSrvBackupClose(
  [in] HCSBC hbc
);

參數

[in] hbc

憑證服務備份內容的句柄。

傳回值

傳回值為 HRESULT。 值S_OK表示成功。

備註

對於每個成功呼叫 CertSrvBackupOpenFile,應該後續呼叫 CertSrvBackupClose。 完成備份檔案時,必須關閉檔案。

範例

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.
}

規格需求

需求
最低支援的用戶端 都不支援
最低支援的伺服器 Windows Server 2003 [僅限傳統型應用程式]
目標平台 Windows
標頭 certbcli.h (包含 Certsrv.h)
程式庫 Certadm.lib
Dll Certadm.dll

另請參閱

CertSrvBackupOpenFile

CertSrvBackupRead

使用憑證服務備份和還原函式