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
1986dcc6
Commit
1986dcc6
authored
Oct 11, 2022
by
Paul Gofman
Committed by
Alexandre Julliard
Oct 12, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp140: Import __ExceptionPtrToBool implementation.
parent
23dd3b27
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
msvcp140.spec
dlls/msvcp140/msvcp140.spec
+2
-2
exception.c
dlls/msvcp90/exception.c
+9
-0
No files found.
dlls/msvcp140/msvcp140.spec
View file @
1986dcc6
...
...
@@ -1707,8 +1707,8 @@
@ cdecl -arch=win64 ?__ExceptionPtrRethrow@@YAXPEBX@Z(ptr) __ExceptionPtrRethrow
@ stub -arch=win32 ?__ExceptionPtrSwap@@YAXPAX0@Z
@ stub -arch=win64 ?__ExceptionPtrSwap@@YAXPEAX0@Z
@ cdecl -arch=win32 ?__ExceptionPtrToBool@@YA_NPBX@Z(ptr)
msvcr120.?__ExceptionPtrToBool@@YA_NPBX@Z
@ cdecl -arch=win64 ?__ExceptionPtrToBool@@YA_NPEBX@Z(ptr)
msvcr120.?__ExceptionPtrToBool@@YA_NPEBX@Z
@ cdecl -arch=win32 ?__ExceptionPtrToBool@@YA_NPBX@Z(ptr)
__ExceptionPtrToBool
@ cdecl -arch=win64 ?__ExceptionPtrToBool@@YA_NPEBX@Z(ptr)
__ExceptionPtrToBool
@ cdecl -arch=arm ?always_noconv@codecvt_base@std@@QBA_NXZ(ptr) codecvt_base_always_noconv
@ thiscall -arch=i386 ?always_noconv@codecvt_base@std@@QBE_NXZ(ptr) codecvt_base_always_noconv
@ cdecl -arch=win64 ?always_noconv@codecvt_base@std@@QEBA_NXZ(ptr) codecvt_base_always_noconv
...
...
dlls/msvcp90/exception.c
View file @
1986dcc6
...
...
@@ -1216,6 +1216,15 @@ void __cdecl __ExceptionPtrCurrentException(exception_ptr *ep)
return
;
}
#endif
/*********************************************************************
* ?__ExceptionPtrToBool@@YA_NPBX@Z
* ?__ExceptionPtrToBool@@YA_NPEBX@Z
*/
bool
__cdecl
__ExceptionPtrToBool
(
exception_ptr
*
ep
)
{
return
!!
ep
->
rec
;
}
#endif
#if _MSVCP_VER >= 70 || defined(_MSVCIRT)
...
...
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