mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-14 07:00:08 -05:00
19 lines
270 B
C
19 lines
270 B
C
#ifndef NNSYS_FND_LIST_H_
|
|
#define NNSYS_FND_LIST_H_
|
|
|
|
typedef struct {
|
|
void *prevObject;
|
|
void *nextObject;
|
|
|
|
} NNSFndLink;
|
|
|
|
typedef struct {
|
|
void *headObject;
|
|
void *tailObject;
|
|
u16 numObjects;
|
|
u16 offset;
|
|
|
|
} NNSFndList;
|
|
|
|
#endif //NNSYS_FND_LIST_H_
|