marioparty4/include/REL/executor.h
2024-06-26 04:43:05 +02:00

24 lines
379 B
C

#ifndef REL_EXECUTOR_H
#define REL_EXECUTOR_H
#ifdef __cplusplus
extern "C" {
#endif
#include "dolphin/types.h"
extern s32 _prolog();
extern void _epilog();
typedef void (*VoidFunc)(void);
extern const VoidFunc _ctors[];
extern const VoidFunc _dtors[];
extern void ObjectSetup(void);
extern void ModuleEpilog(void);
#ifdef __cplusplus
}
#endif
#endif /* REL_EXECUTOR_H */