CVS: winex/dlls/faultrep faultrep.spec, 1.1, 1.2 faultrep_main.c, 1.1, 1.2
[email protected] 27 Apr 2007 13:04:50 -0000
Newsgroups
gmane.comp.emulators.winex.cvs
Message-ID
<[email protected] >
Subject: winex/dlls/faultrep faultrep.spec,1.1,1.2 faultrep_main.c,1.1,1.2Update of /var/lib/cvsd/cvsroot/winex/dlls/faultrep
In directory agravaine:/tmp/cvs-serv30433/dlls/faultrep
Modified Files:
faultrep.spec faultrep_main.c
Log Message:
Expanded stub for faultrep.dll's ReportFault(), along with necessary include file.
Index: faultrep.spec
===================================================================
RCS file: /var/lib/cvsd/cvsroot/winex/dlls/faultrep/faultrep.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- faultrep.spec 19 Mar 2007 00:01:01 -0000 1.1
+++ faultrep.spec 27 Apr 2007 13:04:48 -0000 1.2
@@ -2,4 +2,7 @@
type win32
-@ stub ReportFault
+@ stdcall ReportFault(ptr long)
+@ stub AddERExcludedApplicationA
+@ stub AddERExcludedApplicationW
+
Index: faultrep_main.c
===================================================================
RCS file: /var/lib/cvsd/cvsroot/winex/dlls/faultrep/faultrep_main.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- faultrep_main.c 19 Mar 2007 00:01:01 -0000 1.1
+++ faultrep_main.c 27 Apr 2007 13:04:48 -0000 1.2
@@ -1 +1,18 @@
-/* nothing here yet */
+/* Copyright 2007 TransGaming Technologies Inc. */
+
+#include "winbase.h"
+#include "wine/debug.h"
+#include "errorrep.h"
+
+WINE_DEFAULT_DEBUG_CHANNEL(faultrep);
+
+EFaultRepRetVal WINAPI ReportFault(LPEXCEPTION_POINTERS pep, DWORD dwMode)
+{
+ TRACE("pep: %p, dwMode: %lx\n", pep, dwMode);
+
+ FIXME("stub\n");
+ SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
+
+ return frrvOk;
+}
+