将 REG_BINARY 数据转换为 REG_TZI_FORMAT
我正在尝试从注册表中提取时区信息,以便可以执行时间转换。注册表数据类型是 REG_BINARY,它保存有关 REG_TZI_FORMAT 的信息 结构。密钥存储在: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows \CurrentVersion\Time Zones\(time_zone_name)
如何获取 REG_BINARY 信息以转换为 REG_TZI_FORMAT 结构? C++、Windows 7 32 位、VS 2008
I'm trying to pull time zone information out of the registry so I can perform a time conversion. The registry data type is REG_BINARY which holds information about a REG_TZI_FORMAT
structure. The key is stored at: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows \CurrentVersion\Time Zones\(time_zone_name)
How do I get the REG_BINARY information to convert to the REG_TZI_FORMAT structure? C++, Windows 7 32 bit, VS 2008
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用以下代码来完成此操作:
You can do this with the following code: