Thanks.
anyone knows how this would be correctly done using extern
I did it manually like:
anyone knows how this would be correctly done using extern
PHP Code
void _SomeFunction(int someint) int _SomeFunction2(int a, int b)
PHP Code
MT4_EXPFUNC void __stdcall SomeFunction(int someint) { _SomeFunction(someint); return; }
__Thanks__ MJ