mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-25 03:29:58 -07:00
25 lines
451 B
C
25 lines
451 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);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|