GuiGetGlobalNotes
Returns into a variable a pointer to a string containing global notes and information that a user has made. The function GuiGetDebuggeeNotes can be used to get the local notes stored by a user for the target being debugged (the debuggee).
void GuiGetGlobalNotes(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 global notes.
返回值
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; GuiGetGlobalNotes(&text); if(text) { // do something with text }