diff options
author | Revo <projectrevotpp@hotmail.com> | 2020-09-15 21:18:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-15 21:18:12 -0400 |
commit | 55c1733ceb5a8176a2183fc3872cadb8bb220308 (patch) | |
tree | c7e98cbf7ce49f79fc408d195285f26200462683 /include/darray.h | |
parent | 27f9506eda2852ac4a9e99f1a00222c86afe317d (diff) | |
parent | 319dd22af1f7b3d8ba47cdd67dd18a3bd8e01ed2 (diff) |
Merge pull request #45 from mparisi20/master
Decompile hashtable.o
Diffstat (limited to 'include/darray.h')
-rw-r--r-- | include/darray.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/include/darray.h b/include/darray.h new file mode 100644 index 0000000..f20cb82 --- /dev/null +++ b/include/darray.h @@ -0,0 +1,25 @@ +#ifndef POKEREVO_DARRAY_H
+#define POKEREVO_DARRAY_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+typedef struct DArray {
+ s32 size;
+ s32 unk4;
+ u32 elementSz;
+ s32 unkC;
+ s32 unk10;
+ char *buf;
+} DArray;
+
+void *ArrayNew(s32 p1, s32 p3, s32 p6);
+void *ArrayNth(DArray *p1, s32 p2);
+void *ArrayMapBackwards2(DArray *p1, s32 p2, s32 p3);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif //POKEREVO_DARRAY_H
|