2011-02-21 13:40:10 +00:00
|
|
|
/*
|
|
|
|
* xen_xm.h: Xen XM parsing functions
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011 Univention GmbH
|
|
|
|
* Copyright (C) 2006-2007, 2009-2010 Red Hat, Inc.
|
|
|
|
* Copyright (C) 2006 Daniel P. Berrange
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-09-20 22:30:55 +00:00
|
|
|
* License along with this library. If not, see
|
2012-07-21 10:06:23 +00:00
|
|
|
* <http://www.gnu.org/licenses/>.
|
2011-02-21 13:40:10 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __VIR_XEN_XM_H__
|
|
|
|
# define __VIR_XEN_XM_H__
|
|
|
|
|
|
|
|
# include "internal.h"
|
2012-12-12 16:35:35 +00:00
|
|
|
# include "virconf.h"
|
2011-02-21 13:40:10 +00:00
|
|
|
# include "domain_conf.h"
|
|
|
|
|
2015-12-05 02:11:39 +00:00
|
|
|
virConfPtr xenFormatXM(virConnectPtr conn, virDomainDefPtr def);
|
2011-02-21 13:40:11 +00:00
|
|
|
|
2015-12-05 02:11:39 +00:00
|
|
|
virDomainDefPtr xenParseXM(virConfPtr conf,
|
2015-11-28 04:33:55 +00:00
|
|
|
virCapsPtr caps, virDomainXMLOptionPtr xmlopt);
|
2011-02-21 13:40:10 +00:00
|
|
|
|
|
|
|
#endif /* __VIR_XEN_XM_H__ */
|