.lib files

Started by
4 comments, last by masonium 22 years, 9 months ago
How do you make a .lib file with VC++ 6.0?
Advertisement
When you compile a .dll with VC++ 6.

It automaticly creates the .lib for it.

It''s that simple!

------------------------------------------------------------
I wrote the best video game ever, then I woke up...

Grandus.Com
------------------------------------------------------------I wrote the best video game ever, then I woke up...
lol
Well if you want a static library (no DLL involved...), when you create a New Project select Win32 Static Library.

Seeya
Krippy
Thanx, but one more question.....do you need the header file along with the library when you link it?
Only if you want to refer to any class, structure, variable, macro, definition, or function in the library. Otherwise you don''t need the headers (or the library).
If you''re brave (And I dare say stupid), don''t include any header files. Just redefine all the function prototypes from memory.
VK

This topic is closed to new replies.

Advertisement