GuiGetDebuggeeNotes
Returns into a variable a pointer to a string containing notes and information that a user has made relating to the target being debugged (the debuggee). The function GuiGetGlobalNotes can be used to get the global notes stored by a user.
void GuiGetDebuggeeNotes(char** text)
参数
text
A variable that will contain a pointer to a buffer on return. The pointer returned points to a string that will contain the notes for the debuggee.
返回值
This function does not return a value. The string containing the notes is returned via the pointer supplied via the text
parameter.
示例
char* text = nullptr; GuiGetDebuggeeNotes(&text); if(text) { // do something with text }