Hi,
Is there any problem to call in VB 6.0 a pointer function from a DLL created in VC++ 6.0?
C++ DLL Function exported:
extern "C" _declspec(dllexport) icPar *IMPCAR(icPar *ParGlobal);
Visual Basic Declaration:
Private Declare Sub IMPCAR Lib "C:\Meus documentos\AME\Visual C\Call_DLL\IMPCAR.DLL" (udtData As icPar)
Visual basic Call:
Call IMPCAR(ParMain)
Is there any error?
Thanks
Is there any problem to call in VB 6.0 a pointer function from a DLL created in VC++ 6.0?
C++ DLL Function exported:
extern "C" _declspec(dllexport) icPar *IMPCAR(icPar *ParGlobal);
Visual Basic Declaration:
Private Declare Sub IMPCAR Lib "C:\Meus documentos\AME\Visual C\Call_DLL\IMPCAR.DLL" (udtData As icPar)
Visual basic Call:
Call IMPCAR(ParMain)
Is there any error?
Thanks