eric pouech writes:
this is a first shot at the PE-dump utility for wine since, lots of code could/will be shared with specmaker (PE image file browsing, symbol demangling...), I decided to turn specmaker into a multi-mode utility
the executable made out of the sources in specmaker dir can now be launched under 3 different names:
- specmaker: you keep all the old features of specmaker (except -S
option)
- winedemangle: this replaces the -S option of specmaker
- pedump: PE (and .DBG) file dumping utility... lots of PE dir dumping
still need to be written (like resources or typelib information)
Hallo Eric,
thanks for your effort. I applied your patch and get the following:
wine/tools/specmaker> ./pedump -x /dosd/cae/gcprevue/gcprevue.exe Unrecognized option Usage: -h Display this help message -d <dll> Use dll for input file and generate implementation code -C Turns on symbol demangling -f Dumps file header information -j sect_name Dumps only the content of section sect_name (import, export, debug) -x Dumps everything
Do I do something wrong?
Bye
Uwe Bonnes bon@elektron.ikp.physik.tu-darmstadt.de
Free Software: If you contribute nothing, expect nothing --
thanks for your effort. I applied your patch and get the following:
wine/tools/specmaker> ./pedump -x /dosd/cae/gcprevue/gcprevue.exe
this has to be called with ./pedump -x -d /dosd/cae/gcprevue/gcprevue.exe as the Usage lines (almost) mention ;-)
A+
"eric" == eric pouech eric.pouech@wanadoo.fr writes:
eric> thanks for your effort. I applied your patch and get the eric> following: >> > wine/tools/specmaker> ./pedump -x /dosd/cae/gcprevue/gcprevue.exe eric> this has to be called with ./pedump -x -d eric> /dosd/cae/gcprevue/gcprevue.exe as the Usage lines (almost) eric> mention ;-)
That looks better with the -d.
Is pedumper expected to get a disassembler too?
Bye