- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个非常古老的 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/
我有一个非常古老的 C++ 应用程序,多年来,在我之前,源代码已经迁移了很多次。它现在在 VS2008 下构建和编译。我决定迁移到 VS2012,这样做之后,我现在收到以下编译器错误:error C2
我是一名优秀的程序员,十分优秀!