将数据嵌入资源文件中

发布于 2024-11-09 05:32:28 字数 224 浏览 0 评论 0原文

由于某些脑损伤(无论是在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

能否归途做我良人 2024-11-16 05:32:28

不是您关于解决方法的帮助程序问题的答案,但 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文