Ignore:
Timestamp:
Mar 22, 2000, 5:55:52 PM (25 years ago)
Author:
cbratschi
Message:

* empty log message *

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 phaller Exp $ */
     1/* $Id: shlfolder.cpp,v 1.7 2000-03-22 16:55:52 cbratschi Exp $ */
    22/*
    33 * Shell Folder stuff
     
    177177   pdump(pidl);
    178178
    179    if ((pidlFirst = ILCloneFirst(pidl)))
     179   pidlFirst = ILCloneFirst(pidl);
     180   if (pidlFirst)
    180181   {
    181182     hr = IShellFolder_BindToObject(psf, pidlFirst, NULL, &IID_IShellFolder, (LPVOID*)&psfChild);
     
    562563   *ppvOut = NULL;
    563564
    564    if ((iid=_ILGetGUIDPointer(pidl)))
     565   iid = _ILGetGUIDPointer(pidl);
     566   if (iid)
    565567   {
    566568     /* we have to create a alien folder */
     
    13171319   *ppvOut = NULL;
    13181320
    1319    if ((clsid=_ILGetGUIDPointer(pidl)))
     1321   clsid = _ILGetGUIDPointer(pidl);
     1322   if (clsid)
    13201323   {
    13211324     if ( IsEqualIID(clsid, &IID_MyComputer))
     
    14191422     pdump (*apidl);
    14201423
    1421      if ((clsid=_ILGetGUIDPointer(*apidl)))
     1424     clsid = _ILGetGUIDPointer(*apidl);
     1425     if (clsid)
    14221426     {
    14231427       if (IsEqualIID(clsid, &IID_MyComputer))
     
    18711875       *rgfInOut &= 0xf0000144;
    18721876       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)
    18771881       {
    1878          *rgfInOut &= attributes;
    1879          goto next;
     1882         if (HCR_GetFolderAttributes(clsid, &attributes))
     1883         {
     1884           *rgfInOut &= attributes;
     1885           goto next;
     1886         }
    18801887       }
    18811888     }
Note: See TracChangeset for help on using the changeset viewer.