Change return code from ExitWindowsEx() (and with that related

ExitWindows* functions) from FALSE to TRUE.
This commit is contained in:
Rein Klazes 2004-02-05 01:24:48 +00:00 committed by Alexandre Julliard
parent 485390de6f
commit d68477711b
1 changed files with 1 additions and 1 deletions

View File

@ -330,7 +330,7 @@ BOOL WINAPI ExitWindowsEx( UINT flags, DWORD reserved )
HeapFree( GetProcessHeap(), 0, list );
if (result) ExitKernel16();
return FALSE;
return TRUE;
}
/***********************************************************************