mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-10 21:08:16 -05:00
13 lines
377 B
C
13 lines
377 B
C
#ifndef POKEHEARTGOLD_PHONEBOOK_DAT_H
|
|
#define POKEHEARTGOLD_PHONEBOOK_DAT_H
|
|
|
|
#include "heap.h"
|
|
|
|
struct PhoneBook *AllocAndReadPhoneBook(HeapID heapId);
|
|
void FreePhoneBook(struct PhoneBook *phoneBook);
|
|
u8 LoadPhoneBookEntryI(u16 idx, struct PhoneBookEntry *dest, HeapID heapId);
|
|
int GetPhoneMessageGmm(int idx);
|
|
BOOL sub_02095FF8(int x);
|
|
|
|
#endif //POKEHEARTGOLD_PHONEBOOK_DAT_H
|