
Calling a C++ DLL function which takes an C++ object as parameter
If a exported function in a C++ Dll is something like this
void Push(Base b, char** s);
where 'Base' is a class like
class Base
{
public:
Base(){}
int i;
Quote:
}
how would I make VB understand the first parameter to the function.