Class: MachO::LoadCommands::FvmlibCommand
- Inherits:
-
LoadCommand
- Object
- MachOStructure
- LoadCommand
- MachO::LoadCommands::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.
Instance Method Summary collapse
-
#header_addr ⇒ Integer
The library's header address.
-
#minor_version ⇒ Integer
The library's minor version number.
-
#name ⇒ LCStr
The library's target pathname.
-
#to_h ⇒ Hash
A hash representation of this FvmlibCommand.
Methods inherited from LoadCommand
#cmd, #cmdsize, create, new_from_bin, #offset, #serializable?, #serialize, #to_s, #type, #view
Methods inherited from MachOStructure
bytesize, format, #initialize, new_from_bin
Constructor Details
This class inherits a constructor from MachO::MachOStructure
Instance Method Details
#header_addr ⇒ Integer
Returns the library's header address.
1411 |
# File 'lib/macho/load_commands.rb', line 1411 field :header_addr, :uint32 |
#minor_version ⇒ Integer
Returns the library's minor version number.
1408 |
# File 'lib/macho/load_commands.rb', line 1408 field :minor_version, :uint32 |
#name ⇒ LCStr
Returns the library's target pathname.
1405 |
# File 'lib/macho/load_commands.rb', line 1405 field :name, :lcstr, :to_s => true |
#to_h ⇒ Hash
Returns a hash representation of this MachO::LoadCommands::FvmlibCommand.
1414 1415 1416 1417 1418 1419 1420 |
# File 'lib/macho/load_commands.rb', line 1414 def to_h { "name" => name.to_h, "minor_version" => minor_version, "header_addr" => header_addr, }.merge super end |