コード例 #1
0
ファイル: CoffSection.cs プロジェクト: kohoutech/Energetic
 public CoffRelocation(uint _addr, CoffSymbol _sym, Reloctype _type)
 {
     address = _addr;
     symbol  = _sym;
     type    = _type;
 }
コード例 #2
0
ファイル: Section.cs プロジェクト: kohoutech/Dynamo
 public CoffReloc(uint _addr, uint _idx, Reloctype _type)
 {
     address   = _addr;
     symTblIdx = _idx;
     type      = _type;
 }