diff options
-rw-r--r-- | src/inspect.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/inspect.c b/src/inspect.c index 50c4e728..4007f473 100644 --- a/src/inspect.c +++ b/src/inspect.c @@ -2366,6 +2366,30 @@ guestfs__inspect_list_applications (guestfs_h *g, const char *root) NOT_IMPL(NULL); } +char * +guestfs__inspect_get_format (guestfs_h *g, const char *root) +{ + NOT_IMPL(NULL); +} + +int +guestfs__inspect_is_live (guestfs_h *g, const char *root) +{ + NOT_IMPL(-1); +} + +int +guestfs__inspect_is_netinst (guestfs_h *g, const char *root) +{ + NOT_IMPL(-1); +} + +int +guestfs__inspect_is_multipart (guestfs_h *g, const char *root) +{ + NOT_IMPL(-1); +} + #endif /* no PCRE or hivex at compile time */ void |