GuiSetDebuggeeNotes

Sets the notes of the target being debugged (the debuggee), based on the text variable passed to the function. The text variable is a pointer to a string containing the information to set as the debuggee’s notes.

void GuiSetDebuggeeNotes(char** text)

参数

text A variable that contains a pointer to a string that contains the text to set as the debuggee notes.

返回值

此函数不返回值。

示例

const char* text = json_string_value(json_object_get(root, "notes")); GuiSetDebuggeeNotes(text);