package binsec

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Loader_elf.EhdrSource

Sourcemodule ET : sig ... end
Sourcetype t = private {
  1. ident : E_ident.t;
  2. kind : ET.t;
  3. machine : Binsec_base.Machine.t;
  4. version : Loader_types.u32;
  5. entry : Binsec_base.Virtual_address.t;
  6. phoff : int;
  7. shoff : int;
  8. flags : Loader_types.u32;
  9. ehsize : Loader_types.u16;
  10. phentsize : int;
  11. phnum : int;
  12. shentsize : int;
  13. shnum : int;
  14. shstrndx : int;
}
include Binsec_base.Sigs.PRINTABLE with type t := t
Sourceval pp : Format.formatter -> t -> unit