mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
23 lines
416 B
C
23 lines
416 B
C
#ifndef M_EAPPLI_H
|
|
#define M_EAPPLI_H
|
|
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern void mEA_InitLetterCardE();
|
|
extern int mEA_CheckLetterCardE(int card_no);
|
|
extern void mEA_SetLetterCardE(int card_no);
|
|
extern void mEA_GetCardDLProgram();
|
|
extern void mEA_CleanCardDLProgram();
|
|
extern u8* mEA_dl_carde_program_p();
|
|
extern size_t mEA_dl_carde_program_size();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|