11 Jun
2018
11 Jun
'18
9:02 p.m.
Hi, On 06/05/18 22:42, Fabian Maurer wrote:
+/********************************************************************* + * quick_exit (MSVCRT.@) + */ +void CDECL MSVCRT_quick_exit(int exitcode) +{ + FIXME("partial stub: (%d)\n", exitcode); + MSVCRT__exit(exitcode); +} quick_exit function should not call exit. I'm attaching a test that shows that atexit callbacks should not be called.
Thanks, Piotr