Hello
I have some problems with calling unmanaged function from a c++ dll. My problem is how to handle the stucture wich I sent in to the function by a pointer. The struct i "emty" when i put it in the parameter, but I need to read the structure after the function call is finnished.
Anyone who have any sample code that can help me.
The struct look like this in c++
struct TNavVersionInfoV01
{
char iVersion[16];
INT iBuildNumber;
};
thomas
I have some problems with calling unmanaged function from a c++ dll. My problem is how to handle the stucture wich I sent in to the function by a pointer. The struct i "emty" when i put it in the parameter, but I need to read the structure after the function call is finnished.
Anyone who have any sample code that can help me.
The struct look like this in c++
struct TNavVersionInfoV01
{
char iVersion[16];
INT iBuildNumber;
};
thomas