class MachO::LoadCommands::EntryPointCommand

A load command specifying the offset of main(). Corresponds to LC_MAIN.

Public Instance Methods

to_h() click to toggle source

@return [Hash] a hash representation of this {EntryPointCommand}

Calls superclass method MachO::LoadCommands::LoadCommand#to_h
# File lib/macho/load_commands.rb, line 1324
def to_h
  {
    "entryoff" => entryoff,
    "stacksize" => stacksize,
  }.merge super
end