c++从 .rc 获取版本到代码中
可能的重复:
如何在 Visual 中读取版本资源C++
在我的 c++ 项目中,我添加了一个 .rc 文件,我可以在其中存储文件版本、可执行描述、版权等。
没问题,我编译,我转到资源管理器 ->文件属性,我看到表单中的所有字段。
我的问题是:如果我需要从项目中读取自己的文件版本(例如显示到表单中),我该怎么做?
谢谢
Possible Duplicate:
How do I read from a version resource in Visual C++
in my c++ project i've added a .rc file where I can store the file version, the executable description, copyright, etc..
and is ok, I compile, i go to the explorer -> file property and I see all the fields in the form.
My question is: if I need to read from the project the own file version ( to show into a form for example), how can I do this?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Windows 提供了一组用于检索版本的 API 调用来自可执行文件的信息。以下代码片段应该可以帮助您入门。
Windows provides a set of API calls for retrieving the version information from executable files. The following snippet of code should help you get started.
在可执行文件上使用这些函数:
http:// msdn.microsoft.com/en-us/library/ms646981%28v=VS.85%29.aspx
Use these functions on the executable:
http://msdn.microsoft.com/en-us/library/ms646981%28v=VS.85%29.aspx