faultrep: Enable compilation with long types.

Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Eric Pouech 2022-02-10 08:42:25 +01:00 committed by Alexandre Julliard
parent e3213978d3
commit 9173eeaa86
2 changed files with 1 additions and 2 deletions

View File

@ -1,4 +1,3 @@
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = faultrep.dll
IMPORTLIB = faultrep
IMPORTS = advapi32

View File

@ -100,6 +100,6 @@ BOOL WINAPI AddERExcludedApplicationA(LPCSTR lpAppFileName)
*/
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;
}