Matlab+VC混合程式設計的mclmcr.h重複定義錯誤解決方法
阿新 • • 發佈:2019-01-08
問題:
在使用 VS2008 SP1 與 Matlab2009a 混合程式設計時遇到如下編譯錯誤:
1>------ Build started: Project: testsincplot_dll, Configuration: Debug Win32 ------
1>Compiling...
1>testsincplot_dll.cpp
1>d:/program files/matlab/r2009a/extern/include/mclmcr.h(1722) : error C2011: '_INTERFACE_INFO' : 'struct' type redefinition
1> c:/program files/microsoft sdks/windows/v6.0a/include/ws2ipdef.h(84) : see declaration of '_INTERFACE_INFO'
原因:
VS2008預設設定系統平臺的最低要求是 Vista 系統,如果是 XP 系統,就會出現上述錯誤。
解決方法:
開啟專案資料夾中的 targetver.h 標頭檔案,把其中的 0X0600 修改為 0X0501,即:
#define WINVER 0x0600 ===>> #define WINVER 0x0501
#define _WIN32_WINNT 0x0600 ===>> #define _WIN32_WINNT 0x0501