| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- #pragma once
- #include <furi.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define RECORD_LOADER "loader"
- typedef struct Loader Loader;
- typedef enum {
- LoaderStatusOk,
- LoaderStatusErrorAppStarted,
- LoaderStatusErrorUnknownApp,
- LoaderStatusErrorInternal,
- } LoaderStatus;
- typedef enum {
- LoaderEventTypeApplicationStarted,
- LoaderEventTypeApplicationStopped
- } LoaderEventType;
- typedef struct {
- LoaderEventType type;
- } LoaderEvent;
- /** Start application
- * @param name - application name
- * @param args - application arguments
- * @retval true on success
- */
- LoaderStatus loader_start(Loader* instance, const char* name, const char* args);
- /** Lock application start
- * @retval true on success
- */
- bool loader_lock(Loader* instance);
- /** Unlock application start */
- void loader_unlock(Loader* instance);
- /** Get loader lock status */
- bool loader_is_locked(Loader* instance);
- /** Show primary loader */
- void loader_show_menu(Loader* instance);
- /** Show primary loader */
- FuriPubSub* loader_get_pubsub(Loader* instance);
- #ifdef __cplusplus
- }
- #endif
|