CI: Fix testing for Windows DLL builds + fix broken DLL build. (#3603, #3601)

This commit is contained in:
Borislav Stanimirov
2020-11-18 22:05:52 +02:00
committed by ocornut
parent 2e64ee050d
commit fcc2b71724
3 changed files with 13 additions and 11 deletions

View File

@ -1127,8 +1127,8 @@ struct IMGUI_API ImGuiStackSizes
short SizeOfBeginPopupStack;
ImGuiStackSizes() { memset(this, 0, sizeof(*this)); }
IMGUI_API void SetToCurrentState();
IMGUI_API void CompareWithCurrentState();
void SetToCurrentState();
void CompareWithCurrentState();
};
//-----------------------------------------------------------------------------