:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / msvcrt / except / exhand2.c
1 #include <windows.h>
2
3 VOID STDCALL
4 MsvcrtDebug(ULONG Value)
5 {
6   DbgPrint("MsvcrtDebug 0x%.08x\n", Value);
7 }
8
9 EXCEPTION_DISPOSITION
10 _except_handler2(
11 struct _EXCEPTION_RECORD *ExceptionRecord,
12 void *Frame,
13 struct _CONTEXT *ContextRecord,
14 void *DispatcherContext)
15 {
16         printf("_except_handler2()\n");
17 }