mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
widl: Use the official definitions for exception flags.
This commit is contained in:
parent
b0a7439b30
commit
64b2e44697
1 changed files with 2 additions and 2 deletions
|
@ -5147,9 +5147,9 @@ void write_exceptions( FILE *file )
|
|||
fprintf( file, "{\n");
|
||||
fprintf( file, " struct __exception_frame *exc_frame = (struct __exception_frame *)frame;\n");
|
||||
fprintf( file, "\n");
|
||||
fprintf( file, " if (record->ExceptionFlags & (EH_UNWINDING | EH_EXIT_UNWIND | EH_NESTED_CALL))\n");
|
||||
fprintf( file, " if (record->ExceptionFlags & (EXCEPTION_UNWINDING | EXCEPTION_EXIT_UNWIND | EXCEPTION_NESTED_CALL))\n");
|
||||
fprintf( file, " {\n" );
|
||||
fprintf( file, " if (exc_frame->finally_level && (record->ExceptionFlags & (EH_UNWINDING | EH_EXIT_UNWIND)))\n");
|
||||
fprintf( file, " if (exc_frame->finally_level && (record->ExceptionFlags & (EXCEPTION_UNWINDING | EXCEPTION_EXIT_UNWIND)))\n");
|
||||
fprintf( file, " {\n" );
|
||||
fprintf( file, " exc_frame->abnormal_termination = 1;\n");
|
||||
fprintf( file, " exc_frame->finally( exc_frame );\n");
|
||||
|
|
Loading…
Reference in a new issue