Using an unmanaged c++ dll

  • Thread starter Thread starter Torben Laursen
  • Start date Start date
T

Torben Laursen

Hi

I have a function in a c++ dll that I need to use, but I do not know how to
pass the arguments.
This is the function in c++:
extern "C" __declspec(dllexport) void __stdcall Info(char *Label, const int
&ID, char *Message, int &StatusCode, int &ErrorIndex, char *ErrorString)

Can anyone show me a few lines of code that tell me how to talk pass the
correct arguments?

Thanks Torben
 
Back
Top