Changeset 3193 for trunk/src/shell32/shlfolder.cpp
- Timestamp:
- Mar 22, 2000, 5:55:52 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/shell32/shlfolder.cpp
r2358 r3193 1 /* $Id: shlfolder.cpp,v 1. 6 2000-01-08 04:37:01 phallerExp $ */1 /* $Id: shlfolder.cpp,v 1.7 2000-03-22 16:55:52 cbratschi Exp $ */ 2 2 /* 3 3 * Shell Folder stuff … … 177 177 pdump(pidl); 178 178 179 if ((pidlFirst = ILCloneFirst(pidl))) 179 pidlFirst = ILCloneFirst(pidl); 180 if (pidlFirst) 180 181 { 181 182 hr = IShellFolder_BindToObject(psf, pidlFirst, NULL, &IID_IShellFolder, (LPVOID*)&psfChild); … … 562 563 *ppvOut = NULL; 563 564 564 if ((iid=_ILGetGUIDPointer(pidl))) 565 iid = _ILGetGUIDPointer(pidl); 566 if (iid) 565 567 { 566 568 /* we have to create a alien folder */ … … 1317 1319 *ppvOut = NULL; 1318 1320 1319 if ((clsid=_ILGetGUIDPointer(pidl))) 1321 clsid = _ILGetGUIDPointer(pidl); 1322 if (clsid) 1320 1323 { 1321 1324 if ( IsEqualIID(clsid, &IID_MyComputer)) … … 1419 1422 pdump (*apidl); 1420 1423 1421 if ((clsid=_ILGetGUIDPointer(*apidl))) 1424 clsid = _ILGetGUIDPointer(*apidl); 1425 if (clsid) 1422 1426 { 1423 1427 if (IsEqualIID(clsid, &IID_MyComputer)) … … 1871 1875 *rgfInOut &= 0xf0000144; 1872 1876 goto next; 1873 } 1874 else if ((clsid=_ILGetGUIDPointer(*apidl)))1875 {1876 if ( HCR_GetFolderAttributes(clsid, &attributes))1877 } else 1878 { 1879 clsid = _ILGetGUIDPointer(*apidl); 1880 if (clsid) 1877 1881 { 1878 *rgfInOut &= attributes; 1879 goto next; 1882 if (HCR_GetFolderAttributes(clsid, &attributes)) 1883 { 1884 *rgfInOut &= attributes; 1885 goto next; 1886 } 1880 1887 } 1881 1888 }
Note:
See TracChangeset
for help on using the changeset viewer.