mirror of
https://github.com/pret/pokediamond.git
synced 2026-08-15 13:35:51 -05:00
17 lines
329 B
C
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_
|