Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript |
c++ - Create win32 libs using implib?
Well, I was excited to download the compiler and play with a new toy.. But, it is missing quite a few windows libs.. I tryed to make them like this: implib /s gdi32.lib gdi32.dll Anyways, didn't seem to work for me. Anyone can tell me how to do it right? Thanks, Jason Tudisco Apr 30 2001
I am not sure if the .LIB's are part of the license agreement with Microsoft. I would think they are.... Anyways, If you have VC-- 6.0 you can take the .LIB out of there and just run COFF2OMF on it. Don't worry, be Kneppie! Jan Jason Tudisco wrote:Well, I was excited to download the compiler and play with a new toy.. But, it is missing quite a few windows libs.. I tryed to make them like this: implib /s gdi32.lib gdi32.dll Anyways, didn't seem to work for me. Anyone can tell me how to do it right? Thanks, Jason Tudisco Apr 30 2001
I've attached gdi32.lib Jason Tudisco wrote in message <1103_988636066 monkey>...Well, I was excited to download the compiler and play with a new toy.. But, it is missing quite a few windows libs.. I tryed to make them like Apr 30 2001
The command line is: implib /system gdi32.lib gdi32.dll What are the symptoms of it failing for you? Jason Tudisco wrote in message <1103_988636066 monkey>...Well, I was excited to download the compiler and play with a new toy.. But, it is missing quite a few windows libs.. I tryed to make them like Apr 30 2001
|