/* * Copyright (c) 2002 Sergey Chaban */ using System; namespace Mono.PEToolkit.Metadata { /// /// Flags for ManifestResource. /// /// /// See Partition II, 22.1.8 /// [Flags] public enum ManifestResourceAttributes { VisibilityMask = 0x0007, /// /// The Resource is exported from the Assembly. /// Public = 0x0001, /// /// The Resource is private to the Assembly. /// Private = 0x0002, } }