A load command specifying the offset of main(). Corresponds to LC_MAIN.
@see MachOStructure::FORMAT @api private
@see MachOStructure::SIZEOF @api private
@return [Fixnum] the file (__TEXT) offset of main()
@return [Fixnum] if not 0, the initial stack size.
@api private
# File lib/macho/load_commands.rb, line 1220 def initialize(view, cmd, cmdsize, entryoff, stacksize) super(view, cmd, cmdsize) @entryoff = entryoff @stacksize = stacksize end