mirror of
https://github.com/x64dbg/x64dbg
synced 2026-08-11 18:23:06 -04:00
27 lines
No EOL
384 B
Markdown
27 lines
No EOL
384 B
Markdown
# GuiScriptError
|
|
|
|
Pop up a message box to alert the user about script error.
|
|
|
|
```c++
|
|
void GuiScriptError(int line, const char* message);
|
|
```
|
|
|
|
## Parameters
|
|
|
|
`line` Line number where the script error occurred.
|
|
|
|
`message` The error message.
|
|
|
|
## Return Value
|
|
|
|
This function does not return a value.
|
|
|
|
## Example
|
|
|
|
```c++
|
|
Example code.
|
|
```
|
|
|
|
## Related functions
|
|
|
|
- List of related functions |