Commit | Line | Data |
---|---|---|
9306acb5 | 1 | #ifndef QEMU_HW_XEN_DOMAINBUILD_H |
175de524 | 2 | #define QEMU_HW_XEN_DOMAINBUILD_H |
9306acb5 | 3 | |
0d09e41a | 4 | #include "hw/xen/xen_common.h" |
9306acb5 AL |
5 | |
6 | int xenstore_domain_init1(const char *kernel, const char *ramdisk, | |
7 | const char *cmdline); | |
8 | int xenstore_domain_init2(int xenstore_port, int xenstore_mfn, | |
9 | int console_port, int console_mfn); | |
10 | int xen_domain_build_pv(const char *kernel, const char *ramdisk, | |
11 | const char *cmdline); | |
12 | ||
13 | #endif /* QEMU_HW_XEN_DOMAINBUILD_H */ |