News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

MS COFF object file undecorator

Started by Vortex, January 14, 2007, 06:22:37 PM

Previous topic - Next topic

Vortex

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


Vortex

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.

daluca

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

Vortex

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.