News:

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

FASMLIB 0.7.0 released

Started by vid, October 23, 2007, 07:05:42 PM

Previous topic - Next topic

vid

FASMLIB version 0.7.0 is released, comes with full documentation, tutorial, and many other minor additions/fixes.

In case you don't know FASMLIB yet, it is a general-purpose library (like libc) for 32bit assembly programmers. For MASM users, it now comes in .LIB format (since 0.6.0).

http://fasmlib.x86asm.net

ecube

thankyou sir, your hardwork in this project, and willingness to share is much appreciated. Have a great day  :bg

Vortex

vid,

Nice work. If I am not wrong, the package does not contain an import library for the DLL. Attached is the import library fasmlib2.lib

[attachment deleted by admin]

vid

thanks, good point. I didn't think about using DLL in MASM project.

As for .inc file, you can still use same "include/masm/fasmlib.inc". It contains actual prototypes (with proper argument types), and error codes.

I will have to think about some good name for this library, or put DLL + it's import library into separate directory. Name "fasmlib2.lib" is already used for static library :/

How do you build import library for DLL?
Is the .DEF file required to use the DLL? Or what is it good for?

Vortex

Hi vid,

The module definition file is required to build the import library with def2lib :

http://www.masm32.com/board/index.php?topic=6390.0

I created the def file using the lib2def tool.

vid

thanks a lot, i will include import library to next FASMLIB versions.