Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny Smith <dannysmith@users.sourceforge.net>2007-01-26 11:20:54 +0300
committerDanny Smith <dannysmith@users.sourceforge.net>2007-01-26 11:20:54 +0300
commit2731a97413e8d3d035588da5e74ef8ea9e11fd90 (patch)
treefa5db190b93ec916cee2a6f987dc210802e67348 /winsup/mingw/msvcrt.def.in
parented897cdfa6e105c5c582006314251e418128f089 (diff)
Expose some msvcr80.dll functions.
* include/stdlib.h (_set_abort_behavior): Add prototype. (_WRITE_ABORT_MSG, _CALL_REPORTFAULT): Add defines for _set_abort_behavior mask argument. (_invalid_parameter_handler): Add typedef. (_set_invalid_parameter_handler): Add prototype. * include/stdio.h (_get_printf_count_output): Add prototype. (_set_printf_count_output): Add prototype. * msvcrt.def.in (_get_printf_count_output, _set_printf_count_output, _set_abort_behavior, _set_invalid_parameter_handler): Add stubs.
Diffstat (limited to 'winsup/mingw/msvcrt.def.in')
-rw-r--r--winsup/mingw/msvcrt.def.in12
1 files changed, 9 insertions, 3 deletions
diff --git a/winsup/mingw/msvcrt.def.in b/winsup/mingw/msvcrt.def.in
index ac9a92caf..0d55b469f 100644
--- a/winsup/mingw/msvcrt.def.in
+++ b/winsup/mingw/msvcrt.def.in
@@ -741,7 +741,7 @@ _wfindfirst64
_wfindnext64
_wstat64
_wutime64
-#if ( __msvcr70__ || __msvcr70d__ || __msvcr71__ || __msvcr71d__)
+#if ( __msvcr70__ || __msvcr70d__ || __msvcr71__ || __msvcr71d__ || __msvcr80__ || __msvcr80d__)
; msvcr70.dll amd later
__buffer_overrun
__CxxDetectRethrow
@@ -785,7 +785,7 @@ _wcstoui64
_wctype
_wtof
#endif /* 7.0 */
-#if (__msvcr71__ || __msvcr71d__)
+#if (__msvcr71__ || __msvcr71d__ || __msvcr80__ || __msvcr80d__)
; msvcr71.dll
___lc_codepage_func
___lc_collate_cp_func
@@ -806,4 +806,10 @@ _get_heap_handle
_set_purecall_handler
_set_SSE2_enable
#endif /* 7.1 */
-
+#if ( __msvcr80__ || __msvcr80d__)
+; msvcr80.dll
+_get_printf_count_output
+_set_printf_count_output
+_set_abort_behavior
+_set_invalid_parameter_handler
+#endif /* 8.0 */