summaryrefslogtreecommitdiff
path: root/arm9/lib/include/NNS_FND_heapcommon.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm9/lib/include/NNS_FND_heapcommon.h')
-rw-r--r--arm9/lib/include/NNS_FND_heapcommon.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/arm9/lib/include/NNS_FND_heapcommon.h b/arm9/lib/include/NNS_FND_heapcommon.h
deleted file mode 100644
index eb6f1bdb..00000000
--- a/arm9/lib/include/NNS_FND_heapcommon.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef GUARD_NNS_FND_HEAPCOMMON_H
-#define GUARD_NNS_FND_HEAPCOMMON_H
-
-#include "NNS_FND_list.h"
-
-#define NNS_FND_HEAP_DEFAULT_ALIGNMENT 4
-
-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