diff -r b943e3d618f0 -r 150a1180f7ec ui/common/wrapper.h --- a/ui/common/wrapper.h Thu Oct 02 14:49:17 2025 +0200 +++ b/ui/common/wrapper.h Thu Oct 02 14:49:27 2025 +0200 @@ -89,6 +89,11 @@ UIEXPORT void ui_textstyle_set_color(UiTextStyle *style, int r, int g, int b); UIEXPORT void ui_textstyle_enable_color(UiTextStyle *style, UiBool enable); +UIEXPORT UiBool ui_cell_value_is_string(UiCellValue *value); +UIEXPORT UiBool ui_cell_value_is_int(UiCellValue *value); +UIEXPORT const char* ui_cell_value_get_string(UiCellValue *value); +UIEXPORT int64_t ui_cell_value_get_int(UiCellValue *value); + #ifdef __cplusplus }