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