error 2059 in loadlibrary

12 次查看(过去 30 天)
I'm attempting to run a code through matlab on Windows 10 which was previously run on windows XP. Currently running MATLAB 2015a (64-bit) with Windows 7.1 SDK as the compiler. I get the following error:
Error using loadlibrary (line 395)
Building quadrupledll_thunk_pcwin64 failed.
quadrupledll.h(14) : error C2059: syntax error : 'string'
quadrupledll.h(16) : error C2059: syntax error : 'string'
quadrupledll.h(18) : error C2059: syntax error : 'string'
I assume referring to the lines beginning 'extern'.
The header file is as follows:
// The following ifdef block is the standard way of creating macros which make exporting
// from a DLL simpler. All files within this DLL are compiled with the QUADRUPLEDLL_EXPORTS
// symbol defined on the command line. this symbol should not be defined on any project
// that uses this DLL. This way any other project whose source files include this file see
// QUADRUPLEDLL_API functions as being imported from a DLL, wheras this DLL sees symbols
// defined with this macro as being exported.
#ifdef QUADRUPLEDLL_EXPORTS
#define QUADRUPLEDLL_API __declspec(dllexport)
#else
#define QUADRUPLEDLL_API __declspec(dllimport)
#endif
extern "C" QUADRUPLEDLL_API int __stdcall move_left_assembly(int,int);
extern "C" QUADRUPLEDLL_API int __stdcall move_right_assembly(int,int);
extern "C" QUADRUPLEDLL_API int __stdcall cleanup();
  5 个评论
Walter Roberson
Walter Roberson 2017-3-23
Jack C:
We are volunteers. The "price" we charge for answering questions is that your questions and remarks and the answers to them stay public, in order for everyone to be able to learn from them. When you delete your content, we start to feel as if you are treating us as if we are free private consultants, and we are not happy about that.
Rena Berman
Rena Berman 2017-3-23
(Answers Dev) Restored edit

请先登录,再进行评论。

采纳的回答

Philip Borghesani
Philip Borghesani 2017-3-22
Loadlibrary compiles all thunk files as c not c++. The header file used must be c compatible, wrap all extern "C" statements with #ifdef __cplusplus as is normally recommended for c compatible headers.
  1 个评论
Walter Roberson
Walter Roberson 2017-3-22
#ifdef...
extern "C" {
#endif
Put the declaration here
#ifdef...
}
#endif
As an outline

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 C Shared Library Integration 的更多信息

标签

尚未输入任何标签。

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by