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
a5031391
Commit
a5031391
authored
Mar 16, 2017
by
Piotr Caban
Committed by
Alexandre Julliard
Mar 16, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcr: Add __crtUnhandledException implementation.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2f9941e2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
2 deletions
+12
-2
msvcr110.spec
dlls/msvcr110/msvcr110.spec
+1
-1
msvcr120.spec
dlls/msvcr120/msvcr120.spec
+1
-1
misc.c
dlls/msvcrt/misc.c
+10
-0
No files found.
dlls/msvcr110/msvcr110.spec
View file @
a5031391
...
...
@@ -930,7 +930,7 @@
@ stub -arch=i386,win64 __crtSetThreadStackGuarantee
@ cdecl __crtSetUnhandledExceptionFilter(ptr) MSVCR110__crtSetUnhandledExceptionFilter
@ cdecl -arch=i386,win64 __crtTerminateProcess(long) MSVCR110__crtTerminateProcess
@
stub -arch=i386,win64
__crtUnhandledException
@
cdecl -arch=i386,win64 __crtUnhandledException(ptr) MSVCRT
__crtUnhandledException
@ cdecl __daylight() MSVCRT___p__daylight
@ cdecl __dllonexit(ptr ptr ptr)
@ cdecl __doserrno() MSVCRT___doserrno
...
...
dlls/msvcr120/msvcr120.spec
View file @
a5031391
...
...
@@ -920,7 +920,7 @@
@ cdecl __crtSetUnhandledExceptionFilter(ptr) MSVCR110__crtSetUnhandledExceptionFilter
@ cdecl -arch=i386,win64 __crtTerminateProcess(long) MSVCR110__crtTerminateProcess
@ stub __crtSleep
@
stub -arch=i386,win64
__crtUnhandledException
@
cdecl -arch=i386,win64 __crtUnhandledException(ptr) MSVCRT
__crtUnhandledException
@ cdecl __daylight() MSVCRT___p__daylight
@ cdecl __dllonexit(ptr ptr ptr)
@ cdecl __doserrno() MSVCRT___doserrno
...
...
dlls/msvcrt/misc.c
View file @
a5031391
...
...
@@ -532,3 +532,13 @@ void CDECL MSVCRT__crt_debugger_hook(int reserved)
{
WARN
(
"(%x)
\n
"
,
reserved
);
}
/*********************************************************************
* __crtUnhandledException (MSVCR110.@)
*/
LONG
CDECL
MSVCRT__crtUnhandledException
(
EXCEPTION_POINTERS
*
ep
)
{
TRACE
(
"(%p)
\n
"
,
ep
);
SetUnhandledExceptionFilter
(
NULL
);
return
UnhandledExceptionFilter
(
ep
);
}
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