diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/darray.h | 1 | ||||
-rw-r--r-- | include/hashtable.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/include/darray.h b/include/darray.h index 09c9db8..a5fff87 100644 --- a/include/darray.h +++ b/include/darray.h @@ -17,6 +17,7 @@ typedef struct unkStruct2 { void *ArrayNth(unkStruct2 *p1, s32 p2);
+void *ArrayMapBackwards2(unkStruct2 *p1, s32 p2, s32 p3);
#ifdef __cplusplus
}
diff --git a/include/hashtable.h b/include/hashtable.h index f2a9f22..93d27cd 100644 --- a/include/hashtable.h +++ b/include/hashtable.h @@ -27,7 +27,7 @@ void TableEnter(unkStruct *p1, void *p2); BOOL TableRemove(unkStruct *p1, void *p2);
void *TableLookup(unkStruct *p1, void *p2);
void TableMapSafe(unkStruct *p1, s32 p2, s32 p3);
-void TableMapSafe2(unkStruct *p1, s32 p2, s32 p3);
+void *TableMapSafe2(unkStruct *p1, s32 p2, s32 p3);
#ifdef __cplusplus
}
|