blob: 31b0d7bdd7737c26bb81eff0622ab704559651ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* -------------------------------------------
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();
}
|