Class: Rex::PeParsey::PeBase::ImportDescriptor
- Inherits:
-
Object
- Object
- Rex::PeParsey::PeBase::ImportDescriptor
- Defined in:
- lib/rex/peparsey/pebase.rb
Overview
typedef struct _IMAGE_IMPORT_BY_NAME {
WORD Hint;
BYTE Name[1];
} IMAGE_IMPORT_BY_NAME, *PIMAGE_IMPORT_BY_NAME;
Instance Attribute Summary collapse
-
#entries ⇒ Object
Returns the value of attribute entries.
-
#name ⇒ Object
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(_name, _entries) ⇒ ImportDescriptor
constructor
A new instance of ImportDescriptor.
Constructor Details
#initialize(_name, _entries) ⇒ ImportDescriptor
Returns a new instance of ImportDescriptor.
253 254 255 256 |
# File 'lib/rex/peparsey/pebase.rb', line 253 def initialize(_name, _entries) self.name = _name self.entries = _entries end |
Instance Attribute Details
#entries ⇒ Object
Returns the value of attribute entries.
252 253 254 |
# File 'lib/rex/peparsey/pebase.rb', line 252 def entries @entries end |
#name ⇒ Object
Returns the value of attribute name.
252 253 254 |
# File 'lib/rex/peparsey/pebase.rb', line 252 def name @name end |