Kevin007
Kevin007
Kevin007
已添加主题A question about the use of function in DLL
As you see below,I use this function from DLL : MT4_EXPFUNC int __stdcall test( int a[]) {          return a[ 0 ]; } and the code in MT4 is : int b[ 2 ]; b[ 0 ] = 7 ; b[ 1 ] = 8 ; Print ( "******:" ,test(b)