Source file lead.ml

1
2
3
4
5
6
7
8
9
10
type t = {
  version : int * int;
  kind : project_type;
  arch_num : int;
  name : string;
  os_num : int;
  signature_type : int;
}

and project_type = Source | Binary