// ------------------------------------------------------------------------------ // // 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 HexaGen.Runtime; using System.Numerics; namespace Dalamud.Bindings.ImGui { /// /// To be documented. /// [Flags] public enum ImGuiTabBarFlagsPrivate : int { /// /// Part of a dock node [we don't use this in the master branch but it facilitate branch syncing to keep this around]
///
DockNode = unchecked(1048576), /// /// To be documented. /// IsFocused = unchecked(2097152), /// /// FIXME: Settings are handled by the docking system, this only request the tab bar to mark settings dirty when reordering tabs
///
SaveSettings = unchecked(4194304), } }