У меня есть очень простой заголовочный файл для библиотеки DLL, но это на C ++. Кто-нибудь может помочь мне отредактировать его таким образом, чтобы он был совместим с командой «LoadLibrary» в Matlab (родной C)? Я понимаю, что это не общая проблема, а скорее недостаток моих знаний. Но если решение простое, я буду признателен за любые советы.
// 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 TRACKERERRORSDLL_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
// TRACKERERRORSDLL_API functions as being imported from a DLL, whereas this DLL sees symbols
// defined with this macro as being exported.
#ifdef TRACKERERRORSDLL_EXPORTS
#define TRACKERERRORSDLL_API __declspec(dllexport)
#define TRACKERERRORSDLL_VB __declspec(dllexport) __stdcall
#else
#define TRACKERERRORSDLL_API __declspec(dllimport)
#define TRACKERERRORSDLL_VB __declspec(dllimport) __stdcall
#endif
#include <string>
using namespace std;
bool TRACKERERRORSDLL_API GetTPIErrorDescription_wstring(long errorNumber,
basic_string<__wchar_t> & shortDescription,
basic_string<__wchar_t> & longDescription,
basic_string<__wchar_t> & solutionDescription,
bool & isAutoRecoverOnGreenState);
bool TRACKERERRORSDLL_API GetTPIErrorDescription_wstring(long errorNumber,
basic_string<unsigned short> & shortDescription,
basic_string<unsigned short> & longDescription,
basic_string<unsigned short> & solutionDescription,
bool & isAutoRecoverOnGreenState);
bool TRACKERERRORSDLL_API GetTPIErrorDescription_string(long errorNumber,
string & shortDescription,
string & longDescription,
string & solutionDescription,
bool & isAutoRecoverOnGreenState);
bool TRACKERERRORSDLL_API GetTPIErrorDescription_CString(long errorNumber,
CString & shortDescription,
CString & longDescription,
CString & solutionDescription,
bool & isAutoRecoverOnGreenState);
bool TRACKERERRORSDLL_VB GetTPIErrorDescription_VB(int errorNumber,
LPSTR* shortDescription,
LPSTR* longDescription,
LPSTR* solutionDescription,
bool* isAutoRecoverOnGreenState);
Ссылка для скачивания библиотеки (64bit):
https://docs.google.com/file/d/0BzzppV2CG8ZldzFRVzJUa252MHc/edit?usp=sharing
Matlab R2013a 64bit
Единственная функция, которую вы можете вызвать GetTPIErrorDescription_VB
, Все остальные используют классы C ++, к которым у вас нет доступа. Поэтому я предлагаю вам сделать следующее:
#include
и using
линий.#ifdef
и заменить TRACKERERRORSDLL_VB
с __stdcall
,windows.h
или добавить немного #define
операторы для типов Win32.bool
тип в зависимости от того, знает ли MATLAB, как с этим бороться. Если MATLAB не распознает его, замените bool
с int
,В этот момент призыв к loadlibrary
должно работать, а затем вам просто нужно написать код, который вызывает calllib
,
Полученный заголовочный файл может выглядеть примерно так:
#define LPSTR char*
__declspec(dllimport) bool __stdcall GetTPIErrorDescription_VB(
int errorNumber,
LPSTR* shortDescription,
LPSTR* longDescription,
LPSTR* solutionDescription,
bool* isAutoRecoverOnGreenState
);
Наконец, обратите внимание, что LPSTR*
это довольно удивительный тип для встречи. Это говорит о том, что DLL собирается выделить char*
C строк, а затем вернуть их вам через три параметра описания. Это представляет проблему выделения памяти. Кто собирается освободить память? Это даже должно быть освобождено, или это статично? Эти проблемы необходимо решить, обратившись к документации по DLL.
Других решений пока нет …