Skip to content

Commit

Permalink
Added missing IMGUI_API to internal docking-related structs. (#3850)
Browse files Browse the repository at this point in the history
  • Loading branch information
PathogenDavid committed Feb 27, 2021
1 parent 839ecce commit 732cd83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions imgui_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 732cd83

Please sign in to comment.