News:

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

Calling vortex!

Started by grofaz, November 03, 2008, 09:46:51 PM

Previous topic - Next topic

grofaz

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:

Vortex

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

drizz

The truth cannot be learned ... it can only be recognized.

grofaz

Thanks vortex, thanks drizz!!