From 732cd837a9ed8ecb2ce4035e7d40a1c9a04ae240 Mon Sep 17 00:00:00 2001 From: David Maas Date: Sat, 27 Feb 2021 14:15:38 -0600 Subject: [PATCH] Added missing IMGUI_API to internal docking-related structs. (#3850) --- imgui_internal.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/imgui_internal.h b/imgui_internal.h index 92173ef08238..5fae5ef70760 100644 --- a/imgui_internal.h +++ b/imgui_internal.h @@ -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 Tabs; ImGuiTabBarFlags Flags;