TactilityC improvements for tt_app_ functions (#192)

- Renamed `tt_app_context_*` to tt_app_*`
- Renamed `AppContextHandle` to `AppHandle`
- Created `tt_app_start()` and `tt_app_start_with_bundle()`
This commit is contained in:
Ken Van Hoeylandt
2025-01-26 00:48:37 +01:00
committed by GitHub
parent f9e1f737fd
commit fa54eaa58a
10 changed files with 72 additions and 58 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
extern "C" {
lv_obj_t* tt_lvgl_toolbar_create(lv_obj_t* parent, AppContextHandle context) {
lv_obj_t* tt_lvgl_toolbar_create(lv_obj_t* parent, AppHandle context) {
return tt::lvgl::toolbar_create(parent, *(tt::app::AppContext*)context);
}