/* * xen_internal.h: internal API for direct access to Xen hypervisor level * * Copyright (C) 2005 Red Hat, Inc. * * See COPYING.LIB for the License of this software * * Daniel Veillard */ #ifndef __VIR_XEN_INTERNAL_H__ #define __VIR_XEN_INTERNAL_H__ #include #include #ifdef __cplusplus extern "C" { #endif int xenHypervisorOpen (void); int xenHypervisorClose (int handle); int xenHypervisorGetDomainInfo (int handle, int domain, dom0_getdomaininfo_t *info); #ifdef __cplusplus } #endif #endif /* __VIR_XEN_INTERNAL_H__ */