Implement mono_gc_alloc_fixed on Boehm to be uncollectable. This matches SGen behavio...
[mono.git] / mcs / class / corlib / System.Reflection.Emit / PackingSize.cs
index f71c65fc79000a04589c461ad7a504d748d82142..ad6be1d1d74a4f0dcc22d469046289c0bc5cd826 100644 (file)
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
+using System.Runtime.InteropServices;
 
 namespace System.Reflection.Emit {
 
        /// <summary>
        ///  Specifies the packing size (data alignment) of a type.
        /// </summary>
-       [Flags]
+       [ComVisible (true)]
+       [Serializable]
        public enum PackingSize {
 
                /// <summary>
@@ -57,9 +59,13 @@ namespace System.Reflection.Emit {
 
                /// <summary>
                /// </summary>
-               Size16 = 16
-       }
+               Size16 = 16,
 
-}
+               Size32 = 32,
 
+               Size64 = 64,
 
+               Size128 = 128
+       }
+
+}