add some table column types

This commit is contained in:
Tenari
2026-07-01 07:21:23 -05:00
parent 7fe75ec768
commit 87c180bda9
+3
View File
@@ -376,8 +376,10 @@ typedef enum FieldType {
FieldTypeU8, FieldTypeU8,
FieldTypeU16, FieldTypeU16,
FieldTypeU32, FieldTypeU32,
FieldTypeTime,
FieldTypeFloat, FieldTypeFloat,
FieldTypeString, FieldTypeString,
FieldTypeStringChunkList,
FieldTypeEnum, FieldTypeEnum,
FieldType_Count, FieldType_Count,
} FieldType; } FieldType;
@@ -395,6 +397,7 @@ typedef struct TableDrawInfo {
u32 y_offset; u32 y_offset;
u32 rows; u32 rows;
u32 cols; u32 cols;
u32 sizeof_row;
} TableDrawInfo; } TableDrawInfo;
typedef struct Box { typedef struct Box {