Personal tools

Dumpbin

From MohidWiki

Revision as of 19:22, 18 December 2007 by 192.168.20.148 (talk) (HowTo)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Dumpbin is a great little utility provided in Windows XP that allows to dump binary files and view their content. It is particularly usefule to see the symbolic table.

HowTo

From a dos box

>dumpbin /SYMBOLS file > file_dump.log

Where file is the filename. This will list the local functions as well as the externals.

> dumpbin /EXPORTS library > lib_dump.log

where library is a library filename. This will list the library's exported symbols.