// ------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // // ------------------------------------------------------------------------------ using System; using System.Diagnostics; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using HexaGen.Runtime; using System.Numerics; namespace Dalamud.Bindings.ImGui { /// /// To be documented. /// [StructLayout(LayoutKind.Sequential)] public partial struct STBTexteditState { /// /// To be documented. /// public int Cursor; /// /// To be documented. /// public int SelectStart; /// /// To be documented. /// public int SelectEnd; /// /// To be documented. /// public byte InsertMode; /// /// To be documented. /// public int RowCountPerPage; /// /// To be documented. /// public byte CursorAtEndOfLine; /// /// To be documented. /// public byte Initialized; /// /// To be documented. /// public byte HasPreferredX; /// /// To be documented. /// public byte SingleLine; /// /// To be documented. /// public byte Padding1; /// /// To be documented. /// public byte Padding2; /// /// To be documented. /// public byte Padding3; /// /// To be documented. /// public float PreferredX; /// /// To be documented. /// public StbUndoState Undostate; /// /// To be documented. /// public unsafe STBTexteditState(int cursor = default, int selectStart = default, int selectEnd = default, byte insertMode = default, int rowCountPerPage = default, byte cursorAtEndOfLine = default, byte initialized = default, byte hasPreferredX = default, byte singleLine = default, byte padding1 = default, byte padding2 = default, byte padding3 = default, float preferredX = default, StbUndoState undostate = default) { Cursor = cursor; SelectStart = selectStart; SelectEnd = selectEnd; InsertMode = insertMode; RowCountPerPage = rowCountPerPage; CursorAtEndOfLine = cursorAtEndOfLine; Initialized = initialized; HasPreferredX = hasPreferredX; SingleLine = singleLine; Padding1 = padding1; Padding2 = padding2; Padding3 = padding3; PreferredX = preferredX; Undostate = undostate; } } }