sub_8121478

This commit is contained in:
PikalaxALT
2017-10-12 15:59:43 -04:00
parent 8914645231
commit 8d31a46c6f
6 changed files with 143 additions and 160 deletions

View File

@@ -30,7 +30,8 @@ enum
void InitEasyChatPhrases(void);
void easy_chat_input_maybe(void);
void CopyEasyChatWord(u8 *, u16);
void CopyEasyChatWord(u8 *dest, u16 word);
void ConvertEasyChatWordsToString(u8 *dest, const u16 *src, u16 length1, u16 length2);
bool32 sub_811F8D8(u16);
#endif // GUARD_EASYCHAT_H

12
include/mail_data.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef GUARD_MAIL_DATA_H
#define GUARD_MAIL_DATA_H
// Exported type declarations
// Exported RAM declarations
// Exported ROM declarations
u16 sub_80D45E8(u16, u16 *);
#endif //GUARD_MAIL_DATA_H

View File

@@ -2,7 +2,7 @@
#define GUARD_MALLOC_H
#define malloc Alloc
#define calloc AllocZeroed
#define calloc(ct, sz) AllocZeroed((ct) * (sz))
#define free Free
extern u8 gHeap[];