Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
d527ca33
Commit
d527ca33
authored
Oct 22, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
widl: Fix the prototype of generated exception filters.
parent
9d9ae93a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
typegen.c
tools/widl/typegen.c
+2
-2
No files found.
tools/widl/typegen.c
View file @
d527ca33
...
...
@@ -4063,7 +4063,7 @@ void write_exceptions( FILE *file )
fprintf
(
file
,
"#undef RpcAbnormalTermination
\n
"
);
fprintf
(
file
,
"
\n
"
);
fprintf
(
file
,
"struct __exception_frame;
\n
"
);
fprintf
(
file
,
"typedef int (*__filter_func)(
EXCEPTION_RECORD *,
struct __exception_frame *);
\n
"
);
fprintf
(
file
,
"typedef int (*__filter_func)(struct __exception_frame *);
\n
"
);
fprintf
(
file
,
"typedef void (*__finally_func)(struct __exception_frame *);
\n
"
);
fprintf
(
file
,
"
\n
"
);
fprintf
(
file
,
"#define __DECL_EXCEPTION_FRAME
\\\n
"
);
...
...
@@ -4110,7 +4110,7 @@ void write_exceptions( FILE *file )
fprintf
(
file
,
" return ExceptionContinueSearch;
\n
"
);
fprintf
(
file
,
" }
\n
"
);
fprintf
(
file
,
" exc_frame->code = record->ExceptionCode;
\n
"
);
fprintf
(
file
,
" if (exc_frame->filter_level && exc_frame->filter(
record,
exc_frame ) == EXCEPTION_EXECUTE_HANDLER)
\n
"
);
fprintf
(
file
,
" if (exc_frame->filter_level && exc_frame->filter( exc_frame ) == EXCEPTION_EXECUTE_HANDLER)
\n
"
);
fprintf
(
file
,
" __wine_rtl_unwind( frame, record, __widl_unwind_target );
\n
"
);
fprintf
(
file
,
" return ExceptionContinueSearch;
\n
"
);
fprintf
(
file
,
"}
\n
"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment