Commit 9173eeaa authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

faultrep: Enable compilation with long types.

parent e3213978
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = faultrep.dll MODULE = faultrep.dll
IMPORTLIB = faultrep IMPORTLIB = faultrep
IMPORTS = advapi32 IMPORTS = advapi32
......
...@@ -100,6 +100,6 @@ BOOL WINAPI AddERExcludedApplicationA(LPCSTR lpAppFileName) ...@@ -100,6 +100,6 @@ BOOL WINAPI AddERExcludedApplicationA(LPCSTR lpAppFileName)
*/ */
EFaultRepRetVal WINAPI ReportFault(LPEXCEPTION_POINTERS pep, DWORD dwOpt) EFaultRepRetVal WINAPI ReportFault(LPEXCEPTION_POINTERS pep, DWORD dwOpt)
{ {
FIXME("%p 0x%x stub\n", pep, dwOpt); FIXME("%p 0x%lx stub\n", pep, dwOpt);
return frrvOk; return frrvOk;
} }
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