mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-24 03:29:57 -07:00
27 lines
497 B
C
27 lines
497 B
C
#pragma once
|
|
|
|
#include <furi.h>
|
|
#include <gui/scene_manager.h>
|
|
#include <gui/view_dispatcher.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
bool process_favorite_launch(char** p);
|
|
|
|
typedef struct {
|
|
ViewDispatcher* view_dispatcher;
|
|
SceneManager* scene_manager;
|
|
} FavoriteTImeoutCtx;
|
|
|
|
void favorite_timeout_callback(void* _ctx);
|
|
|
|
void favorite_timeout_run(ViewDispatcher* view_dispatcher, SceneManager* scene_manager);
|
|
|
|
void run_with_default_app(const char* path);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|