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

win32u: Use the official definitions for exception flags.

This commit is contained in:
Alexandre Julliard 2024-02-28 16:24:37 +01:00
parent 8739aef4ff
commit 3282eda525

View file

@ -2187,7 +2187,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;