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
7090d747
Commit
7090d747
authored
Sep 12, 2018
by
Piotr Caban
Committed by
Alexandre Julliard
Sep 12, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vcruntime140: Add __uncaught_exceptions implementation.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
c8389ae1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
1 deletion
+9
-1
Makefile.in
dlls/vcruntime140/Makefile.in
+1
-0
misc.c
dlls/vcruntime140/misc.c
+7
-0
vcruntime140.spec
dlls/vcruntime140/vcruntime140.spec
+1
-1
No files found.
dlls/vcruntime140/Makefile.in
View file @
7090d747
MODULE
=
vcruntime140.dll
IMPORTS
=
ucrtbase
C_SRCS
=
\
misc.c
dlls/vcruntime140/misc.c
View file @
7090d747
...
...
@@ -22,6 +22,8 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
vcruntime
);
int
*
CDECL
__processing_throw
(
void
);
/*********************************************************************
* __telemetry_main_invoke_trigger
*/
...
...
@@ -47,3 +49,8 @@ BOOL CDECL __vcrt_InitializeCriticalSectionEx(
TRACE
(
"(%p %x %x)
\n
"
,
cs
,
spin_count
,
flags
);
return
InitializeCriticalSectionEx
(
cs
,
spin_count
,
flags
);
}
int
__cdecl
__uncaught_exceptions
(
void
)
{
return
*
__processing_throw
();
}
dlls/vcruntime140/vcruntime140.spec
View file @
7090d747
...
...
@@ -48,7 +48,7 @@
@ cdecl __unDName(ptr str long ptr ptr long) ucrtbase.__unDName
@ cdecl __unDNameEx(ptr str long ptr ptr ptr long) ucrtbase.__unDNameEx
@ cdecl __uncaught_exception() ucrtbase.__uncaught_exception
@
stub __uncaught_exceptions
@
cdecl __uncaught_exceptions()
@ stub __vcrt_GetModuleFileNameW
@ stub __vcrt_GetModuleHandleW
@ cdecl __vcrt_InitializeCriticalSectionEx(ptr long long)
...
...
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