Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'create-native-map/src/MapAttribute.cs')
-rw-r--r--create-native-map/src/MapAttribute.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/create-native-map/src/MapAttribute.cs b/create-native-map/src/MapAttribute.cs
index a628a27f..714d771c 100644
--- a/create-native-map/src/MapAttribute.cs
+++ b/create-native-map/src/MapAttribute.cs
@@ -37,6 +37,7 @@ using System;
AttributeTargets.Struct)]
internal class MapAttribute : Attribute {
private string nativeType;
+ private bool suppressFlags;
public MapAttribute ()
{
@@ -50,5 +51,10 @@ internal class MapAttribute : Attribute {
public string NativeType {
get {return nativeType;}
}
+
+ public bool SuppressFlags {
+ get {return suppressFlags;}
+ set {suppressFlags = value;}
+ }
}