Commit 127fd82a authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

faultrep: Add stub for ReportFault.

parent 47032fd0
...@@ -102,6 +102,15 @@ BOOL WINAPI AddERExcludedApplicationA(LPCSTR lpAppFileName) ...@@ -102,6 +102,15 @@ BOOL WINAPI AddERExcludedApplicationA(LPCSTR lpAppFileName)
return ret; return ret;
} }
/*************************************************************************
* ReportFault [FAULTREP.@]
*/
EFaultRepRetVal WINAPI ReportFault(LPEXCEPTION_POINTERS pep, DWORD dwOpt)
{
FIXME("%p 0x%x stub\n", pep, dwOpt);
return frrvOk;
}
/*********************************************************************** /***********************************************************************
* DllMain. * DllMain.
*/ */
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
@ stub CreateMinidumpW @ stub CreateMinidumpW
@ stub ReportEREvent @ stub ReportEREvent
@ stub ReportEREventDW @ stub ReportEREventDW
@ stub ReportFault @ stdcall ReportFault(ptr long)
@ stub ReportFaultDWM @ stub ReportFaultDWM
@ stub ReportFaultFromQueue @ stub ReportFaultFromQueue
@ stub ReportFaultToQueue @ stub ReportFaultToQueue
......
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