ucrtbase: Add _crt_at_quick_exit stub.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45295 Signed-off-by: Fabian Maurer <dark.shadow4@web.de> Signed-off-by: Piotr Caban <piotr@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
1bc84577ff
commit
a63c8cab27
|
@ -28,7 +28,7 @@
|
|||
@ cdecl _control87(long long) ucrtbase._control87
|
||||
@ cdecl _controlfp(long long) ucrtbase._controlfp
|
||||
@ cdecl _controlfp_s(ptr long long) ucrtbase._controlfp_s
|
||||
@ stub _crt_at_quick_exit
|
||||
@ cdecl _crt_at_quick_exit(ptr) ucrtbase._crt_at_quick_exit
|
||||
@ cdecl _crt_atexit(ptr) ucrtbase._crt_atexit
|
||||
@ cdecl _crt_debugger_hook(long) ucrtbase._crt_debugger_hook
|
||||
@ cdecl _endthread() ucrtbase._endthread
|
||||
|
|
|
@ -405,6 +405,15 @@ int CDECL MSVCRT_atexit(void (__cdecl *func)(void))
|
|||
|
||||
#if _MSVCR_VER>=140
|
||||
|
||||
/*********************************************************************
|
||||
* _crt_at_quick_exit (UCRTBASE.@)
|
||||
*/
|
||||
int CDECL MSVCRT__crt_at_quick_exit(void (__cdecl *func)(void))
|
||||
{
|
||||
FIXME("(%p) stub\n", func);
|
||||
return -1;
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* _crt_atexit (UCRTBASE.@)
|
||||
*/
|
||||
|
|
|
@ -240,7 +240,7 @@
|
|||
@ cdecl _cputws(wstr)
|
||||
@ cdecl _creat(str long) MSVCRT__creat
|
||||
@ cdecl _create_locale(long str) MSVCRT__create_locale
|
||||
@ stub _crt_at_quick_exit
|
||||
@ cdecl _crt_at_quick_exit(ptr) MSVCRT__crt_at_quick_exit
|
||||
@ cdecl _crt_atexit(ptr) MSVCRT__crt_atexit
|
||||
@ cdecl _crt_debugger_hook(long) MSVCRT__crt_debugger_hook
|
||||
@ cdecl _ctime32(ptr) MSVCRT__ctime32
|
||||
|
|
Loading…
Reference in New Issue