Module: wine Branch: master Commit: 3282eda5255cdd4aff7aae8fa277af2ca800c510 URL: https://gitlab.winehq.org/wine/wine/-/commit/3282eda5255cdd4aff7aae8fa277af2...
Author: Alexandre Julliard julliard@winehq.org Date: Wed Feb 28 16:24:37 2024 +0100
win32u: Use the official definitions for exception flags.
---
dlls/win32u/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/win32u/main.c b/dlls/win32u/main.c index e06386da693..ace2c9d0cd3 100644 --- a/dlls/win32u/main.c +++ b/dlls/win32u/main.c @@ -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;