diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2020-06-15 08:55:45 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2020-06-15 08:55:45 -0400 |
commit | c2f8c12c6f92c2e43e117c9a156ebe58120e0a80 (patch) | |
tree | 7d6a7d45ec5ee5d4eb111c50bbb344f6a6c3e2fd /include | |
parent | 62e926d5217f1f4cd8efd610e7d38374535836e1 (diff) |
Finish pokemon.c
Diffstat (limited to 'include')
-rw-r--r-- | include/proto.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/proto.h b/include/proto.h index 8c35cca5..24ddff07 100644 --- a/include/proto.h +++ b/include/proto.h @@ -7,6 +7,15 @@ struct UnkStruct_02069038; struct PlayerParty; struct BoxPokemon; +struct SaveBlock2; +struct String +{ + u16 len; + u16 pos; + u32 magic; + u16 unk8; + u16 data[0]; +}; u16 * FUN_0200AA50(u16 species, u32 heap_id); void FUN_02021A74(u16 * dest, u16 * src); @@ -23,4 +32,11 @@ void FUN_02005E90(int, int, int, int); void FUN_020056AC(int, int, int, int, int); void FUN_020808AC(struct BoxPokemon *, int, int, int, int); +struct String * FUN_020239A0(struct SaveBlock2 *, u32 heap_id); +u32 FUN_020239BC(struct SaveBlock2 *); +u32 FUN_020239CC(struct SaveBlock2 *); +struct String * FUN_020219F4(u32 count, u32 heap_id); +int FUN_02021CE0(struct String *, struct String *); +int FUN_0206AE00(int x); + #endif //POKEDIAMOND_PROTO_H |