I have a .dll library (c++) and I need to Import it to Matlab (I have no header file for it)

2 次查看(过去 30 天)
loadlibrary() doesn't work with me because i have no Header file

采纳的回答

Walter Roberson
Walter Roberson 2017-4-24
You will need to write a header file for it listing all the interface routines you wish to be able to call.
Note: it will only be possible to call functions which were created with
extern "C"
in the C++ source.
  6 个评论
Walter Roberson
Walter Roberson 2017-4-24
Looking at the code, it appears to me that it is not designed to be called from C, but
"The loadlibrary function only supports calling functions that are callable from C and header files that can be parsed by a C compiler. Functions written in C++ must be declared as extern "C"."
To call it from MATLAB, you would have to create some interface code that was C compatible.
Omar Abdelkader
Omar Abdelkader 2017-4-25
yes I'm trying to use mdf4reader, I tried to add extern "C" to the 'CMdf4Reader.h' code, I get a warning that there were no functions found!

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Use COM Objects in MATLAB 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by