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