From 75d1cf2f193e6bdfc9bdb025317283b83d31c67a Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Thu, 14 Nov 2013 15:05:01 -0500 Subject: [PATCH] [Mono.Debugger.Soft] Added FlagsAttrbite where appropriate --- mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs b/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs index 712953b29d5..28ddb0f8930 100644 --- a/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs +++ b/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs @@ -93,6 +93,7 @@ namespace Mono.Debugger.Soft public long catch_type_id; } + [Flags] enum ExceptionClauseFlags { None = 0x0, Filter = 0x1, @@ -149,6 +150,7 @@ namespace Mono.Debugger.Soft VALUE_TYPE_ID_TYPE = 0xf1 } + [Flags] enum InvokeFlags { NONE = 0x0, DISABLE_BREAKPOINTS = 0x1, @@ -220,6 +222,7 @@ namespace Mono.Debugger.Soft UNKNOWN = 4 } + [Flags] enum StackFrameFlags { NONE = 0, DEBUGGER_INVOKE = 1, @@ -549,6 +552,7 @@ namespace Mono.Debugger.Soft IS_INITIALIZED = 18 } + [Flags] enum BindingFlagsExtensions { BINDING_FLAGS_IGNORE_CASE = 0x70000000, } -- 2.25.1