summaryrefslogtreecommitdiffhomepage
path: root/Public/Developer/System.Core/Sources/Start.c
blob: 25a29e189c3fadf9432690bfe805824dce94fe72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** ===========================================
 (C) Mahrouss Logic
    ===========================================*/

#include <System.Core/Headers/Heap.h>

/// @brief Inits the library.
/// @return if it was succesful or not.
CA_EXTERN_C DWordType __start(VoidType) {
  kApplicationObject = RtGetAppObject();
  CA_MUST_PASS(kApplicationObject);

  return 0;
}