branch update for HEAD-2003021201
[reactos.git] / lib / crtdll / except / exhand2.c
index be66fb4..875b5da 100644 (file)
@@ -1,11 +1,28 @@
 #include <windows.h>
+#include <ntos/except.h>
+
+
+#ifdef __GNUC__
+#else
+#endif
+
+ULONG DbgPrint(PCH Format, ...)
+{
+    return 0;
+}
+
+VOID STDCALL
+MsvcrtDebug(ULONG Value)
+{
+    //DbgPrint("MsvcrtDebug 0x%.08x\n", Value);
+}
+
 
 EXCEPTION_DISPOSITION
 _except_handler2(
-struct _EXCEPTION_RECORD *ExceptionRecord,
-void *Frame,
-struct _CONTEXT *ContextRecord,
-void *DispatcherContext)
+    struct _EXCEPTION_RECORD* ExceptionRecord, void* Frame,
+    struct _CONTEXT *ContextRecord,            void* DispatcherContext)
 {
-       printf("exception handler\n");
+    //printf("_except_handler2()\n");
+    return 0;
 }