Class: Rex::PeParsey::PeBase::ExportEntry

Inherits:
Object
  • Object
show all
Defined in:
lib/rex/peparsey/pebase.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(_name, _ordinal, _rva) ⇒ ExportEntry

Returns a new instance of ExportEntry.



306
307
308
309
310
# File 'lib/rex/peparsey/pebase.rb', line 306

def initialize(_name, _ordinal, _rva)
  self.name     = _name
  self.ordinal  = _ordinal
  self.rva      = _rva
end

Instance Attribute Details

#nameObject

Returns the value of attribute name.



305
306
307
# File 'lib/rex/peparsey/pebase.rb', line 305

def name
  @name
end

#ordinalObject

Returns the value of attribute ordinal.



305
306
307
# File 'lib/rex/peparsey/pebase.rb', line 305

def ordinal
  @ordinal
end

#rvaObject

Returns the value of attribute rva.



305
306
307
# File 'lib/rex/peparsey/pebase.rb', line 305

def rva
  @rva
end