Hello,
I must use a custom dll in my eVB project. I have to call 2 functions of
this dll. So I have two questions.
1) How can I call GetDllVersion with eVB (declaration + calling of
function)??
Here is the declaration of the function:
char * GetDllVersion(void); 'c declaration
This function must return the dll version (for example :1.1), my problem is
the return type of the dll.
2) How can I call the GetToto function in eVB (declaration + calling of
function)??
Here is the declaration of the function:
int GetToto(typeStruc varToto, int var1,int var2) with the following
structure:
typedef struct
{ char char1;
int int1;
}typeStruc;
Thanks a lot for your answer.