summaryrefslogtreecommitdiff
path: root/include/record_mixing.h
diff options
context:
space:
mode:
authorDiegoisawesome <Diegoisawesome@users.noreply.github.com>2018-05-30 16:51:30 -0700
committerGitHub <noreply@github.com>2018-05-30 16:51:30 -0700
commitdd28854a226753e2da53b35dcf1f67b142b75b77 (patch)
tree61864daf48aad5dfcf697c36e8acac88ce9f4d4c /include/record_mixing.h
parentf6350bc00373dc824a02522b6c6c9e4695534884 (diff)
parent42731e4b88115bada3aed8ebc3b2c3dabecbb020 (diff)
Merge pull request #255 from DizzyEggg/decomp_record_mixing
Fix pika's Record Mixing PR Also closes #107.
Diffstat (limited to 'include/record_mixing.h')
-rw-r--r--include/record_mixing.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/include/record_mixing.h b/include/record_mixing.h
new file mode 100644
index 000000000..3cd4d649e
--- /dev/null
+++ b/include/record_mixing.h
@@ -0,0 +1,35 @@
+#ifndef GUARD_RECORD_MIXING_H
+#define GUARD_RECORD_MIXING_H
+
+// Exported type declarations
+struct UnkRecordMixingStruct2a
+{
+ u8 playerId[4];
+ u16 field_4;
+ u8 playerName[PLAYER_NAME_LENGTH];
+ u8 language;
+};
+
+struct UnkRecordMixingStruct2b
+{
+ u8 playerId1[4];
+ u8 playerId2[4];
+ u16 field_8;
+ u8 playerName1[PLAYER_NAME_LENGTH];
+ u8 playerName2[PLAYER_NAME_LENGTH];
+ u8 language;
+};
+
+struct UnkRecordMixingStruct2
+{
+ struct UnkRecordMixingStruct2a field_0[9][2];
+ struct UnkRecordMixingStruct2b field_120[2];
+};
+
+// Exported RAM declarations
+
+// Exported ROM declarations
+void sub_80E6BE8(void);
+void sub_80E8260(struct UnkRecordMixingStruct2 *arg0);
+
+#endif //GUARD_RECORD_MIXING_H