17 lines
410 B
C#
17 lines
410 B
C#
// dnlib: See LICENSE.txt for more info
|
|
|
|
using System;
|
|
|
|
namespace dnlib.DotNet {
|
|
/// <summary>
|
|
/// File row flags. See CorHdr.h/CorFileFlags
|
|
/// </summary>
|
|
[Flags]
|
|
public enum FileAttributes : uint {
|
|
/// <summary>This is not a resource file</summary>
|
|
ContainsMetadata = 0x0000,
|
|
/// <summary>This is a resource file or other non-metadata-containing file</summary>
|
|
ContainsNoMetadata = 0x0001,
|
|
}
|
|
}
|