共用方式為


ClusterRegOpenKey 函式 (clusapi.h)

開啟現有的 叢集資料庫 金鑰。

語法

LONG ClusterRegOpenKey(
  [in]  HKEY    hKey,
  [in]  LPCWSTR lpszSubKey,
  [in]  REGSAM  samDesired,
  [out] PHKEY   phkResult
);

參數

[in] hKey

目前開啟金鑰的句柄。 此參數不可為 NULL

[in] lpszSubKey

Null 終止 Unicode 字串的指標,指定要建立或開啟之子機碼的名稱。 lpszSubKey 參數必須指向下列子機碼:

  • 這是 hKey 所識別金鑰的子金鑰。
  • 不得以反斜杠字元開頭 ( \ ) 。
  • 不得為 NULL
lpszSubKey 參數可以指向空字串,導致 ClusterRegCreateKey 傳回 hKey 所代表之資料庫密鑰的句柄。

[in] samDesired

存取遮罩,指定新金鑰所需的安全性存取。

[out] phkResult

開啟或建立之索引鍵句柄的指標。

傳回值

如果作業成功,函式會傳回 ERROR_SUCCESS

如果作業失敗,函式會傳回 系統錯誤碼

備註

呼叫端應該呼叫 ClusterRegCloseKey ,以關閉 ClusterRegOpenKey 完成時所開啟的金鑰句柄。

規格需求

需求
最低支援的用戶端 都不支援
最低支援的伺服器 Windows Server 2008 Enterprise、Windows Server 2008 Datacenter
目標平台 Windows
標頭 clusapi.h
程式庫 ClusAPI.lib
Dll ClusAPI.dll

另請參閱

ClusterRegCloseKey

ClusterRegCreateKey