GuiTextInputBox function

int GuiTextInputBox(
  1. RectangleC bounds,
  2. Pointer<Char> title,
  3. Pointer<Char> message,
  4. Pointer<Char> text,
  5. int textSize,
  6. Pointer<Char> btnText,
  7. Pointer<Int> btnActive,
  8. Pointer<Bool> secretViewActive,
)

Implementation

int GuiTextInputBox(
  RectangleC bounds,
  Pointer<Char> title,
  Pointer<Char> message,
  Pointer<Char> text,
  int textSize,
  Pointer<Char> btnText,
  Pointer<Int> btnActive,
  Pointer<Bool> secretViewActive,
) => _module.GuiTextInputBox(bounds, title, message, text, textSize, btnText, btnActive, secretViewActive);