* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / Mono.PEToolkit / metadata / ManifestResourceAttributes.cs
1 /*\r
2  * Copyright (c) 2002 Sergey Chaban <serge@wildwestsoftware.com>\r
3  */\r
4 \r
5 using System;\r
6 \r
7 namespace Mono.PEToolkit.Metadata {\r
8 \r
9         /// <summary>\r
10         /// Flags for ManifestResource.\r
11         /// </summary>\r
12         /// <remarks>\r
13         /// See Partition II, 22.1.8\r
14         /// </remarks>\r
15         [Flags]\r
16         public enum ManifestResourceAttributes {\r
17                 VisibilityMask = 0x0007,\r
18 \r
19                 /// <summary>\r
20                 /// The Resource is exported from the Assembly.\r
21                 /// </summary>\r
22                 Public = 0x0001,\r
23 \r
24                 /// <summary>\r
25                 /// The Resource is private to the Assembly.\r
26                 /// </summary>\r
27                 Private = 0x0002,\r
28         }\r
29 }\r