Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to write and compile some C code which I would use frm MATLAB with VS 2012

Here is my header file:

#ifndef _DLLTEST_H_
#define _DLLTEST_H_

#include <iostream>
#include <stdio.h>
#include <windows.h>

extern "C" __declspec(dllexport) int Add(int a, int b);


#endif

And here is implementation:

#include "stdafx.h"
#include "nureader.h"

extern "C" __declspec(dllexport) int Add(int a, int b)
{
  return (a + b);
}

Compilation goes fine, but when I try to load DLL to MATLAB, I getting a strange error:

>> [a,b] = loadlibrary('nureader.dll', 'nureader.h')
Error using loadlibrary (line 419)
Failed to preprocess the input file.
Output from preprocessor is:nureader.h
C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\eh.h(27) : fatal error C1189: #error :  "eh.h
is only for C++!"
share|improve this question
You need to use the matlab extension (MEX) API. Learn here mathworks.co.uk/help/matlab/… – user1207217 Jan 25 at 16:56
I've already tried MEX, but I cannot pass HANDLE parameter for using COM port – skayred Jan 25 at 16:58
fatal error C1189: #error : "eh.h is only for C++!" You want to write a C library, right? so don't include C++ in it. or use G++ – Shark Jan 25 at 17:02
As shark noted - "#include <iostream>" - This is a C++ library ... In fact, do you happen to need any IO routines at all? If you do, stdio.h is what you need instead .. – user1207217 Jan 25 at 17:07
@Shark, can you post your comment as an answer? – skayred Jan 25 at 17:15

1 Answer

up vote 2 down vote accepted

Take a look at VS output

fatal error C1189: #error : "eh.h is only for C++!" 

You want to write a C library, right? so don't include C++ in it. or compile with G++ but since you're using windows I don't think you have that option...

In any case, track down what includes "eh.h" and try without it. If it builds without it - great, if not - you will need to only isolate the C portion of your program. By looking at the code, you don't seem to need anything more than

#include <stdio.h>
#include <windows.h>

So try that.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.