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 */
|
||||
Loading…
Add table
Add a link
Reference in a new issue