Jump to content

How to use dumpbin.exe

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
2 replies to this topic

#1
drotar

drotar

    Newbie

  • Members
  • Pip
  • 3 posts
Can someone tell me how I can find the DLL functions using the dumpbin.exe command?

#2
v0id

v0id

    Retired

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 2,936 posts
I haven't used dumpbin for a long time, but if I remember right, you should look into the parameter /EXPORTS.
dumpbin /EXPORTS file.dll


#3
G_Morgan

G_Morgan

    Programming God

  • Members
  • PipPipPipPipPipPipPip
  • 537 posts
Ah the wonderful world of Windows link libraries. I think v0id is right here but I personally would pull in the TCC (Tiny C Compiler) package from the web and rip tiny_impdef.exe out of it. It does a much nicer job than dumpbin at generating def files, no need to edit the file by hand then.