uiMsgBox

Function uiMsgBox 

Source
pub unsafe extern "C" fn uiMsgBox(
    parent: *mut uiWindow,
    title: *const c_char,
    description: *const c_char,
)
Expand description

Message box dialog window.

A message box displayed in a new window indicating a common message.

@param parent Parent window. @param title Dialog window title text.\n A valid, NUL terminated UTF-8 string.\n Data is copied internally. Ownership is not transferred. @param description Dialog message text.\n A valid, NUL terminated UTF-8 string.\n Data is copied internally. Ownership is not transferred. @ingroup dialogWindow