LONG ClusterRegDeleteValue(
HKEY hKey,
LPCWSTR lpValueName
);
参数说明:
- hKey:注册表项的句柄,可以是 HKEY_LOCAL_MACHINE 或从 ClusterRegOpenKey 获得的句柄。
- lpValueName:要删除的注册表项的值名称。
函数返回一个 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) {
// 成功打开注册表项,可以进行删除值操作
ClusterRegDeleteValue(hKey, L"ValueToDelete");
// 关闭注册表项
ClusterRegCloseKey(hKey);
}
CloseCluster(hCluster);
}
return 0;
}
请注意,此函数用于在群集注册表中删除值,而不是在本地注册表中。如果在本地注册表中删除值,请使用 RegDeleteValue 函数。
转载请注明出处:http://www.zyzy.cn/article/detail/24417/Win32 API/Clusapi.h/ClusterRegDeleteValue