package rdr

  1. Overview
  2. Docs
module Types = MachLoadCommandTypes
val sections64_to_string : MachLoadCommandTypes.section_64 list -> string
val load_command_to_string : MachLoadCommandTypes.lc -> string
val print_load_command : MachLoadCommandTypes.lc -> unit
val print_load_commands : MachLoadCommandTypes.lc list -> unit
val get_load_command_header : bytes -> int -> int * int * int
val get_load_command_raw : bytes -> int -> int -> bytes
val get_segment_by_name : string -> MachLoadCommandTypes.segment_command_64 list -> MachLoadCommandTypes.segment_command_64 option
val get_symtable : bytes -> int -> MachLoadCommandTypes.symtab_command
val get_dysymtable : bytes -> int -> MachLoadCommandTypes.dysymtab_command
val get_dylib_command : bytes -> int -> MachLoadCommandTypes.dylib_command
val get_version : bytes -> int -> MachLoadCommandTypes.version_min_command
val get_main : bytes -> int -> MachLoadCommandTypes.entry_point_command
val get_dylinker : bytes -> int -> MachLoadCommandTypes.dylinker_command
val get_section64 : bytes -> int -> MachLoadCommandTypes.section_64
val get_sections64 : bytes -> int -> int -> MachLoadCommandTypes.section_64 list
val get_segment64 : bytes -> int -> MachLoadCommandTypes.segment_command_64
val get_load_commands_it : bytes -> int -> int -> MachLoadCommandTypes.lc list -> MachLoadCommandTypes.lc list
val get_load_commands : bytes -> int -> int -> 'a -> t
val get_load_command : MachLoadCommandTypes.cmd -> Types.lc list -> Types.lc_t option
val get_lib_name : MachLoadCommandTypes.lc list -> string
val print_libraries : string array -> unit
val get_libraries : MachLoadCommandTypes.lc list -> string -> string array