Commit 539b7b41 authored by Eric Kohl's avatar Eric Kohl Committed by Alexandre Julliard

Added stub for _except_handler2().

parent b694b006
......@@ -2191,3 +2191,11 @@ LPSTR __cdecl CRTDLL__strtime (LPSTR date)
{ FIXME("%p stub\n", date);
return 0;
}
/*********************************************************************
* _except_handler2 (CRTDLL.78)
*/
INT __cdecl CRTDLL__except_handler2 (void *a0, void *a1, void *a2, void *a3)
{ FIXME ("%p %p %p %p stub\n", a0, a1, a2, a3);
return 0;
}
......@@ -80,7 +80,7 @@ init CRTDLL_Init
75 extern _environ_dll CRTDLL_environ_dll
76 stub _eof
77 cdecl _errno() CRTDLL__errno
78 stub _except_handler2
78 cdecl _except_handler2(ptr ptr ptr ptr) CRTDLL__except_handler2
79 stub _execl
80 stub _execle
81 stub _execlp
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment