imports 0.0.4 - Fasm imports table builder
This is freeware - flatassembler.net

9.2.2004 pelaillo:

What is this:
This script will look for all external calls building the import table
after searching for the functions in the respective imported executable
module (dll, exe...)

Features:
1. Full fasm source code.
2. Loads the needed dlls as resource files to save time.
3. Skips strings, comments and macro definition lines.
4. Goes recursively through included files.
5. Path syntax full compatible with fasm.
6. Selectable Unicode and ASCII functions.
7. Prepares following import tables:
     fasm
     alink
     golink
8. Works with following macros:
     api
     invoke
     cinvoke
     thiscall
     fastcall

Help:

imports source.asm [output][char]
 output options:
	-f: Fasm (Default)
	-g: GoLink
	-a: Alink

 char options:
	-a: ASCII char (Default)
	-w: Unicode (Wide) char

Things to do:
1. Build the import table without need for library and import macros.
2. Improve memory management.
3. Incorporate to fasm PE formatter (?)

