branch update for HEAD-2003021201
[reactos.git] / lib / crtdll / except / exhand2.c
1 #include <windows.h>
2 #include <ntos/except.h>
3
4
5 #ifdef __GNUC__
6 #else
7 #endif
8
9 ULONG DbgPrint(PCH Format, ...)
10 {
11     return 0;
12 }
13
14 VOID STDCALL
15 MsvcrtDebug(ULONG Value)
16 {
17     //DbgPrint("MsvcrtDebug 0x%.08x\n", Value);
18 }
19
20
21 EXCEPTION_DISPOSITION
22 _except_handler2(
23     struct _EXCEPTION_RECORD* ExceptionRecord, void* Frame,
24     struct _CONTEXT *ContextRecord,            void* DispatcherContext)
25 {
26     //printf("_except_handler2()\n");
27     return 0;
28 }