From 58c0f40df5947b3933bf7b6564b2ba5dc39fbd92 Mon Sep 17 00:00:00 2001 From: 3gg <3gg@shellblade.net> Date: Sun, 8 Mar 2026 10:55:28 -0700 Subject: Remove table header --- src/widget/widget.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/widget/widget.h') diff --git a/src/widget/widget.h b/src/widget/widget.h index 38acb9c..63f3d94 100644 --- a/src/widget/widget.h +++ b/src/widget/widget.h @@ -56,6 +56,10 @@ typedef struct uiTable { void DestroyWidget(uiWidget** ppWidget); +const uiCell* GetCell(const uiTable* table, int row, int col); +uiCell* GetCellMut(uiTable* table, int row, int col); +uiCell** GetLastRow(uiTable* table); + #define UI_NEW(TYPE) (TYPE*)uiAlloc(1, sizeof(TYPE)) static inline void* uiAlloc(size_t count, size_t size) { -- cgit v1.2.3