Skip to content

Commit

Permalink
Gui Update functions
Browse files Browse the repository at this point in the history
  • Loading branch information
mrfearless committed Jun 13, 2018
1 parent 79bc49d commit 4e2d503
Showing 1 changed file with 23 additions and 6 deletions.
29 changes: 23 additions & 6 deletions developers/functions/gui/GuiIsUpdateDisabled.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,42 @@
# GuiIsUpdateDisabled

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

```c++
Function definition.
bool GuiIsUpdateDisabled()
```

## Parameters

`param1` Parameter description.
This function has no parameters.

## Return Value

Return value description.
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++
Example code.
bool bUpdate = GuiIsUpdateDisabled();
```

## Related functions

- List of related functions
- [GuiUpdateAllViews](./GuiUpdateAllViews.md)
- [GuiUpdateArgumentWidget](./GuiUpdateArgumentWidget.md)
- [GuiUpdateBreakpointsView](./GuiUpdateBreakpointsView.md)
- [GuiUpdateCallStack](./GuiUpdateCallStack.md)
- [GuiUpdateDisable](./GuiUpdateDisable.md)
- [GuiUpdateDisassemblyView](./GuiUpdateDisassemblyView.md)
- [GuiUpdateDumpView](./GuiUpdateDumpView.md)
- [GuiUpdateEnable](./GuiUpdateEnable.md)
- [GuiUpdateGraphView](./GuiUpdateGraphView.md)
- [GuiUpdateMemoryView](./GuiUpdateMemoryView.md)
- [GuiUpdatePatches](./GuiUpdatePatches.md)
- [GuiUpdateRegisterView](./GuiUpdateRegisterView.md)
- [GuiUpdateSEHChain](./GuiUpdateSEHChain.md)
- [GuiUpdateSideBar](./GuiUpdateSideBar.md)
- [GuiUpdateThreadView](./GuiUpdateThreadView.md)
- [GuiUpdateTimeWastedCounter](./GuiUpdateTimeWastedCounter.md)
- [GuiUpdateWatchView](./GuiUpdateWatchView.md)
- [GuiUpdateWindowTitle](./GuiUpdateWindowTitle.md)

0 comments on commit 4e2d503

Please sign in to comment.