Link to home
Start Free TrialLog in
Avatar of ekinee
ekinee

asked on

Borland C++ 5.02

I need to link implicitly a dll with my exe. How is this done with Borland C++ 5.02.

I have an example program written with Builder, in this program it is done (I beleave) with USELIB(..);, I need to make the same thing with Borland C++ 5.02.

Just in case. I beleave this would solve an linker error:
Unresolved external...  
ASKER CERTIFIED SOLUTION
Avatar of arikka
arikka

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of ekinee
ekinee

ASKER

Arikka, could you tell me how to use IMPLIB
Say you have MyDll.Dll
So, from CMD prompt run
> implib MyDll_i.lib MyDll.dll

Take crated MyDll_i.lib (import library) and insert it into your project
Avatar of ekinee

ASKER

I'm thanking.