Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
a6d7b6fc
Commit
a6d7b6fc
authored
Mar 11, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Implemented __CppXcptFilter.
parent
863240b7
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
2 deletions
+16
-2
msvcr71.spec
dlls/msvcr71/msvcr71.spec
+1
-1
cppexcept.c
dlls/msvcrt/cppexcept.c
+11
-0
cppexcept.h
dlls/msvcrt/cppexcept.h
+3
-1
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-0
No files found.
dlls/msvcr71/msvcr71.spec
View file @
a6d7b6fc
...
...
@@ -75,7 +75,7 @@
@ extern _HUGE msvcrt._HUGE
@ cdecl _Strftime(str long str ptr ptr) msvcrt._Strftime
@ cdecl _XcptFilter(long ptr) msvcrt._XcptFilter
@
stub
__CppXcptFilter
@
cdecl __CppXcptFilter(long ptr) msvcrt.
__CppXcptFilter
@ stub __CxxCallUnwindDtor
@ stub __CxxCallUnwindVecDtor
@ stub __CxxDetectRethrow
...
...
dlls/msvcrt/cppexcept.c
View file @
a6d7b6fc
...
...
@@ -440,6 +440,17 @@ void __stdcall __CxxLongjmpUnwind( const struct MSVCRT___JUMP_BUFFER *buf )
#endif
/* __i386__ */
/*********************************************************************
* __CppXcptFilter (MSVCRT.@)
*/
int
CDECL
__CppXcptFilter
(
NTSTATUS
ex
,
PEXCEPTION_POINTERS
ptr
)
{
/* only filter c++ exceptions */
if
(
ex
!=
CXX_EXCEPTION
)
return
EXCEPTION_CONTINUE_SEARCH
;
return
_XcptFilter
(
ex
,
ptr
);
}
/*********************************************************************
* _CxxThrowException (MSVCRT.@)
*/
...
...
dlls/msvcrt/cppexcept.h
View file @
a6d7b6fc
...
...
@@ -133,7 +133,9 @@ typedef struct __cxx_exception_type
const
cxx_type_info_table
*
type_info_table
;
/* list of types for this exception object */
}
cxx_exception_type
;
void
_CxxThrowException
(
exception
*
,
const
cxx_exception_type
*
);
void
CDECL
_CxxThrowException
(
exception
*
,
const
cxx_exception_type
*
);
int
CDECL
_XcptFilter
(
NTSTATUS
,
PEXCEPTION_POINTERS
);
int
CDECL
__CppXcptFilter
(
NTSTATUS
,
PEXCEPTION_POINTERS
);
static
inline
const
char
*
dbgstr_type_info
(
const
type_info
*
info
)
{
...
...
dlls/msvcrt/msvcrt.spec
View file @
a6d7b6fc
...
...
@@ -75,6 +75,7 @@
@ extern _HUGE MSVCRT__HUGE
@ cdecl _Strftime(str long str ptr ptr)
@ cdecl _XcptFilter(long ptr)
@ cdecl __CppXcptFilter(long ptr)
@ cdecl __CxxDetectRethrow(ptr)
@ cdecl -i386 -norelay __CxxFrameHandler(ptr ptr ptr ptr)
@ stdcall -i386 __CxxLongjmpUnwind(ptr)
...
...
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