Commit a63c8cab authored by Fabian Maurer's avatar Fabian Maurer Committed by Alexandre Julliard

ucrtbase: Add _crt_at_quick_exit stub.

parent 1bc84577
......@@ -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
......
......@@ -406,6 +406,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.@)
*/
int CDECL MSVCRT__crt_atexit(void (__cdecl *func)(void))
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment