mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-25 03:29:58 -07:00
19 lines
340 B
C
19 lines
340 B
C
#pragma once
|
|
#include <furi.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define MAINMENU_APPS_PATH INT_PATH(".mainmenu_apps.txt")
|
|
|
|
typedef struct LoaderMenu LoaderMenu;
|
|
|
|
LoaderMenu* loader_menu_alloc(void (*closed_cb)(void*), void* context, bool settings_only);
|
|
|
|
void loader_menu_free(LoaderMenu* loader_menu);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|