ClusterRegDeleteKey 函数是 Windows 集群编程中的一个函数,用于删除群集注册表中的一个注册表项及其子项。以下是该函数的一般形式:
LONG ClusterRegDeleteKey(
  HKEY   hKey,
  LPCWSTR lpSubKey
);

参数说明:
  •  hKey:父项的句柄,可以是 HKEY_LOCAL_MACHINE 或从 ClusterRegOpenKey 获得的句柄。

  •  lpSubKey:要删除的注册表路径,相对于 hKey。


函数返回一个 LONG 类型的错误代码。如果函数成功,返回值为 ERROR_SUCCESS。

示例代码:
#include <windows.h>
#include <ClusAPI.h>

int main() {
    HCLUSTER hCluster = OpenCluster(L"ClusterName");
    if (hCluster != NULL) {
        HKEY hKey = NULL;

        // 打开要删除的注册表项
        LONG result = ClusterRegOpenKey(
            hCluster,
            L"Software\\MyClusterApp",
            KEY_READ | KEY_WRITE,
            &hKey
        );

        if (result == ERROR_SUCCESS) {
            // 成功打开注册表项,可以进行删除操作
            ClusterRegDeleteKey(hKey, L"SubKeyToDelete");

            // 关闭注册表项
            ClusterRegCloseKey(hKey);
        }

        CloseCluster(hCluster);
    }

    return 0;
}

请注意,此函数用于在群集注册表中删除项,而不是在本地注册表中。如果在本地注册表中删除项,请使用 RegDeleteKey 函数。


转载请注明出处:http://www.zyzy.cn/article/detail/24416/Win32 API/Clusapi.h/ClusterRegDeleteKey