mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:41:12 +00:00
ntdll: Use success return values for stubs.
This commit is contained in:
parent
b21baaeb6e
commit
f6dae487aa
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue