diff options
Diffstat (limited to 'arm9/lib/include/NNS_FND_list.h')
-rw-r--r-- | arm9/lib/include/NNS_FND_list.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/arm9/lib/include/NNS_FND_list.h b/arm9/lib/include/NNS_FND_list.h deleted file mode 100644 index 5df01e5f..00000000 --- a/arm9/lib/include/NNS_FND_list.h +++ /dev/null @@ -1,20 +0,0 @@ -#ifndef GUARD_NNS_FND_LIST_H
-#define GUARD_NNS_FND_LIST_H
-
-typedef struct
-{
- void* prevObject; // Pointer to the previous linked object.
- void* nextObject; // Pointer to the next linked object.
-
-} NNSFndLink;
-
-typedef struct
-{
- void* headObject; // Pointer for the object linked to the top of the list.
- void* tailObject; // Pointer for the object linked to the end of the list.
- u16 numObjects; // Number of objects linked in the list.
- u16 offset; // Offset for NNSFndLink type structure member.
-
-} NNSFndList;
-
-#endif //GUARD_NNS_FND_LIST_H
|