//--------------------------
struct RateInfo { unsigned int ctm; double open; };
struct MqlStr { int len; char * string; };
# define happy __declspec (dllexport)
happy void _stdcall GetSMAArray( RateInfo* Rates, int MaximumRecords, int Period, double Result[] )
//--------------------------
at above code :
char * string;
RateInfo* Rates,
i want to ask what the * means/represent ?
thanks
Last edited on
http://www.cplusplus.com/doc/tutorial/pointers/
big thanks to GREY WOLF
it really help ~~
Last edited on