如何确定“(默认)”一个键的值
我想知道如何使用 C++ 获取注册表项的默认值。 我已经尝试在 RegQueryValueEx()
函数的关键参数中发送 NULL
或空字符串。
尝试检查另一个密钥,结果是正确的。我只是无法获得默认值。 该函数返回 ""
而不是值。
I want to know how can I get the default value of a registry key using C++.
I already tried sending NULL
or an empty string in the key param in RegQueryValueEx()
function.
Tried to check another key and I get it right. I just can't get the default.
The function returns ""
instead of the value.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“关键参数”是什么意思?您应该将
NULL
或""
作为lpValueName
参数。如果这对您不起作用,那么这就是您的代码中的错误。发布您的代码,也许我们可以提供进一步的帮助。What do you mean by "key param?" You should be passing
NULL
or""
as thelpValueName
parameter. If that's not working for you then it's a bug in your code. Post your code and perhaps we can provide further assistance.