Home | History | Annotate | Download | only in Windows

Lines Matching refs:itemIDList

36 CItemIDList::(LPCITEMIDLIST itemIDList): m_Object(NULL)

37 { *this = itemIDList; }
38 CItemIDList::(const CItemIDList& itemIDList): m_Object(NULL)
39 { *this = itemIDList; }
121 bool GetPathFromIDList(LPCITEMIDLIST itemIDList, CSysString &path)
123 bool result = BOOLToBool(::SHGetPathFromIDList(itemIDList, path.GetBuffer(MAX_PATH * 2)));
165 LPITEMIDLIST itemIDList = ::SHBrowseForFolder(browseInfo);
166 if (itemIDList == NULL)
169 itemIDListHolder.Attach(itemIDList);
170 return GetPathFromIDList(itemIDList, resultPath);
240 bool GetPathFromIDList(LPCITEMIDLIST itemIDList, UString &path)
247 bool result = BOOLToBool(shGetPathFromIDListW(itemIDList, path.GetBuffer(MAX_PATH * 2)));
261 LPITEMIDLIST itemIDList = shBrowseForFolderW(browseInfo);
262 if (itemIDList == NULL)
265 itemIDListHolder.Attach(itemIDList);
266 return GetPathFromIDList(itemIDList, resultPath);