[PATCH 1/2] ntdll: Add RtlAddGrowableFunctionTable stub

Nikolay Sivov bunglehead at gmail.com
Thu Jan 25 02:15:37 CST 2018


On 1/25/2018 10:13 AM, Alex Henrie wrote:
>  
>  
> +/*************************************************************************
> + *              RtlAddGrowableFunctionTable   (NTDLL.@)
> + */
> +DWORD WINAPI RtlAddGrowableFunctionTable( void **table, RUNTIME_FUNCTION *functions, DWORD count, DWORD max_count,
> +                                          ULONG_PTR base, ULONG_PTR end )
> +{
> +    FIXME( "(%p, %p, %d, %d, %ld, %ld) stub!\n", table, functions, count, max_count, base, end );
> +    if (table) *table = NULL;
> +    return S_OK;
> +}
> +

In 10.0.15063.0 SDK it's defined in two headers apparently, one of them
uses NTSTATUS, it probably makes sense to use that too. In any case S_OK
looks inappropriate.



More information about the wine-devel mailing list