Alberto L.M. / Publications
Forum
Imported DLL method, why this syntax error?
Hi all, DLL function ... _DLLAPI double TestArrayFn(double *arr) { return 0; } MQL5 ... #import "TestDLL.dll" double TestArrayFn(double &arr[]); #import And using imported method... double arr[]; double result = TestArrayFn(arr); Im getting a "syntax error" when compiling , hmm cant figure