-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathiocaml.mli
More file actions
27 lines (20 loc) · 813 Bytes
/
iocaml.mli
File metadata and controls
27 lines (20 loc) · 813 Bytes
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
module Compile : sig
(* enable generation of stubs for missing c primitives *)
val generate_stubs : bool ref
(* get missing c primitives *)
val get_stubs : unit -> string array
(* install timer for "times" debug option *)
val set_timer : (unit -> float) -> unit
(* set js_of_ocaml debugging option *)
val jsoo_debug : string -> bool -> unit
end
(* for internal use only *)
val touch_me_up : unit -> unit
(* display mime data in notebook *)
val display : ?base64:bool -> string -> string -> unit
(* clear output panel *)
val send_clear : ?wait:bool -> ?stdout:bool -> ?stderr:bool -> ?other:bool -> unit -> unit
(* load a (binary) file from the server *)
val load_from_server : (string*string) -> string option
val output_cell_max_height : string ref
val main : unit -> unit