mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-24 15:19:42 +00:00
This change looks dramatic, but it's just separating out the already-split namespaces into separate top-level folders. In theory, every single one could be built into their own Nuget package. `SabreTools.Serialization` still builds the normal Nuget package that is used by all other projects and includes all namespaces.
39 lines
940 B
C#
39 lines
940 B
C#
using System;
|
|
|
|
namespace SabreTools.Data.Models.NCF
|
|
{
|
|
[Flags]
|
|
public enum HL_NCF_FLAG : uint
|
|
{
|
|
/// <summary>
|
|
/// Folder
|
|
/// </summary>
|
|
HL_NCF_FLAG_FOLDER = 0x00000000,
|
|
|
|
/// <summary>
|
|
/// Don't overwrite the item if copying it to the disk and the item already exis
|
|
/// </summary>
|
|
HL_NCF_FLAG_COPY_LOCAL_NO_OVERWRITE = 0x00000001,
|
|
|
|
/// <summary>
|
|
/// The item is to be copied to the disk.
|
|
/// </summary>
|
|
HL_NCF_FLAG_COPY_LOCAL = 0x0000000a,
|
|
|
|
/// <summary>
|
|
/// Backup the item before overwriting it.
|
|
/// </summary>
|
|
HL_NCF_FLAG_BACKUP_LOCAL = 0x00000040,
|
|
|
|
/// <summary>
|
|
/// The item is encrypted.
|
|
/// </summary>
|
|
HL_NCF_FLAG_ENCRYPTED = 0x00000100,
|
|
|
|
/// <summary>
|
|
/// The item is a file.
|
|
/// </summary>
|
|
HL_NCF_FLAG_FILE = 0x00004000,
|
|
}
|
|
}
|