将数据嵌入资源文件中
由于某些脑损伤(无论是在 Windows 中还是在我中),似乎没有 API 可以获取由 LoadResource 生成的 Windows 资源的大小。返回类型是 HANDLE,但它不是真正的句柄,GlobalSize 对其不起作用。
因此,如果没有 API,我需要以某种简单的格式嵌入我的 blob,以便 用它们的长度包裹它们。肯定有某个地方有一个实用程序 将文件重写为长度,后跟文件的内容,或一些 如此琐碎的编码。
Due to some brain damage, (either in windows or in me), there appears to be no API to get the size of a windows resource produced by LoadResource. The return type is HANDLE, but it's not a real handle, and GlobalSize does not work on it.
So absent the API, I need to embed my blobs in some simple format that will
wrap them with their length. Surely there must be a utility somewhere that
rewrites a file as a length, followed by the contents of the file, or some
such trivial encoding.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不是您关于解决方法的帮助程序问题的答案,但 API 并没有丢失。
当您调用 LoadResource,您传入了模块句柄和 HRSRC 句柄。
如果您调用 SizeOfResource 使用相同的参数,它返回资源的大小。
Not an answer to your question as to a helper for the work-around, but the API is not missing.
When you called LoadResource, you passed in the module handle and a HRSRC handle.
If you call SizeOfResource with the same arguments, it returns the size of the resource.