Calling a DLL Function
Posted: Wed Apr 01, 2009 12:23 am
How would you guys call this DLL Function
void hesl::version(int *major, int *minor, char **verstr);
I tried the following and the values at *major and *minor are okay but I don't know how to handle char **verstr
void hesl::version(int *major, int *minor, char **verstr);
I tried the following and the values at *major and *minor are okay but I don't know how to handle char **verstr
Code: Select all
*major = @major.i
*minor = @minor.i
version.s = ""
*version = @version.s
CallFunctionFast(*F, *major, *minor, *version)