[CRT]
[reactos.git] / reactos / lib / sdk / crt / startup / mscmain.c
index 11454db..cffeb0a 100644 (file)
@@ -6,6 +6,19 @@
 
 #include <windows.h>
 #include <stdlib.h>
+#include <stdio.h>
+#include <stdarg.h>
+#include <rtcapi.h>
+#include <assert.h>
+#include <internal.h>
+
+#if defined(_M_IX86)
+#pragma comment(linker, "/alternatename:__RTC_Initialize=__RTC_NoInitialize")
+#elif defined(_M_IA64) || defined(_M_AMD64) || defined(_M_ARM)
+#pragma comment(linker, "/alternatename:_RTC_Initialize=_RTC_NoInitialize")
+#else
+#error Unsupported platform
+#endif
 
 void _pei386_runtime_relocator(void)
 {
@@ -17,23 +30,46 @@ int __mingw_init_ehandler(void)
     return 1;
 }
 
-void
-__do_global_dtors(void)
+BOOL
+WINAPI
+_CRT_INIT0(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpReserved)
 {
+    return TRUE;
+}
 
+int
+__cdecl
+Catch_RTC_Failure(
+    int errType,
+    const wchar_t *file,
+    int line,
+    const wchar_t *module,
+    const wchar_t *format,
+    ...)
+{
+    /* FIXME: better failure routine */
+    __debugbreak();
+    return 0;
 }
 
+extern
 void
-__do_global_ctors(void)
+__cdecl
+_RTC_NoInitialize(void)
 {
-
+    /* Do nothing, if RunTmChk.lib is not pulled in */
 }
 
-BOOL
-WINAPI
-_CRT_INIT0(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpReserved)
+_RTC_error_fnW
+__cdecl
+_CRT_RTC_INITW(
+    void *_Res0,
+    void **_Res1,
+    int _Res2,
+    int _Res3,
+    int _Res4)
 {
-    return TRUE;
+    return &Catch_RTC_Failure;
 }
 
 static int initialized = 0;
@@ -44,7 +80,8 @@ __main(void)
     if (!initialized)
     {
         initialized = 1;
-        __do_global_ctors ();
+
+        _RTC_Initialize();
     }
 }