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:
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
dude! use h2incx http://www.japheth.de/h2incX.html
Thanks vortex, thanks drizz!!