Skip to content

MTY_ShowMessageBox

chrisd1100 edited this page Aug 25, 2022 · 2 revisions

Show a simple message box with a title and formatted string.

Warning: Be careful with your format string, if it is incorrect this function will have undefined behavior.

void MTY_ShowMessageBox(
    const char * title,
    const char * fmt,
    ...)         MTY_FMT(2,
    3
);

Parameters

title (const char *)

Title of the message box.

fmt (const char *)

Format string for the body of the message box.

MTY_FMT(2 (...))

3

Platform support

Windows   macOS  

See also

Module: Dialog

Clone this wiki locally