Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

import libraries and export files

Status
Not open for further replies.

peterworth

Programmer
Aug 18, 2004
80
0
0
GB
how can i change the .lib and .exp files that my dll builds in visual studio? at the moment they have references to the older version of the dll (which had a different name).

thanks again in advance..
 
Every time you build your DLL you should get a new .lib and .exp file built.

If they aren't getting built when you built your DLL, just delete the .lib and .exp and .dll file ( basically a CLOBBER as opposed to a CLEAN ) and re link your DLL. the new versions will have to be recreated since they don't exist anymore.


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top