1
0
mirror of https://github.com/mist-devel/mist-firmware.git synced 2026-01-13 15:17:43 +00:00
Gyorgy Szombathelyi 30d6d40cc6 Restructured menu engine
- Common code for scrolling and paging
- Separate menu data from the menu engine
- Dialog box functions
- 6k less flash space
2021-12-07 19:52:15 +01:00

20 lines
323 B
C

/*
* arc_file.h
* Open/parse .arc (Arcade) files
*
*/
#ifndef ARC_FILE_H
#define ARC_FILE_H
char arc_open(const char *fname);
void arc_reset();
char *arc_get_rbfname();
char *arc_get_corename();
char *arc_get_dirname();
char *arc_get_vhdname();
char *arc_get_conf();
uint64_t arc_get_default();
#endif // ARC_FILE_H