25 Jan
2018
25 Jan
'18
2:15 a.m.
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.