Ignore:
Timestamp:
Jul 28, 2003, 1:35:32 PM (22 years ago)
Author:
sandervl
Message:

Updates

File:
1 edited

Legend:

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

    r9094 r10185  
    1 /* $Id: enumidlist.c,v 1.6 2002-08-22 14:20:44 sandervl Exp $ */
     1/* $Id: enumidlist.c,v 1.7 2003-07-28 11:28:56 sandervl Exp $ */
    22/*
    33 *      IEnumIDList
     
    202202              for (x = 0;x < count;x++)
    203203              {
     204                if ( !(dwFlags & SHCONTF_INCLUDEHIDDEN) && (stffile[x].dwFileAttributes & FILE_ATTRIBUTE_HIDDEN) ) continue;
     205
    204206                if (stffile[x].dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
    205207                { //directory
     
    247249              for (x = 0;x < count;x++)
    248250              {
     251                if ( !(dwFlags & SHCONTF_INCLUDEHIDDEN) && (stffile[x].dwFileAttributes & FILE_ATTRIBUTE_HIDDEN) ) continue;
     252
    249253                if (! (stffile[x].dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) )
    250254                {
Note: See TracChangeset for help on using the changeset viewer.