Class: MachO::FvmlibCommand
- Inherits:
-
LoadCommand
- Object
- MachOStructure
- LoadCommand
- MachO::FvmlibCommand
- Defined in:
- lib/macho/load_commands.rb
Overview
An obsolete load command containing the path to a library to be loaded into memory. Corresponds to LC_LOADFVMLIB and LC_IDFVMLIB.
Constant Summary collapse
- FORMAT =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
"L=5".freeze
- SIZEOF =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
20
Instance Attribute Summary collapse
-
#header_addr ⇒ Fixnum
readonly
The library's header address.
-
#minor_version ⇒ Fixnum
readonly
The library's minor version number.
-
#name ⇒ MachO::LoadCommand::LCStr
readonly
The library's target pathname.
Attributes inherited from LoadCommand
Instance Method Summary collapse
-
#initialize(view, cmd, cmdsize, name, minor_version, header_addr) ⇒ FvmlibCommand
constructor
A new instance of FvmlibCommand.
Methods inherited from LoadCommand
create, new_from_bin, #offset, #serializable?, #serialize, #to_s, #type
Methods inherited from MachOStructure
Constructor Details
#initialize(view, cmd, cmdsize, name, minor_version, header_addr) ⇒ FvmlibCommand
Returns a new instance of FvmlibCommand.
1307 1308 1309 1310 1311 1312 |
# File 'lib/macho/load_commands.rb', line 1307 def initialize(view, cmd, cmdsize, name, minor_version, header_addr) super(view, cmd, cmdsize) @name = LCStr.new(self, name) @minor_version = minor_version @header_addr = header_addr end |
Instance Attribute Details
#header_addr ⇒ Fixnum (readonly)
Returns the library's header address.
1297 1298 1299 |
# File 'lib/macho/load_commands.rb', line 1297 def header_addr @header_addr end |
#minor_version ⇒ Fixnum (readonly)
Returns the library's minor version number.
1294 1295 1296 |
# File 'lib/macho/load_commands.rb', line 1294 def minor_version @minor_version end |
#name ⇒ MachO::LoadCommand::LCStr (readonly)
Returns the library's target pathname.
1291 1292 1293 |
# File 'lib/macho/load_commands.rb', line 1291 def name @name end |