Hi Fabian,
On 06/05/18 22:42, Fabian Maurer wrote:
+/*********************************************************************
_crt_at_quick_exit (UCRTBASE.@)
- */
+int CDECL MSVCRT__crt_at_quick_exit(void (*func)(void)) +{
- FIXME("stub: (%p)\n", func);
- return 0;
+}
The func argument should probably use CDECL calling convention (not that it really matters in case of no-arguments function). Also it's probably better to return -1 (error) in stub.
Thanks, Piotr