1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# 1 "h5_raw.cppo.ml"
module Time = struct
type t = int64
end
module Addr = struct
type t = int
end
module Iter_order = struct
type t =
| INC
| DEC
| NATIVE
| N
end
module Iter = struct
type t =
| CONT
| STOP
end
module Index = struct
type t =
| NAME
| CRT_ORDER
| N
end
module Ih_info = struct
type t = {
index_size : int;
heap_size : int }
end
let init () = Callback.register_exception "HDF5.H5I.Fail" H5i.Fail
let () = init ()