mirror of
https://github.com/x64dbg/x64dbg
synced 2026-08-11 18:23:06 -04:00
823 B
823 B
GuiSetGlobalNotes
Sets the global notes, 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 global notes.
void GuiSetGlobalNotes(char** text)
Parameters
text A variable that contains a pointer to a string that contains the text to set as the global notes.
Return Value
This function does not return a value.
Example
notesFile = String(szProgramDir) + "\\notes.txt";
String text;
if(!FileExists(notesFile.c_str()) || FileHelper::ReadAllText(notesFile, text))
GuiSetGlobalNotes(text.c_str());