Skip to content

Commit

Permalink
Gui Msg functions
Browse files Browse the repository at this point in the history
  • Loading branch information
mrfearless committed Jun 11, 2018
1 parent edb3ce9 commit e0a7370
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 12 deletions.
3 changes: 2 additions & 1 deletion developers/functions/gui/GuiAddLogMessage.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@ Invoke GuiAddLogMessage, Addr szMsg

## Related functions

- [GuiLogClear](./GuiLogClear.md)
- [GuiLogClear](./GuiLogClear.md)
- [GuiAddStatusBarMessage](./GuiAddStatusBarMessage.md)
12 changes: 6 additions & 6 deletions developers/functions/gui/GuiAddStatusBarMessage.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
# GuiAddStatusBarMessage

Function description.
Shows text in the statusbar, which can be used to inform the user.

```c++
Function definition.
void GuiAddStatusBarMessage(const char* msg);
```
## Parameters
`param1` Parameter description.
`msg` String containing the message to add to the status bar.
## Return Value
Return value description.
This function does not return a value.
## Example
```c++
Example code.
GuiAddStatusBarMessage("This text will be displayed in the statusbar.");
```

## Related functions

- List of related functions
- [GuiAddLogMessage](./GuiAddLogMessage.md)
11 changes: 6 additions & 5 deletions developers/functions/gui/GuiDisplayWarning.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# GuiDisplayWarning

Function description.
Shows a warning dialog with title text and main message text.

```c++
Function definition.
void GuiDisplayWarning(const char* title, const char* text)
```
## Parameters
Expand All @@ -12,14 +12,15 @@ Function definition.
## Return Value
Return value description.
This function does not return a value.
## Example
```c++
Example code.
GuiDisplayWarning("Warning!", "Operation cannot be reversed.");
```

## Related functions

- List of related functions
- [GuiAddLogMessage](./GuiAddLogMessage.md)
- [GuiAddStatusBarMessage](./GuiAddStatusBarMessage.md)

0 comments on commit e0a7370

Please sign in to comment.