/usr/lib/ocaml/obus/uDisks_adapter.mli is in libobus-ocaml-dev 1.1.5-3build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | (*
* uDisks_adapter.mli
* ------------------
* Copyright : (c) 2010, Jeremie Dimino <jeremie@dimino.org>
* Licence : BSD3
*
* This file is a part of obus, an ocaml implementation of D-Bus.
*)
(** UDisks adapter interface *)
include OBus_proxy.Private
(** {6 Signals} *)
val changed : t -> unit OBus_signal.t
(** {6 Properties} *)
val fabric : t -> string OBus_property.r
val num_ports : t -> int OBus_property.r
val driver : t -> string OBus_property.r
val model : t -> string OBus_property.r
val vendor : t -> string OBus_property.r
val native_path : t -> string OBus_property.r
val properties : t -> OBus_property.group
|