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