如何在 COM RGS 文件中指定二进制数据
在注册 COM 对象期间,我通过将一些自定义数据添加到 rgs 文件来将其添加到注册表中。
添加 DWORD 值(由下面的 = d '3' 指定)将按预期输入到注册表中。
然而,对于二进制/十六进制数据,它无法正确输入注册表。 谁能建议在 rgs 文件中输入二进制数据的正确语法是什么?
HKLM
{
NoRemove SOFTWARE
{
NoRemove MyCompany
{
NoRemove Settings
{
val 'MyTestDword' = d '3'
val 'MyTestBinaryData' = b '00 01 04'
}
}
}
}
I'm adding some custom data data to the registry during the registration of a COM object by adding it to the rgs file.
Adding a DWORD value (specified by = d '3' below) gets entered into the registry as expected.
For the binary/hex data however it does not get entered into the registry correctly.
Can anyone advise what the correct syntax is for entering binary data in a rgs file?
HKLM
{
NoRemove SOFTWARE
{
NoRemove MyCompany
{
NoRemove Settings
{
val 'MyTestDword' = d '3'
val 'MyTestBinaryData' = b '00 01 04'
}
}
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正确的语法是不在十六进制值之间使用空格
The correct syntax was not to use spaces between the hex values