using System; namespace BinaryObjectScanner.Models.GCF { [Flags] public enum HL_GCF_FLAG : uint { /// /// Folder /// HL_GCF_FLAG_FOLDER = 0x00000000, /// /// Don't overwrite the item if copying it to the disk and the item already exists. /// HL_GCF_FLAG_COPY_LOCAL_NO_OVERWRITE = 0x00000001, /// /// The item is to be copied to the disk. /// HL_GCF_FLAG_COPY_LOCAL = 0x0000000A, /// /// Backup the item before overwriting it. /// HL_GCF_FLAG_BACKUP_LOCAL = 0x00000040, /// /// The item is encrypted. /// HL_GCF_FLAG_ENCRYPTED = 0x00000100, /// /// The item is a file. /// HL_GCF_FLAG_FILE = 0x00004000, } }