implemented service registry (#8)

+ implemented app and service context for data sharing
This commit is contained in:
Ken Van Hoeylandt
2024-01-06 20:37:41 +01:00
committed by GitHub
parent 051b1548ec
commit 83e226f696
25 changed files with 282 additions and 101 deletions
+1 -3
View File
@@ -9,11 +9,9 @@ extern "C" {
typedef struct {
const AppManifest* manifest;
void* ep_thread_args;
Context context;
} App;
const char* furi_app_type_to_string(AppType type);
FuriThread* furi_app_alloc_thread(App* _Nonnull app, const char* args);
App* furi_app_alloc(const AppManifest* _Nonnull manifest);
void furi_app_free(App* _Nonnull app);