mirror of
https://github.com/mist-devel/mist-firmware.git
synced 2026-01-13 07:09:44 +00:00
- Common code for scrolling and paging - Separate menu data from the menu engine - Dialog box functions - 6k less flash space
20 lines
323 B
C
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
|