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

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

/// @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;
}