Back to X64dbg

GuiIsUpdateDisabled

docs/developers/functions/gui/GuiIsUpdateDisabled.md

2026.04.201.4 KB
Original Source

GuiIsUpdateDisabled

Returns the status of the internal update flag, which can be disabled via GuiUpdateDisable function or enabled vis the GuiUpdateEnable function.

c++
bool GuiIsUpdateDisabled();

Parameters

This function has no parameters.

Return Value

Returns a boolean value indicating if the internal update flag is set to disabled. If it is set to disabled the value is TRUE otherwise updates are enabled and the value is FALSE.

Example

c++
bool bUpdate = GuiIsUpdateDisabled();