From 85940dae2e636e4ba8270a7beedfe8ae78e552bf Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sun, 26 Aug 2018 19:55:10 -0400 Subject: And FINALLY ported Table. Now to write an example program. --- pkgui.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'pkgui.c') diff --git a/pkgui.c b/pkgui.c index 05fe8cd..35cd442 100644 --- a/pkgui.c +++ b/pkgui.c @@ -238,3 +238,23 @@ const uiTableModelHandler pkguiTableModelHandler = { .CellValue = pkguiDoTableModelCellValue, .SetCellValue = realDoTableModelSetCellValue, }; + +uiTableTextColumnOptionalParams *pkguiAllocTableTextColumnOptionalParams(void) +{ + return (uiTableTextColumnOptionalParams *) pkguiAlloc(sizeof (uiTableTextColumnOptionalParams)); +} + +void pkguiFreeTableTextColumnOptionalParams(uiTableTextColumnOptionalParams *p) +{ + free(p); +} + +uiTableParams *pkguiAllocTableParams(void) +{ + return (uiTableParams *) pkguiAlloc(sizeof (uiTableParams)); +} + +void pkguiFreeTableParams(uiTableParams *p) +{ + free(p); +} -- cgit v1.2.3