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