Exemple #1
0
 public CoffRelocation(uint _addr, CoffSymbol _sym, Reloctype _type)
 {
     address = _addr;
     symbol  = _sym;
     type    = _type;
 }
Exemple #2
0
 public CoffReloc(uint _addr, uint _idx, Reloctype _type)
 {
     address   = _addr;
     symTblIdx = _idx;
     type      = _type;
 }