From 7186cb8a4161764b8b51a4917cb9040a53f42142 Mon Sep 17 00:00:00 2001 From: Max Date: Wed, 16 Sep 2020 13:27:01 -0400 Subject: ArrayNew, Free, Length, Nth and Append. Labeling and updates to heaaders --- include/hashtable.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/hashtable.h') diff --git a/include/hashtable.h b/include/hashtable.h index 0502273..b4c0ad5 100644 --- a/include/hashtable.h +++ b/include/hashtable.h @@ -18,8 +18,8 @@ typedef struct HashTable { s32 unk10; // comparison callback? } HashTable; -HashTable *TableNew(s32 p1, s32 p2, HashFunction hf, s32 p4, s32 p5); -HashTable *TableNew2(s32 p1, s32 size, s32 p3, HashFunction hf, s32 p5, s32 p6); +HashTable *TableNew(u32 p1, s32 p2, HashFunction hf, s32 p4, s32 p5); +HashTable *TableNew2(u32 p1, s32 size, s32 p3, HashFunction hf, s32 p5, s32 p6); void TableFree(HashTable *table); s32 TableCount(HashTable *table); void TableEnter(HashTable *table, void *elem); -- cgit v1.2.3