コード例 #1
0
ファイル: State.cs プロジェクト: aomega08/X360Decompiler
 public State(String exeName)
 {
     CType.decompiler = this;
     Instructions = new XenonInstructions(this);
     Instructions.SetupTables();
     Pe = new XPeParser(exeName);
 }
コード例 #2
0
ファイル: State.cs プロジェクト: aomega08/X360Decompiler
 private State()
 {
     CType.decompiler = this;
     Instructions = new XenonInstructions(this);
     Instructions.SetupTables();
 }