Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / ilasm / codegen / ISehClause.cs
1 //
2 // Mono.ILASM.ISehClause
3 //
4 // Author(s):
5 //  Jackson Harper (Jackson@LatitudeGeo.com)
6 //
7 // (C) 2003 Jackson Harper, All rights reserved
8 //
9
10
11 namespace Mono.ILASM {
12
13         public interface ISehClause {
14
15                 PEAPI.HandlerBlock Resolve (CodeGen code_gen, MethodDef method);
16
17                 void SetHandlerBlock (HandlerBlock hb);
18         }
19
20 }
21