Lines Matching refs:hResult
635 HRESULT hResult = SHGetDesktopFolder( &pDesktopFolder ); in SHGetIDListFromPath() local
636 if ( FAILED(hResult) ) in SHGetIDListFromPath()
637 return hResult; in SHGetIDListFromPath()
649 …hResult = pDesktopFolder->ParseDisplayName( hwndOwner, (LPBC)NULL, wszPath, &chEaten, ppidl, &dwAt… in SHGetIDListFromPath()
652 return hResult; in SHGetIDListFromPath()
666 HRESULT hResult = SHGetDesktopFolder( &pDesktopFolder ); in SHGetFolderFromIDList() local
667 if ( FAILED(hResult) ) in SHGetFolderFromIDList()
668 return hResult; in SHGetFolderFromIDList()
670 … hResult = pDesktopFolder->BindToObject( pidl, (LPBC)NULL, IID_IShellFolder, (LPVOID *)ppFolder ); in SHGetFolderFromIDList()
673 return hResult; in SHGetFolderFromIDList()
688 HRESULT hResult = NOERROR; in SHResolvePath()
710 while ( SUCCEEDED(hResult) ) in SHResolvePath()
722 hResult = SHGetIDListFromPath( hwndOwner, pszPathCopy, &pidl ); in SHResolvePath()
726 if ( SUCCEEDED(hResult) ) in SHResolvePath()
735 hResult = SHGetFolderFromIDList( pidl, &pFolder); in SHResolvePath()
738 if ( SUCCEEDED(hResult) ) in SHResolvePath()
745 hResult = pFolder->EnumObjects( hwndOwner, in SHResolvePath()
750 if ( SUCCEEDED(hResult) ) in SHResolvePath()
784 return hResult; in SHResolvePath()