Fixed for LuaJIT C definition parser

The parser was indicating there was an error because "struct" was missing
This commit is contained in:
Brandon Haffen
2018-02-02 07:30:45 -08:00
committed by Stephan Dilly
parent b0cc7a2275
commit 90f62f1fc9

View File

@@ -361,7 +361,7 @@ struct ImGuiStyle
struct ImVec2 WindowPadding; struct ImVec2 WindowPadding;
float WindowRounding; float WindowRounding;
float WindowBorderSize; float WindowBorderSize;
ImVec2 WindowMinSize; struct ImVec2 WindowMinSize;
struct ImVec2 WindowTitleAlign; struct ImVec2 WindowTitleAlign;
float ChildRounding; float ChildRounding;
float ChildBorderSize; float ChildBorderSize;
@@ -447,7 +447,7 @@ struct ImGuiIO
bool MouseDownOwned[5]; bool MouseDownOwned[5];
float MouseDownDuration[5]; float MouseDownDuration[5];
float MouseDownDurationPrev[5]; float MouseDownDurationPrev[5];
ImVec2 MouseDragMaxDistanceAbs[5]; struct ImVec2 MouseDragMaxDistanceAbs[5];
float MouseDragMaxDistanceSqr[5]; float MouseDragMaxDistanceSqr[5];
float KeysDownDuration[512]; float KeysDownDuration[512];
float KeysDownDurationPrev[512]; float KeysDownDurationPrev[512];