summaryrefslogtreecommitdiffhomepage
path: root/Public/Developer/System.Core/Sources/LibEntrypoint.cxx
blob: b874ef55d5263d1d4a69b51cd5d9b54cdea26be7 (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 DLL.
/// @return if it was succesful or not.
DWordType __DllMain(VoidType) {
  kApplicationObject = HcGetInstanceObject();
  CA_MUST_PASS(kApplicationObject);

  return 0;
}