i searched a way to export data from a dll and it took some time to
get this working.
(see here: viewtopic.php?t=16192)
because this is an time consuming way of compiling when testing code,
i searched a better way, a way to pass options to the polink.exe directly.
finally i found a way. all it needs is a patched fasm.exe and now i can
compile my dll from editor without using /COMMENTED & /REASM, just
by adding this to the purebasic source:
Code: Select all
!public v_FunctionTable
!section '.drectve' drectve hidden
!DB '/EXPORT:FunctionTable=v_FunctionTable,DATA '
!section '.text' code readable executable
now, erm, maybe this opens another door?

best regards,
flohimself