Hello Antonio,
Was that you are looking for ?
--- TESPCOD.PRG ---
* hbmk2 -shared tespcod
function Main()
local hDLL := hb_LibLoad( "pcode.dll" )
Do( "Another" )
Alert( "From the EXE" )
hb_LibFree( hDLL )
return nil
--- PCODE.PRG ---
* hbmk2 -shared -hbdynvm PCODE
DYNAMIC Alert
function Another()
Alert( "Inside the DLL" )
return nil
Best Regards,
Rossine.