diff --git a/Windows.Shell/ShellObjects/ShellFolder.cs b/Windows.Shell/ShellObjects/ShellFolder.cs index 61a8e878..dbf7eae7 100644 --- a/Windows.Shell/ShellObjects/ShellFolder.cs +++ b/Windows.Shell/ShellObjects/ShellFolder.cs @@ -18,37 +18,37 @@ namespace Vanara.Windows.Shell public enum FolderItemFilter { /// Include items that are folders in the enumeration. - Folders = 0x00020, + Folders = SHCONTF.SHCONTF_FOLDERS, /// Include items that are not folders in the enumeration. - NonFolders = 0x00040, + NonFolders = SHCONTF.SHCONTF_NONFOLDERS, /// Include hidden items in the enumeration. This does not include hidden system items. (To include hidden system items, use IncludeSuperHidden.) - IncludeHidden = 0x00080, + IncludeHidden = SHCONTF.SHCONTF_INCLUDEHIDDEN, /// The calling application is looking for printer objects. - Printers = 0x00200, + Printers = SHCONTF.SHCONTF_NETPRINTERSRCH, /// The calling application is looking for resources that can be shared. - Shareable = 0x00400, + Shareable = SHCONTF.SHCONTF_SHAREABLE, /// Include items with accessible storage and their ancestors, including hidden items. - Storage = 0x00800, + Storage = SHCONTF.SHCONTF_STORAGE, // /// Windows 7 and later. Child folders should provide a navigation enumeration. // NAVIGATION_ENUM = 0x01000, /// Windows Vista and later. The calling application is looking for resources that can be enumerated quickly. - FastItems = 0x02000, + FastItems = SHCONTF.SHCONTF_FASTITEMS, /// Windows Vista and later. Enumerate items as a simple list even if the folder itself is not structured in that way. - FlatList = 0x04000, + FlatList = SHCONTF.SHCONTF_FLATLIST, /// /// Windows 7 and later. Include hidden system items in the enumeration. This value does not include hidden non-system items. (To include hidden /// non-system items, use IncludeHidden.) /// - IncludeSuperHidden = 0x10000 + IncludeSuperHidden = SHCONTF.SHCONTF_INCLUDESUPERHIDDEN } /// A folder or container of instances.