Click to See Complete Forum and Search --> : How can I convert Micro$oft libs to Borland libs ?


July 15th, 1999, 02:16 PM
How can I convert Micro$oft libs to Borland libs ?

Paul McKenzie
July 15th, 1999, 02:18 PM
Are you talking about the import libraries or static libraries?

Regards,

Paul McKenzie

July 15th, 1999, 02:27 PM
I'm talking about the static libraries...

Paul McKenzie
July 15th, 1999, 02:44 PM
The source code needs to be recompiled with the Borland compiler. The reason is that the object code that is generated from the Microsoft compiler may call proprietary Microsoft functions which do not exist in the Borland library. When it comes time to link, you'll get a thousand errors stating that "_foo() symbol is not found".

This has been the case since the old days of DOS. The rule is that you generally can't take an OBJ or library written for one C or C++ compiler and link it with another C or C++ compiler.

Regards,

Paul McKenzie