int MessagePopup (char title[], char message[]);
Displays a message in a dialog box and waits for the user to select the OK button.
Input | ||
Name | Type | Description |
title | string | Title of the dialog box. |
message | string | Message to display in the dialog box. To display a multi-line message, embed newline characters (\n) in the message string. |
Name | Type | Description | ||||
status | integer | Return value indicating whether the function was successful. A negative number indicates that an error occurred.
|