diff options
author | Richard Jones <rjones@redhat.com> | 2009-04-20 15:54:22 +0100 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2009-04-20 15:54:22 +0100 |
commit | 0232e722826cfda0f6042da983f9eb871f24e946 (patch) | |
tree | e08a414ae15cc70f60ed6275231f9ae050a033fe /ocaml/guestfs.ml | |
parent | 11350529fee2dbbcfda333bbe10d72f023dc2109 (diff) | |
download | libguestfs-0232e722826cfda0f6042da983f9eb871f24e946.tar.gz libguestfs-0232e722826cfda0f6042da983f9eb871f24e946.tar.xz libguestfs-0232e722826cfda0f6042da983f9eb871f24e946.zip |
Added tar-in, tar-out, tgz-in, tgz-out commands.
Diffstat (limited to 'ocaml/guestfs.ml')
-rw-r--r-- | ocaml/guestfs.ml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ocaml/guestfs.ml b/ocaml/guestfs.ml index 337555c9..3ca33f7b 100644 --- a/ocaml/guestfs.ml +++ b/ocaml/guestfs.ml @@ -202,3 +202,7 @@ external blockdev_rereadpt : t -> string -> unit = "ocaml_guestfs_blockdev_rerea external upload : t -> string -> string -> unit = "ocaml_guestfs_upload" external download : t -> string -> string -> unit = "ocaml_guestfs_download" external checksum : t -> string -> string -> string = "ocaml_guestfs_checksum" +external tar_in : t -> string -> string -> unit = "ocaml_guestfs_tar_in" +external tar_out : t -> string -> string -> unit = "ocaml_guestfs_tar_out" +external tgz_in : t -> string -> string -> unit = "ocaml_guestfs_tgz_in" +external tgz_out : t -> string -> string -> unit = "ocaml_guestfs_tgz_out" |