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
thankyou sir, your hardwork in this project, and willingness to share is much appreciated. Have a great day :bg
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]
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?
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.
thanks a lot, i will include import library to next FASMLIB versions.