GuiMessageBox method

int GuiMessageBox(
  1. RectangleC bounds,
  2. Pointer<Char> title,
  3. Pointer<Char> message,
  4. Pointer<Char> buttons,
)

Implementation

int GuiMessageBox(
  RectangleC bounds,
  Pointer<Char> title,
  Pointer<Char> message,
  Pointer<Char> buttons,
) {
  return _GuiMessageBox(bounds, title, message, buttons);
}