The Addtolist function adds single line of ASCII text, up to TEXTLEN characters long, to the log window.
void Addtolist(long addr,int highlight,char *format,...);
Parameters:
addr - memory address associated with log line. By doubleclicking the line in log window, one can instantly jump to the corresponding code or data in CPU;
highlight - color of text:
0 | standard color (black in black on white color scheme); |
1 | highlighted (red); |
-1 | grayed (gray); |
format - format string (as in call to printf), followed by optional arguments.
See also: Updatelist, Createlistwindow, Message