Blame frx/frx_rpc.mli

Packit bd2e5d
(***********************************************************************)
Packit bd2e5d
(*                                                                     *)
Packit bd2e5d
(*                 MLTk, Tcl/Tk interface of OCaml                     *)
Packit bd2e5d
(*                                                                     *)
Packit bd2e5d
(*    Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis    *)
Packit bd2e5d
(*               projet Cristal, INRIA Rocquencourt                    *)
Packit bd2e5d
(*            Jacques Garrigue, Kyoto University RIMS                  *)
Packit bd2e5d
(*                                                                     *)
Packit bd2e5d
(*  Copyright 2002 Institut National de Recherche en Informatique et   *)
Packit bd2e5d
(*  en Automatique and Kyoto University.  All rights reserved.         *)
Packit bd2e5d
(*  This file is distributed under the terms of the GNU Library        *)
Packit bd2e5d
(*  General Public License, with the special exception on linking      *)
Packit bd2e5d
(*  described in file LICENSE found in the OCaml source tree.          *)
Packit bd2e5d
(*                                                                     *)
Packit bd2e5d
(***********************************************************************)
Packit bd2e5d
(* Some notion of RPC *)
Packit bd2e5d
Packit bd2e5d
val register : string -> (string list -> unit) -> unit
Packit bd2e5d
  (* [register external_name f] *)
Packit bd2e5d
val invoke : string -> string -> string list -> string
Packit bd2e5d
  (* [invoke interp name args] *)
Packit bd2e5d
val async_invoke : string -> string -> string list -> unit
Packit bd2e5d
  (* [async_invoke interp name args] *)
Packit bd2e5d
val rpc_info : string -> string
Packit bd2e5d
  (* [rpc_info interp] *)