Initial commit
This commit is contained in:
commit
c8c516e548
222 changed files with 38483 additions and 0 deletions
22
include/REL/executor.h
Normal file
22
include/REL/executor.h
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
#ifndef REL_EXECUTOR_H
|
||||
#define REL_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 ModuleProlog(void);
|
||||
extern void ModuleEpilog(void);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* REL_EXECUTOR_H */
|
||||
Loading…
Add table
Add a link
Reference in a new issue