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.



315
316
317
318
319
# File 'lib/rex/peparsey/pebase.rb', line 315

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.



314
315
316
# File 'lib/rex/peparsey/pebase.rb', line 314

def name
  @name
end

#ordinalObject

Returns the value of attribute ordinal.



314
315
316
# File 'lib/rex/peparsey/pebase.rb', line 314

def ordinal
  @ordinal
end

#rvaObject

Returns the value of attribute rva.



314
315
316
# File 'lib/rex/peparsey/pebase.rb', line 314

def rva
  @rva
end