diff options
Diffstat (limited to 'Public/Developer/FragLib/Sources/ImageStart.c')
| -rw-r--r-- | Public/Developer/FragLib/Sources/ImageStart.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Public/Developer/FragLib/Sources/ImageStart.c b/Public/Developer/FragLib/Sources/ImageStart.c new file mode 100644 index 00000000..3fbac042 --- /dev/null +++ b/Public/Developer/FragLib/Sources/ImageStart.c @@ -0,0 +1,22 @@ +/* ------------------------------------------- + + Copyright Mahrouss Logic + +------------------------------------------- */ + +#include <Headers/Defines.h> + +/// @brief Application entrypoint. +/// @param void +/// @return void +CA_EXTERN_C VoidType AppMain(VoidType); + +/// @brief Process entrypoint. +/// @param void +/// @return void +CA_EXTERN_C VoidType __ImageStart(VoidType) { + kSharedApplication = RtGetAppPointer(); + CA_MUST_PASS(kSharedApplication); + + AppMain(); +} |
