dll import request feature

 
There is a small improvement that could be done:
Allow the user to multiple import the SAME function, by giving it different names and syntaxes in MT,
something like this:

#import "somedll"
void intfunc(int &a[]) name "GetMyResult";
void stringfunc(string s) name "GetMyResult";
\\ Also, remember that some dlls export by index...
#import "otherdll"
void otherfunc(int b) index 10;
#import