mirror of
https://github.com/mist-devel/mist-firmware.git
synced 2026-01-13 15:17:43 +00:00
17 lines
451 B
C
17 lines
451 B
C
#ifndef MENU_MINIMIG_H
|
|
#define MENU_MINIMIG_H
|
|
|
|
// UI strings, used by boot messages
|
|
extern const char *config_filter_msg[];
|
|
extern const char *config_memory_chip_msg[];
|
|
extern const char *config_memory_slow_msg[];
|
|
extern const char *config_memory_fast_msg[];
|
|
extern const char *config_scanline_msg[];
|
|
extern const char *config_hdf_msg[];
|
|
extern const char *config_chipset_msg[];
|
|
const char *config_memory_fast_txt();
|
|
|
|
void SetupMinimigMenu();
|
|
|
|
#endif
|