Regenerate bindings

This commit is contained in:
goaaats 2025-07-20 01:23:58 +02:00
parent 6078c42963
commit e559ae6b20
310 changed files with 361033 additions and 717041 deletions

View file

@ -17,7 +17,7 @@ using System.Numerics;
namespace Dalamud.Bindings.ImGui
{
/// <summary>
/// sizeof() ~ 592 bytes + heap allocs described in TableBeginInitMemory()<br/>
/// To be documented.
/// </summary>
[StructLayout(LayoutKind.Sequential)]
public partial struct ImGuiTable
@ -142,16 +142,7 @@ namespace Dalamud.Bindings.ImGui
/// </summary>
public float RowIndentOffsetX;
/// <summary>
/// To be documented.
/// </summary>
public ImGuiTableRowFlags RowFlags;
/// <summary>
/// To be documented.
/// </summary>
public ImGuiTableRowFlags LastRowFlags;
public ImGuiTableRowFlags RawBits0;
/// <summary>
/// To be documented.
/// </summary>
@ -775,6 +766,10 @@ namespace Dalamud.Bindings.ImGui
}
public ImGuiTableRowFlags RowFlags { get => Bitfield.Get(RawBits0, 0, 16); set => Bitfield.Set(ref RawBits0, value, 0, 16); }
public ImGuiTableRowFlags LastRowFlags { get => Bitfield.Get(RawBits0, 16, 16); set => Bitfield.Set(ref RawBits0, value, 16, 16); }
}
/// <summary>
@ -917,11 +912,11 @@ namespace Dalamud.Bindings.ImGui
/// <summary>
/// To be documented.
/// </summary>
public ref ImGuiTableRowFlags RowFlags => ref Unsafe.AsRef<ImGuiTableRowFlags>(&Handle->RowFlags);
public ImGuiTableRowFlags RowFlags { get => Handle->RowFlags; set => Handle->RowFlags = value; }
/// <summary>
/// To be documented.
/// </summary>
public ref ImGuiTableRowFlags LastRowFlags => ref Unsafe.AsRef<ImGuiTableRowFlags>(&Handle->LastRowFlags);
public ImGuiTableRowFlags LastRowFlags { get => Handle->LastRowFlags; set => Handle->LastRowFlags = value; }
/// <summary>
/// To be documented.
/// </summary>