GuiTextInputBox method

int GuiTextInputBox(
  1. RectangleC bounds,
  2. Pointer<Char> title,
  3. Pointer<Char> message,
  4. Pointer<Char> buttons,
  5. Pointer<Char> text,
  6. int textMaxSize,
  7. Pointer<Bool> secretViewActive,
)

Implementation

int GuiTextInputBox(
  RectangleC bounds,
  Pointer<Char> title,
  Pointer<Char> message,
  Pointer<Char> buttons,
  Pointer<Char> text,
  int textMaxSize,
  Pointer<Bool> secretViewActive,
) {
  return _GuiTextInputBox(
    bounds,
    title,
    message,
    buttons,
    text,
    textMaxSize,
    secretViewActive,
  );
}