Files
pokediamond/arm9/lib/include/FS_mw_dtor.h
2020-05-06 18:14:26 -04:00

17 lines
329 B
C

#ifndef NITRO_FS_MW_DTOR_H_
#define NITRO_FS_MW_DTOR_H_
typedef void (*MWI_DESTRUCTOR_FUNC) (void *);
typedef struct MWiDestructorChain
{
struct MWiDestructorChain *next;
MWI_DESTRUCTOR_FUNC dtor;
void *obj;
}
MWiDestructorChain;
extern MWiDestructorChain *__global_destructor_chain;
#endif //NITRO_FS_MW_DTOR_H_