Module Cmi_format
type pers_flags =
| Rectypes
type cmi_infos = {
cmi_name : string;
cmi_sign : Types.signature_item list;
cmi_flags : pers_flags list;
}
val read_cmi : string -> cmi_infos
type error =
| Not_an_interface of string
| Wrong_version_interface of string * string
| Corrupted_interface of string
exception Error of error