mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-18 01:14:19 +00:00
Added missing IMGUI_API to internal docking-related structs. (#3850)
This commit is contained in:
parent
839ecce571
commit
732cd837a9
1 changed files with 2 additions and 2 deletions
|
|
@ -1212,7 +1212,7 @@ enum ImGuiDockNodeState
|
|||
};
|
||||
|
||||
// sizeof() 116~160
|
||||
struct ImGuiDockNode
|
||||
struct IMGUI_API ImGuiDockNode
|
||||
{
|
||||
ImGuiID ID;
|
||||
ImGuiDockNodeFlags SharedFlags; // Flags shared by all nodes of a same dockspace hierarchy (inherited from the root node)
|
||||
|
|
@ -2106,7 +2106,7 @@ struct ImGuiTabItem
|
|||
};
|
||||
|
||||
// Storage for a tab bar (sizeof() 152 bytes)
|
||||
struct ImGuiTabBar
|
||||
struct IMGUI_API ImGuiTabBar
|
||||
{
|
||||
ImVector<ImGuiTabItem> Tabs;
|
||||
ImGuiTabBarFlags Flags;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue