The MASM Forum Archive 2004 to 2012

Project Support Forums => The GeneSys Development System => Topic started by: grofaz on November 03, 2008, 09:46:51 PM

Title: Calling vortex!
Post by: grofaz on November 03, 2008, 09:46:51 PM
Hey man,

How do you use your lib2inc tool to create masm lib and inc files for using sdl with masm ?? Is it possible ??

dEbUgGeR
:dazzled:
Title: Re: Calling vortex!
Post by: Vortex on November 03, 2008, 10:27:30 PM
You can create include files and import libraries from module definition files.

def2inc converts .def files to include files. This tool can be found in the \GeneSys\def folder.

Examples :

def2inc kernel32.def

creates kernel32.inc

or

def2inc *.def

to create multiple include files.

def2lib converts .def files to MS COFF import libraries. It's located in the \GeneSys\def folder.

def2lib kernel32.def
def2lib user32.def


or

def2lib *.def

lib2inc extracts include files from MS COFF import libraries.

lib2inc kernel32.lib

or

lib2inc *.lib
Title: Re: Calling vortex!
Post by: drizz on November 03, 2008, 10:46:59 PM
dude! use h2incx http://www.japheth.de/h2incX.html
Title: Re: Calling vortex!
Post by: grofaz on November 04, 2008, 03:10:27 AM
Thanks vortex, thanks drizz!!