Commit c9a78f7e authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

shell32: Return boolean values.

parent 1d493395
......@@ -218,9 +218,9 @@ BOOL WINAPI ILRemoveLastID(LPITEMIDLIST pidl)
TRACE_(shell)("pidl=%p\n",pidl);
if (!pidl || !pidl->mkid.cb)
return 0;
return FALSE;
ILFindLastID(pidl)->mkid.cb = 0;
return 1;
return TRUE;
}
/*************************************************************************
......@@ -1674,7 +1674,7 @@ BOOL _ILIsDesktop(LPCITEMIDLIST pidl)
{
TRACE("(%p)\n",pidl);
return pidl && pidl->mkid.cb ? 0 : 1;
return pidl && pidl->mkid.cb ? FALSE : TRUE;
}
BOOL _ILIsMyComputer(LPCITEMIDLIST pidl)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment