
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
I've created a C++ file and used all the right syntax required for mql4 to speak to my DLL such as #define MT4_EXPFUNC __declspec(dllexport), APIENTRY and _stdcall myfunc() etc
Now im just wondering how to actually turn this into a .DLL. I've tried using visual studios implementation of a DLL "solution" and although i get a DLL file i also end up with a load of visual studio garbage and the actual file (aparently) doesnt contain the function that im calling once its loaded. Is there some specific command line arguments i have to use when building or is there another way of doing it without visual studio.
thanks.