I made a DLL (IMPCAR.DLL) using Microsoft Visual C++ 6.0. Now, I´m trying to call the DLL from the Visual Basic 6.0.
My DLL only has an exported function:
extern "C" _declspec(dllexport) icPar *IMPCAR(icPar *ParGlobal);
where:
icPar is a struct.
Please, anybody could me give an example how to declare and call this function from the IMPCAR.DLL?
Thanks
My DLL only has an exported function:
extern "C" _declspec(dllexport) icPar *IMPCAR(icPar *ParGlobal);
where:
icPar is a struct.
Please, anybody could me give an example how to declare and call this function from the IMPCAR.DLL?
Thanks