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
cab51a05
Commit
cab51a05
authored
Dec 01, 2010
by
Piotr Caban
Committed by
Alexandre Julliard
Dec 02, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Added _get_terminate implementation.
parent
03d7f527
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
4 deletions
+14
-4
msvcr100.spec
dlls/msvcr100/msvcr100.spec
+1
-1
msvcr80.spec
dlls/msvcr80/msvcr80.spec
+1
-1
msvcr90.spec
dlls/msvcr90/msvcr90.spec
+1
-1
cpp.c
dlls/msvcrt/cpp.c
+10
-0
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
No files found.
dlls/msvcr100/msvcr100.spec
View file @
cab51a05
...
...
@@ -688,7 +688,7 @@
@ stub _get_pgmptr
@ stub _get_printf_count_output
@ stub _get_purecall_handler
@
stub
_get_terminate
@
cdecl _get_terminate() msvcrt.
_get_terminate
@ stub _get_timezone
@ cdecl _get_tzname(ptr str long long) msvcrt._get_tzname
@ stub _get_unexpected
...
...
dlls/msvcr80/msvcr80.spec
View file @
cab51a05
...
...
@@ -533,7 +533,7 @@
@ stub _get_printf_count_output
@ stub _get_purecall_handler
@ cdecl _get_sbh_threshold() msvcrt._get_sbh_threshold
@
stub
_get_terminate
@
cdecl _get_terminate() msvcrt.
_get_terminate
@ stub _get_timezone
@ cdecl _get_tzname(ptr str long long) msvcrt._get_tzname
@ stub _get_unexpected
...
...
dlls/msvcr90/msvcr90.spec
View file @
cab51a05
...
...
@@ -523,7 +523,7 @@
@ stub _get_printf_count_output
@ stub _get_purecall_handler
@ cdecl _get_sbh_threshold() msvcrt._get_sbh_threshold
@
stub
_get_terminate
@
cdecl _get_terminate() msvcrt.
_get_terminate
@ stub _get_timezone
@ cdecl _get_tzname(ptr str long long) msvcrt._get_tzname
@ stub _get_unexpected
...
...
dlls/msvcrt/cpp.c
View file @
cab51a05
...
...
@@ -1026,6 +1026,16 @@ MSVCRT_terminate_function CDECL MSVCRT_set_terminate(MSVCRT_terminate_function f
}
/******************************************************************
* _get_terminate (MSVCRT.@)
*/
MSVCRT_terminate_function
CDECL
MSVCRT__get_terminate
(
void
)
{
thread_data_t
*
data
=
msvcrt_get_thread_data
();
TRACE
(
"returning %p
\n
"
,
data
->
terminate_handler
);
return
data
->
terminate_handler
;
}
/******************************************************************
* ?set_unexpected@@YAP6AXXZP6AXXZ@Z (MSVCRT.@)
*
* Install a handler to be called when unexpected() is called.
...
...
dlls/msvcrt/msvcrt.spec
View file @
cab51a05
...
...
@@ -481,7 +481,7 @@
# stub _get_winminor
# stub _get_winver
# stub _get_wpgmptr
@
stub
_get_terminate
@
cdecl _get_terminate() MSVCRT_
_get_terminate
@ cdecl _get_tzname(ptr str long long) MSVCRT__get_tzname
@ stub _get_unexpected
@ cdecl _getch()
...
...
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