在我的c ++项目中,我添加了一个.rc文件,我可以在其中存储文件版本,可执行文件描述,版权等。
并且没关系,我编译,我去探险家 - >文件属性,我看到表单中的所有字段。
我的问题是:如果我需要从项目中读取自己的文件版本(例如以表格形式显示),我该怎么做?
感谢
答案 0 :(得分:5)
Windows从可执行文件中提供了一组API calls for retrieving the version information。以下代码片段可以帮助您入门。
bool GetVersionInfo(
LPCTSTR filename,
int &major,
int &minor,
int &build,
int &revision)
{
DWORD verBufferSize;
char verBuffer[2048];
// Get the size of the version info block in the file
verBufferSize = GetFileVersionInfoSize(filename, NULL);
if(verBufferSize > 0 && verBufferSize <= sizeof(verBuffer))
{
// get the version block from the file
if(TRUE == GetFileVersionInfo(filename, NULL, verBufferSize, verBuffer))
{
UINT length;
VS_FIXEDFILEINFO *verInfo = NULL;
// Query the version information for neutral language
if(TRUE == VerQueryValue(
verBuffer,
_T("\\"),
reinterpret_cast<LPVOID*>(&verInfo),
&length))
{
// Pull the version values.
major = HIWORD(verInfo->dwProductVersionMS);
minor = LOWORD(verInfo->dwProductVersionMS);
build = HIWORD(verInfo->dwProductVersionLS);
revision = LOWORD(verInfo->dwProductVersionLS);
return true;
}
}
}
return false;
}
答案 1 :(得分:2)