Message

OllyDbg Plugin API

Message

Displays message on the bottom of main OllyDbg window and adds it to the log window. If format is NULL, message will be removed from the bottom line but not added to the log. Formatted message may contain dollar sign '$'. This symbol is replaced by dash '-' on the bottom line and terminates line added to the log. For example, if you call Message(0,"Critical error $ press SPACE to continue"), bottom line will display "Critical error - press SPACE to continue" and log window "Critical error". Call to this function removes flash and progress bar from the bottom line.

void Message(ulong addr,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. addr is not displayed in the bottom line;

format - format string (as in call to printf), followed by optional arguments.

See also: Addtolist, Updatelist, Createlistwindow, Infoline, Progress, Flash