Changeset 8537 for trunk/src


Ignore:
Timestamp:
Jun 1, 2002, 1:07:12 PM (23 years ago)
Author:
sandervl
Message:

IShellFolder_fnCompareIDs shortcut added to improve performance

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/shell32/shlfolder.c

    r8048 r8537  
    899899              if (pidl1 && pidl1->mkid.cb)              /* go deeper? */       
    900900              {
     901#ifdef __WIN32OS2__
     902                //SvL: shortcut for efficiency. might have to remove it
     903                //     in the future if this method is changed
     904                pidl2 = ILGetNext(pidl2);
     905       
     906                nReturn = IShellFolder_CompareIDs(iface, 0, pidl1, pidl2);
     907                hr = ResultFromShort(nReturn);
     908#else
    901909                pidlTemp = ILCloneFirst(pidl1);
    902910                pidl2 = ILGetNext(pidl2);
     
    910918                }
    911919                ILFree(pidlTemp);
     920#endif
    912921              }
    913922              else
Note: See TracChangeset for help on using the changeset viewer.