From a4294e4a94189dffb1fdf99c9a60d87d77272926 Mon Sep 17 00:00:00 2001 From: 3gg <3gg@shellblade.net> Date: Sat, 13 Jul 2024 10:52:24 -0700 Subject: Restructure project. --- src/widget/table.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/widget/table.h (limited to 'src/widget/table.h') diff --git a/src/widget/table.h b/src/widget/table.h new file mode 100644 index 0000000..9f466de --- /dev/null +++ b/src/widget/table.h @@ -0,0 +1,11 @@ +#pragma once + +#include + +#include "widget.h" + +const uiCell* GetCell(const uiTable* table, int row, int col); + +uiCell* GetCellMut(uiTable* table, int row, int col); + +uiCell** GetLastRow(uiTable* table); -- cgit v1.2.3