gpt4 book ai didi

c++ - 'DLLVERSIONINFO' 将项目从 VS2008 更新到 VS2012 后出现编译错误

转载 作者:行者123 更新时间:2023-11-28 06:20:23 24 4
gpt4 key购买 nike

我有一个非常古老的 C++ 应用程序,多年来,在我之前,源代码已经迁移了很多次。它现在在 VS2008 下构建和编译。我决定迁移到 VS2012,这样做之后,我现在收到以下编译器错误:error C2371: 'DLLVERSIONINFO' : redefinition;不同的基本类型

我没有更改任何一行代码。我只是将项目从 VS2008 更新到 VS2012。

访问后MSDN ,然后稍微玩一下,我在 _DllVersionInfo 结构的最后注释掉了结构“DLLVERSIONINFO”的最后一部分。

现在项目编译并运行!!!

我的问题如下:1) 这是否意味着微软改变了这个结构在 VS2012 中的工作方式?2)如果我永远离开评论部分,我可能会遇到什么样的问题?

下面是源代码。

// 1998 Microsoft Systems Journal
//
// If this code works, it was written by Paul DiLascia.
// If not, I don't know who wrote it.
// http://www.microsoft.com/msj/0498/c0498.aspx

#ifndef __MODULEVER_H
#define __MODULEVER_H

// tell linker to link with version.lib for VerQueryValue, etc.
#pragma comment(linker, "/defaultlib:version.lib")

#ifndef DLLVERSIONINFO
// following is from shlwapi.h, in November 1997 release of the Windows SDK

typedef struct _DllVersionInfo
{
DWORD cbSize;
DWORD dwMajorVersion; // Major version
DWORD dwMinorVersion; // Minor version
DWORD dwBuildNumber; // Build number
DWORD dwPlatformID; // DLLVER_PLATFORM_*
} /*DLLVERSIONINFO*/; // commented out this part

// Platform IDs for DLLVERSIONINFO
#define DLLVER_PLATFORM_WINDOWS 0x00000001 // Windows 95
#define DLLVER_PLATFORM_NT 0x00000002 // Windows NT

#endif // DLLVERSIONINFO

// value must pair with static LPCTSTR Keys[] in method CString
// CMainVersion::GetFile_VS_VERSION_INFO(...)
typedef enum {
eCompanyName = 0,
eFileDescription = 1,
eFileVersion = 2,
eInternalName = 3,
eLegalCopyright = 4,
eOriginalFilename = 5,
eProductName = 6,
eProductVersion = 7,
eAllInfo = 8
} E_VS_VERSION_INFO;

class CModuleVersion : public VS_FIXEDFILEINFO
{
protected:
BYTE* m_pVersionInfo; // all version info

struct TRANSLATION {
WORD langID; // language ID
WORD charset; // character set (code page)
} m_translation;

public:
CModuleVersion();
virtual ~CModuleVersion();
static CString GetModuleVersion();
static CString GetModuleHistory();

BOOL GetFileVersionInfo(LPCTSTR modulename);
CString GetValue(LPCTSTR lpKeyName);
static BOOL DllGetVersion(LPCTSTR modulename, DLLVERSIONINFO& dvi);
};

class CMainVersion
{
public:
CMainVersion();
virtual ~CMainVersion();

static CString GetFileVersion(const CString & csModuleName);
static CString GetFile_VS_VERSION_INFO(const CString & csModuleName,
E_VS_VERSION_INFO eInfo);
static CString GetFileAndDllVersion(const CString & csModuleName);
static CString GetAllVersions();
};
#endif

最佳答案

显然,Microsoft 添加了自己的声明 DLLVERSIONINFO (在 shlwapi.h 中)VS2008 和 VS2012 之间的某个时间。您不应该再手动声明它,只需使用 #include <shlwapi.h>相反。

无论哪种方式,#ifndef DLLVERSIONINFO永远不会奏效,因为 DLLVERSIONINFO未使用 #define 声明陈述。如果你想有条件地定义 DLLVERSIONINFO基于编译器版本,使用 _MSC_VER相反,例如:

#if _MSC_VER >= 1700 // 1700 == VS2012
#include <shlwapi.h>
#else
// following is from shlwapi.h, in November 1997 release of the Windows SDK

typedef struct _DllVersionInfo
{
DWORD cbSize;
DWORD dwMajorVersion; // Major version
DWORD dwMinorVersion; // Minor version
DWORD dwBuildNumber; // Build number
DWORD dwPlatformID; // DLLVER_PLATFORM_*
} DLLVERSIONINFO;

// Platform IDs for DLLVERSIONINFO
#define DLLVER_PLATFORM_WINDOWS 0x00000001 // Windows 95
#define DLLVER_PLATFORM_NT 0x00000002 // Windows NT

#endif // _MSC_VER

关于c++ - 'DLLVERSIONINFO' 将项目从 VS2008 更新到 VS2012 后出现编译错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29401568/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com