X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=daemon%2Fdaemon.h;h=6845e1b306c175cc84a146f86b0eacee2f050169;hb=066d14d138e9a92b406f6a0a4c018347349a1e5d;hp=03e0d37e6202ba3bea9c5a289f66b8e299bd63a1;hpb=e776a46ffcbede6d9b030dbc8f6ab32500b325ec;p=libguestfs.git diff --git a/daemon/daemon.h b/daemon/daemon.h index 03e0d37..6845e1b 100644 --- a/daemon/daemon.h +++ b/daemon/daemon.h @@ -28,7 +28,7 @@ #include #include -#include "../src/guestfs_protocol.h" +#include "guestfs_protocol.h" /*-- in guestfsd.c --*/ extern int verbose; @@ -81,8 +81,8 @@ extern int prog_exists (const char *prog); extern void udev_settle (void); -/* This just stops gcc from giving a warning about our custom - * printf formatters %Q and %R. See HACKING file for more +/* This just stops gcc from giving a warning about our custom printf + * formatters %Q and %R. See guestfs(3)/EXTENDING LIBGUESTFS for more * info about these. */ static inline int @@ -103,6 +103,8 @@ extern const char *function_names[]; /*-- in proto.c --*/ extern int proc_nr; extern int serial; +extern uint64_t progress_hint; +extern uint64_t optargs_bitmask; /*-- in mount.c --*/ extern int root_mounted; @@ -124,6 +126,9 @@ extern struct optgroup optgroups[]; /* Use this as a replacement for sync(2). */ extern int sync_disks (void); +/*-- in lvm.c --*/ +extern int lv_canonical (const char *device, char **ret); + /*-- in proto.c --*/ extern void main_loop (int sock) __attribute__((noreturn));