package obytelib

  1. Overview
  2. Docs
type t = {
  1. version : Version.t;
  2. vmpath : string option;
  3. vmarg : string option;
  4. index : Index.t;
  5. extra : Extra.t;
  6. data : Data.t;
  7. prim : Prim.t;
  8. code : Code.t;
  9. dlpt : Dlpt.t;
  10. dlls : Dlls.t;
  11. crcs : Crcs.t;
  12. dbug : Dbug.t;
  13. symb : Symb.t;
}
val print : out_channel -> t -> unit
val read : string -> t
val write : string -> Version.t -> ?vmpath:string -> ?vmarg:string -> ?extra:string -> ?dlpt:Dlpt.t -> ?dlls:Dlls.t -> ?crcs:Crcs.t -> ?dbug:Dbug.t -> ?symb:Symb.t -> Data.t -> Prim.t -> Code.t -> unit