Change return code from ExitWindowsEx() (and with that related
ExitWindows* functions) from FALSE to TRUE.
This commit is contained in:
parent
485390de6f
commit
d68477711b
|
@ -330,7 +330,7 @@ BOOL WINAPI ExitWindowsEx( UINT flags, DWORD reserved )
|
|||
HeapFree( GetProcessHeap(), 0, list );
|
||||
|
||||
if (result) ExitKernel16();
|
||||
return FALSE;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
|
|
Loading…
Reference in New Issue