summaryrefslogtreecommitdiff
path: root/arm9/lib/NitroSDK/include/FS_mw_dtor.h
blob: a746ed198467aa34d7d8d580e75347993ed28898 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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_