In some of the MT4 extention dlls they make usage of: printf
e.g.: MT4 official Sample Dll:
Maybe it's a dumb question: but anyway:
How do you guys look for the output of it?
Do you do something like: start the terminal with: terminal.exe > consolelog.txt http://forum.mql4.com/24694
In your own dll: what do you use for error report?
.
e.g.: MT4 official Sample Dll:
PHP Code
//+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ MT4_EXPFUNC int __stdcall GetIntValue(const int ipar) { printf("GetIntValue takes %d\n",ipar); return(ipar); } //+------------------------------------------------------------------+
How do you guys look for the output of it?
Do you do something like: start the terminal with: terminal.exe > consolelog.txt http://forum.mql4.com/24694
In your own dll: what do you use for error report?
.
__Thanks__ MJ