
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
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