[PATCH 1/3] msvcrt: Add _crt_at_quick_exit stub

Piotr Caban piotr.caban at gmail.com
Mon Jun 11 15:54:32 CDT 2018


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



More information about the wine-devel mailing list