Exemplo n.º 1
0
 public AuxSymbol(@string extname = default, @string dynimplib = default, @string dynimpvers = default, byte localentry = default, int plt = default, int got = default, elf.SymType elftype = default)
 {
     this.extname    = extname;
     this.dynimplib  = dynimplib;
     this.dynimpvers = dynimpvers;
     this.localentry = localentry;
     this.plt        = plt;
     this.got        = got;
     this.elftype    = elftype;
 }
Exemplo n.º 2
0
 public ElfSym(@string name = default, ulong value = default, ulong size = default, elf.SymBind bind = default, elf.SymType type_ = default, byte other = default, elf.SectionIndex shndx = default, loader.Sym sym = default)
 {
     this.name  = name;
     this.value = value;
     this.size  = size;
     this.bind  = bind;
     this.type_ = type_;
     this.other = other;
     this.shndx = shndx;
     this.sym   = sym;
 }