The MASM Forum Archive 2004 to 2012

General Forums => The Workshop => Topic started by: Vortex on January 14, 2007, 06:22:37 PM

Title: MS COFF object file undecorator
Post by: Vortex on January 14, 2007, 06:22:37 PM
Hi friends,

undecor.exe is a tool to undecorate MS COFF object files. It operates like the following :

_ExitProcess@4 is converted to ExitProcess
_wsprintfA is converted to wsprintfA

This tool can be used to link object files with import libraries containing undecorated symbols.
This kind of import libraries can be created directly from DLLs with Pelle's polib or def2lib.

http://vortex.masmcode.com/files/undecor10.zip

Title: Re: MS COFF object file undecorator
Post by: Vortex on January 17, 2007, 06:56:55 PM
Now, the tool can process also direct function calls used mostly by C compilers :

__imp__ExitProcess@4 is converted to __imp_ExitProcess
__imp__wsprintfA is converted to __imp_wsprintfA


http://www.vortex.masmcode.com/files/undecor11.zip

The updated zip file contains PellesC examples using the tool.
Title: thanks
Post by: daluca on February 07, 2009, 10:26:40 PM
thanks vortex I'll give it a try .

I'm also interested in your def2lib tool ,currently i'm using implib SDK by Quantum(fasm)

(http://implib.sourceforge.net/)

your page is full of ms coff tools i'll check them out. thanks
Title: Re: MS COFF object file undecorator
Post by: Vortex on February 08, 2009, 09:27:04 AM
Quantum's implib is based on Fasm's macro engine. Implib is a nice tool.

Please let me know if you have questions regardig my tools.