--- a/ui/common/wrapper.c Thu Jun 26 18:42:20 2025 +0200 +++ b/ui/common/wrapper.c Thu Jun 26 22:01:44 2025 +0200 @@ -43,6 +43,20 @@ } +/* ---------------------------- UiList ---------------------------- */ + +void* ui_list_get_data(UiList *list) { + return list->data; +} + +void* ui_list_get_iter(UiList *list) { + return list->iter; +} + +void ui_list_set_iter(UiList *list, void *iter) { + list->iter = iter; +} + /* ---------------------------- UiEvent ---------------------------- */ UiObject* ui_event_get_obj(UiEvent *event) {