diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2021-05-30 08:54:50 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2021-05-30 08:54:50 -0400 |
commit | 9da7dd90041b785cb156069ccdf96996d9a162e2 (patch) | |
tree | 1b0aac0a4dc4569b09735c03a1b6c3af97118c37 /arm9/lib/include/NNS_FND_heapcommon.h | |
parent | af472505c60f7a0463e8195e9039af4806b9d42b (diff) |
Refactor heap.c using NNS types, 1
Diffstat (limited to 'arm9/lib/include/NNS_FND_heapcommon.h')
-rw-r--r-- | arm9/lib/include/NNS_FND_heapcommon.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/arm9/lib/include/NNS_FND_heapcommon.h b/arm9/lib/include/NNS_FND_heapcommon.h new file mode 100644 index 00000000..6008e7e8 --- /dev/null +++ b/arm9/lib/include/NNS_FND_heapcommon.h @@ -0,0 +1,24 @@ +#ifndef GUARD_NNS_FND_HEAPCOMMON_H
+#define GUARD_NNS_FND_HEAPCOMMON_H
+
+#include "NNS_FND_list.h"
+
+typedef struct NNSiFndHeapHead NNSiFndHeapHead;
+
+struct NNSiFndHeapHead
+{
+ u32 signature;
+
+ NNSFndLink link;
+ NNSFndList childList;
+
+ void* heapStart; // Heap start address
+ void* heapEnd; // Heap end (+1) address
+
+ u32 attribute; // Attribute
+ // [8:Option flag]
+};
+
+typedef NNSiFndHeapHead* NNSFndHeapHandle; // Type to represent heap handle
+
+#endif //GUARD_NNS_FND_HEAPCOMMON_H
|