GuiAddLogMessage
Adds a message to the log. The message will be shown in the log window and on the status bar at the bottom of x64dbg.
void GuiAddLogMessage( const char* msg // string containg message to add to log );
参数
msg
String containing the message to add to the log. Ensure that a carriage line and return feed are included with the string for it to properly display it. Encoding is UTF-8.
返回值
此函数不返回值。
示例
GuiAddLogMessage("This text will be displayed in the log view.\n");
.data szMsg db "This text will be displayed in the log view",13,10,0 ; CRLF .code Invoke GuiAddLogMessage, Addr szMsg