mirror of
https://github.com/ApacheThunder/GBA-Exploader.git
synced 2025-06-18 11:35:38 -04:00
27 lines
288 B
C
27 lines
288 B
C
|
|
struct ctrl_tbl {
|
|
u8 sign[128];
|
|
u16 mode;
|
|
u8 save_flg[2];
|
|
u32 save_siz[2];
|
|
|
|
char filer[116];
|
|
|
|
u8 sav_nam[2][512];
|
|
u8 path[256];
|
|
};
|
|
|
|
extern struct ctrl_tbl ctrl;
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern void ctrl_get();
|
|
extern void ctrl_set();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|