diff options
author | red031000 <rubenru09@aol.com> | 2021-03-18 15:19:09 +0000 |
---|---|---|
committer | red031000 <rubenru09@aol.com> | 2021-03-18 15:19:09 +0000 |
commit | 8b699fd13008875cf59601d6a8c9d55bd3f8ae08 (patch) | |
tree | a5c9cb8bc44c13d396ff549a0b2928fd49c2e9cb /include | |
parent | bee5e11870b47027235c63794f20dc4cccaac92e (diff) | |
parent | 941451f6408b8f92f9e7f5f3d6650f1b2ad2293d (diff) |
Merge branch 'master' of https://github.com/pret/pokediamond
Diffstat (limited to 'include')
-rw-r--r-- | include/event_data.h | 2 | ||||
-rw-r--r-- | include/unk_02024E64.h | 28 | ||||
-rw-r--r-- | include/unk_0204AEA8.h | 7 |
3 files changed, 37 insertions, 0 deletions
diff --git a/include/event_data.h b/include/event_data.h index e1d46348..1f0f090a 100644 --- a/include/event_data.h +++ b/include/event_data.h @@ -1,6 +1,8 @@ #ifndef GUARD_SCRIPT_STATE_H #define GUARD_SCRIPT_STATE_H +#include "save_block_2.h" + struct ScriptState { u16 vars[288]; diff --git a/include/unk_02024E64.h b/include/unk_02024E64.h new file mode 100644 index 00000000..ed1bd447 --- /dev/null +++ b/include/unk_02024E64.h @@ -0,0 +1,28 @@ +#ifndef POKEDIAMOND_UNK_02024E64_H +#define POKEDIAMOND_UNK_02024E64_H + +#include "global.h" +#include "MI_memory.h" +#include "save_block_2.h" +#include "string16.h" + +struct UnkStruct_02024E64 { + u8 unk0[0xE][0x80]; + u8 unk700[0x24]; + u16 rival_name_buf[0x8]; + u16 unk734[0xB]; + u8 unk74A[2]; // might be padding +}; + +THUMB_FUNC u32 FUN_02024E64(); +THUMB_FUNC void FUN_02024E6C(struct UnkStruct_02024E64 *param0); +THUMB_FUNC struct UnkStruct_02024E64 *FUN_02024EB4(struct SaveBlock2 *sav2); +THUMB_FUNC void *FUN_02024EC0(struct SaveBlock2 *sav2); +THUMB_FUNC struct UnkStruct_02024E64 *FUN_02024ECC(struct SaveBlock2 *sav2); +THUMB_FUNC void *FUN_02024ED8(struct SaveBlock2 *sav2); +THUMB_FUNC u16 *GetRivalNamePtr(struct UnkStruct_02024E64 *unk); +THUMB_FUNC void RivalsNameToU16Array(struct UnkStruct_02024E64 *unk, struct String *str); +THUMB_FUNC u16 *FUN_02024F0C(struct UnkStruct_02024E64 *unk); +THUMB_FUNC void FUN_02024F18(struct UnkStruct_02024E64 *unk, struct String *str); + +#endif diff --git a/include/unk_0204AEA8.h b/include/unk_0204AEA8.h new file mode 100644 index 00000000..90e13cc2 --- /dev/null +++ b/include/unk_0204AEA8.h @@ -0,0 +1,7 @@ +#ifndef POKEDIAMOND_UNK_0204AEA8_H +#define POKEDIAMOND_UNK_0204AEA8_H + +BOOL FUN_0204AEA8(struct UnkStruct_0204639C *a0); +void FUN_0204AEF8(struct UnkStruct_0204639C *a0, u32 a1, u32 a2); + +#endif |