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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/ilasm/codegen/ISehClause.cs')
-rw-r--r--mcs/ilasm/codegen/ISehClause.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/mcs/ilasm/codegen/ISehClause.cs b/mcs/ilasm/codegen/ISehClause.cs
new file mode 100644
index 00000000000..de36ef0417e
--- /dev/null
+++ b/mcs/ilasm/codegen/ISehClause.cs
@@ -0,0 +1,21 @@
+//
+// Mono.ILASM.ISehClause
+//
+// Author(s):
+// Jackson Harper (Jackson@LatitudeGeo.com)
+//
+// (C) 2003 Jackson Harper, All rights reserved
+//
+
+
+namespace Mono.ILASM {
+
+ public interface ISehClause {
+
+ PEAPI.HandlerBlock Resolve (CodeGen code_gen, MethodDef method);
+
+ void SetHandlerBlock (HandlerBlock hb);
+ }
+
+}
+