ntdll: Use success return values for stubs.

This commit is contained in:
William Panlener 2012-02-15 20:52:23 -06:00 committed by Alexandre Julliard
parent b21baaeb6e
commit f6dae487aa

View file

@ -2511,7 +2511,7 @@ void signal_init_process(void)
BOOLEAN CDECL RtlAddFunctionTable( RUNTIME_FUNCTION *table, DWORD count, DWORD64 addr )
{
FIXME( "%p %u %lx: stub\n", table, count, addr );
return FALSE;
return TRUE;
}
@ -2521,7 +2521,7 @@ BOOLEAN CDECL RtlAddFunctionTable( RUNTIME_FUNCTION *table, DWORD count, DWORD64
BOOLEAN CDECL RtlDeleteFunctionTable( RUNTIME_FUNCTION *table )
{
FIXME( "%p: stub\n", table );
return FALSE;
return TRUE;
}