C++ + Delphi
-
Short answer: not possible cos delphi cannot use C++ obj/lib/dll files. in anycase, u cannot use the dll with a c++ if u dont have the lib file. i believe though there are some tools that can create a lib file from a dll (msvc++ has one i think) Bikram Singh
-
Short answer: not possible cos delphi cannot use C++ obj/lib/dll files. in anycase, u cannot use the dll with a c++ if u dont have the lib file. i believe though there are some tools that can create a lib file from a dll (msvc++ has one i think) Bikram Singh
>> delphi cannot use C++ obj/lib/dll files. That is not entirely accurate. They cannot use each others classes but they can access C calling convention exported functions from DLL’s. So the long answer is you would have to un-object orient the C++ class in a C++ DLL by exposing the functionality through a set of C style functions. Then the Delphi application can call the functions in the C++ DLL.
"No matter where you go, there your are." - Buckaroo Banzai
-pete