Method: MachO::LoadCommands::FvmfileCommand#initialize

Defined in:
lib/macho/load_commands.rb

#initialize(view, cmd, cmdsize, name, header_addr) ⇒ FvmfileCommand

Returns a new instance of FvmfileCommand.



1709
1710
1711
1712
1713
# File 'lib/macho/load_commands.rb', line 1709

def initialize(view, cmd, cmdsize, name, header_addr)
  super(view, cmd, cmdsize)
  @name = LCStr.new(self, name)
  @header_addr = header_addr
end