c ++将.rc中的版本转换为代码

时间:2011-07-20 14:07:06

标签: c++ versioninfo

  

可能重复:
  How do I read from a version resource in Visual C++

在我的c ++项目中,我添加了一个.rc文件,我可以在其中存储文件版本,可执行文件描述,版权等。

并且没关系,我编译,我去探险家 - >文件属性,我看到表单中的所有字段。

我的问题是:如果我需要从项目中读取自己的文件版本(例如以表格形式显示),我该怎么做?

感谢

2 个答案:

答案 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)

在可执行文件上使用这些功能:

http://msdn.microsoft.com/en-us/library/ms646981%28v=VS.85%29.aspx