mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-25 03:29:58 -07:00
15 lines
251 B
C
15 lines
251 B
C
#pragma once
|
|
|
|
#include <gui/icon.h>
|
|
#include <m-list.h>
|
|
|
|
typedef struct {
|
|
const char* label;
|
|
const Icon* icon;
|
|
const char* exe;
|
|
} MenuApp;
|
|
|
|
LIST_DEF(MenuAppList, MenuApp, M_POD_OPLIST)
|
|
|
|
MenuAppList_t* loader_get_menu_apps(Loader* loader);
|