Where can I find this "implib" tool you mentioned?

I have the latest Windows SDK and Visual Studio 2010. Yet when I perform a search in program files I can't find it!!
:(

"Andrej Mitrovic" wrote in message news:mailman.565.1307117174.14074.digitalmars-d-le...@puremagic.com...

If you have coffimplib (which isn't free), then you could just convert
the windows sdk import lib to OMF format.

Otherwise, you can create an import library from a DLL.

Find the DLL (e.g. kernel32.dll), and run:
implib /s kernel32.lib kernel32.dll

Then link with the new import lib. I think that should work.

Reply via email to