1 #ifndef KVM__SETUP_H 2 #define KVM__SETUP_H 3 4 #include <kvm/util.h> 5 6 int kvm_cmd_setup(int argc, const char **argv, const char *prefix); 7 void kvm_setup_help(void) NORETURN; 8 int kvm_setup_create_new(const char *guestfs_name); 9 void kvm_setup_resolv(const char *guestfs_name); 10 int kvm_setup_guest_init(const char *guestfs_name); 11 12 #endif 13