I have a dll with header file.
Function definition that I want to call is in header file and it looks like this:
DLL_EXPORT unsigned long CON_OpenInterface(
void ** ppHandle,
unsigned long interface,
const char * cmd,
const char * response, char * pResponse, unsigned long maxSize
);
I have parameterized call library function node as:
ppHandle: Numeric, Unsigned 32-bit Integer, Pointer to Value
interface: Numeric, Unsigned 32-bit Integer, Value
cmd: String, C String Pointer, <None>
response: String, C String Pointer, <None>
pResponse: String, C String Pointer, <None>
maxSize: Numeric, Unsigned 32-bit Integer, Value
But the function does not work. What am I doing wrong?