Split first 3 boards
Also introduce board executor file. Renamed w10dll splits.
This commit is contained in:
parent
45f0930c6c
commit
0a62d3a3d7
17 changed files with 199 additions and 34 deletions
24
include/REL/board_executor.h
Normal file
24
include/REL/board_executor.h
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
#ifndef REL_BOARD_EXECUTOR_H
|
||||
#define REL_BOARD_EXECUTOR_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
extern int _prolog();
|
||||
extern void _epilog();
|
||||
|
||||
typedef void (*VoidFunc)(void);
|
||||
extern const VoidFunc _ctors[];
|
||||
extern const VoidFunc _dtors[];
|
||||
|
||||
extern void BoardCommonInit(VoidFunc init, VoidFunc destroy);
|
||||
|
||||
extern void BoardInit(void);
|
||||
extern void BoardDestroy(void);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* REL_BOARD_EXECUTOR_H */
|
||||
|
|
@ -69,7 +69,7 @@ f32 BoardModelRotYGet(s32);
|
|||
void BoardModelLayerSet(s16, s32);
|
||||
void BoardTutorialHostSet(s16);
|
||||
s32 BoardModelIDGet(s16);
|
||||
void BoardInit(void*, void*);
|
||||
void BoardCommonInit(void*, void*);
|
||||
void BoardModelScaleSetV(s32, Vec*);
|
||||
void BoardLightHookSet(void*, void*);
|
||||
s16 BoardModelCreate(s32, void*, s32);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue