1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

wow64: Use the official definitions for exception flags.

This commit is contained in:
Alexandre Julliard 2024-02-28 16:25:11 +01:00
parent 8605708e02
commit 18543523e8

View file

@ -127,7 +127,7 @@ void __cdecl __wine_spec_unimplemented_stub( const char *module, const char *fun
EXCEPTION_RECORD record;
record.ExceptionCode = EXCEPTION_WINE_STUB;
record.ExceptionFlags = EH_NONCONTINUABLE;
record.ExceptionFlags = EXCEPTION_NONCONTINUABLE;
record.ExceptionRecord = NULL;
record.ExceptionAddress = __wine_spec_unimplemented_stub;
record.NumberParameters = 2;
@ -1410,7 +1410,7 @@ NTSTATUS WINAPI Wow64RaiseException( int code, EXCEPTION_RECORD *rec )
break;
case 0x29: /* __fastfail */
int_rec.ExceptionCode = STATUS_STACK_BUFFER_OVERRUN;
int_rec.ExceptionFlags = EH_NONCONTINUABLE;
int_rec.ExceptionFlags = EXCEPTION_NONCONTINUABLE;
int_rec.NumberParameters = 1;
int_rec.ExceptionInformation[0] = ctx32.i386.Ecx;
first_chance = FALSE;