x64dbg/docs/developers/functions/gui/GuiSetDebuggeeNotes.md
2025-07-04 01:32:42 +02:00

28 lines
No EOL
751 B
Markdown

# 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.
```c++
void GuiSetDebuggeeNotes(char** text)
```
## Parameters
`text` A variable that contains a pointer to a string that contains the text to set as the debuggee notes.
## Return Value
This function does not return a value.
## Example
```c++
const char* text = json_string_value(json_object_get(root, "notes"));
GuiSetDebuggeeNotes(text);
```
## Related functions
- [GuiGetDebuggeeNotes](./GuiGetDebuggeeNotes.md)
- [GuiGetGlobalNotes](./GuiGetGlobalNotes.md)
- [GuiSetGlobalNotes](./GuiSetGlobalNotes.md)