You've already forked marioparty4
mirror of
https://github.com/encounter/marioparty4.git
synced 2026-03-30 11:29:35 -07:00
25 lines
379 B
C
25 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 */
|