mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 15:20:58 -04:00
25 lines
608 B
C
25 lines
608 B
C
#include <common.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct MsbtInfo;
|
|
|
|
struct MsbtAttrInfo {
|
|
char c_0x00;
|
|
char c_0x01;
|
|
};
|
|
|
|
struct MsbtInfo *LMS_InitMessage(void *data);
|
|
void LMS_CloseMessage(struct MsbtInfo *info);
|
|
int LMS_GetTextIndexByLabel(struct MsbtInfo *info, const char *label);
|
|
const char *LMS_GetText(struct MsbtInfo *info, int index);
|
|
const char *LMS_GetTextByLabel(struct MsbtInfo *info, const char *label);
|
|
const char *LMS_GetLabelByTextIndex(struct MsbtInfo *info, int index);
|
|
struct MsbtAttrInfo *LMS_GetAttribute(struct MsbtInfo *info, int index);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|