From a178a2170bb821fbee135c17fc166733caa19bda Mon Sep 17 00:00:00 2001 From: Ray Date: Sun, 30 May 2021 13:34:02 +0200 Subject: [PATCH] Structs tweaks for consistency --- parser/raylib_parser.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/parser/raylib_parser.c b/parser/raylib_parser.c index 59c43885..4655fd14 100644 --- a/parser/raylib_parser.c +++ b/parser/raylib_parser.c @@ -72,11 +72,11 @@ // Function info data typedef struct FunctionInfo { char name[64]; // Function name + char desc[128]; // Function description (comment at the end) char retType[32]; // Return value type int paramCount; // Number of function parameters char paramType[12][32]; // Parameters type (max: 12 parameters) char paramName[12][32]; // Parameters name (max: 12 parameters) - char desc[128]; // Function description (comment at the end) } FunctionInfo; // Struct info data @@ -96,6 +96,7 @@ typedef struct EnumInfo { int valueCount; // Number of values in enumerator char valueName[128][64]; // Value name definition (max: 128 values) int valueInt[128]; // Value integer (max: 128 values) + char valueDesc[128][64]; // Value description (max: 128 values) } EnumInfo; //----------------------------------------------------------------------------------