From 87c180bda9ea693e6a8a164e025739ff21d1374a Mon Sep 17 00:00:00 2001 From: Tenari Date: Wed, 1 Jul 2026 07:21:23 -0500 Subject: [PATCH] add some table column types --- all.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/all.h b/all.h index 79bf064..878b149 100644 --- a/all.h +++ b/all.h @@ -376,8 +376,10 @@ typedef enum FieldType { FieldTypeU8, FieldTypeU16, FieldTypeU32, + FieldTypeTime, FieldTypeFloat, FieldTypeString, + FieldTypeStringChunkList, FieldTypeEnum, FieldType_Count, } FieldType; @@ -395,6 +397,7 @@ typedef struct TableDrawInfo { u32 y_offset; u32 rows; u32 cols; + u32 sizeof_row; } TableDrawInfo; typedef struct Box {