Structs tweaks for consistency
This commit is contained in:
parent
3c1c13b660
commit
a178a2170b
1 changed files with 2 additions and 1 deletions
|
@ -72,11 +72,11 @@
|
||||||
// Function info data
|
// Function info data
|
||||||
typedef struct FunctionInfo {
|
typedef struct FunctionInfo {
|
||||||
char name[64]; // Function name
|
char name[64]; // Function name
|
||||||
|
char desc[128]; // Function description (comment at the end)
|
||||||
char retType[32]; // Return value type
|
char retType[32]; // Return value type
|
||||||
int paramCount; // Number of function parameters
|
int paramCount; // Number of function parameters
|
||||||
char paramType[12][32]; // Parameters type (max: 12 parameters)
|
char paramType[12][32]; // Parameters type (max: 12 parameters)
|
||||||
char paramName[12][32]; // Parameters name (max: 12 parameters)
|
char paramName[12][32]; // Parameters name (max: 12 parameters)
|
||||||
char desc[128]; // Function description (comment at the end)
|
|
||||||
} FunctionInfo;
|
} FunctionInfo;
|
||||||
|
|
||||||
// Struct info data
|
// Struct info data
|
||||||
|
@ -96,6 +96,7 @@ typedef struct EnumInfo {
|
||||||
int valueCount; // Number of values in enumerator
|
int valueCount; // Number of values in enumerator
|
||||||
char valueName[128][64]; // Value name definition (max: 128 values)
|
char valueName[128][64]; // Value name definition (max: 128 values)
|
||||||
int valueInt[128]; // Value integer (max: 128 values)
|
int valueInt[128]; // Value integer (max: 128 values)
|
||||||
|
char valueDesc[128][64]; // Value description (max: 128 values)
|
||||||
} EnumInfo;
|
} EnumInfo;
|
||||||
|
|
||||||
//----------------------------------------------------------------------------------
|
//----------------------------------------------------------------------------------
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue