xen_sxpr.h 1.2 KB
Newer Older
1 2 3
/*
 * xen_sxpr.h: Xen SEXPR parsing functions
 *
4
 * Copyright (C) 2006-2008, 2010, 2012 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17 18
 * Copyright (C) 2011 Univention GmbH
 * Copyright (C) 2005,2006
 *
 * 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
19
 * License along with this library.  If not, see
O
Osier Yang 已提交
20
 * <http://www.gnu.org/licenses/>.
21 22
 */

23
#pragma once
24

25 26 27 28
#include "internal.h"
#include "virconf.h"
#include "domain_conf.h"
#include "virsexpr.h"
29 30

/* helper functions to get the dom id from a sexpr */
31 32
int xenGetDomIdFromSxprString(const char *sexpr, int *id);
int xenGetDomIdFromSxpr(const struct sexpr *root, int *id);
33

M
Markus Groß 已提交
34
virDomainChrDefPtr xenParseSxprChar(const char *value, const char *tty);