Skip to content

Commit

Permalink
Reviewed #4323
Browse files Browse the repository at this point in the history
  • Loading branch information
raysan5 committed Sep 17, 2024
1 parent 627e76c commit c2bd184
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions parser/raylib_parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
#define MAX_CALLBACKS_TO_PARSE 64 // Maximum number of callbacks to parse
#define MAX_FUNCS_TO_PARSE 1024 // Maximum number of functions to parse

#define MAX_LINE_LENGTH 512 // Maximum length of one line (including comments)
#define MAX_LINE_LENGTH 1024 // Maximum length of one line (including comments)

#define MAX_STRUCT_FIELDS 64 // Maximum number of struct fields
#define MAX_ENUM_VALUES 512 // Maximum number of enum values
Expand Down Expand Up @@ -139,7 +139,7 @@ typedef struct EnumInfo {
// Function info data
typedef struct FunctionInfo {
char name[64]; // Function name
char desc[256]; // Function description (comment at the end)
char desc[512]; // Function description (comment at the end)
char retType[32]; // Return value type
int paramCount; // Number of function parameters
char paramType[MAX_FUNCTION_PARAMETERS][32]; // Parameters type
Expand Down

0 comments on commit c2bd184

Please sign in to comment.