mirror of
https://github.com/x64dbg/x64dbg
synced 2026-08-11 18:23:06 -04:00
973 B
973 B
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);
Parameters
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.
Return Value
This function does not return a value. The string containing the notes is returned via the pointer supplied via the text parameter.
Example
char* text = nullptr;
GuiGetDebuggeeNotes(&text);
if(text)
{
// do something with text
BridgeFree(text);
}