Back to X64dbg

GuiUpdateWindowTitle

docs/developers/functions/gui/GuiUpdateWindowTitle.md

2026.04.201.3 KB
Original Source

GuiUpdateWindowTitle

Updates the x64dbg window title with a string to be appended to the title text. Typically the string is a filename.

c++
void GuiUpdateWindowTitle(const char* filename)

Parameters

filename a const char variable to be appended to the x64dbg title bar.

Return Value

This function does not return a value.

Example

c++
GuiUpdateWindowTitle("");
GuiUpdateWindowTitle(szFileName);