mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
45 lines
1.3 KiB
C
45 lines
1.3 KiB
C
/*
|
|
* xs_internal.h: internal API for access to XenStore
|
|
*
|
|
* Copyright (C) 2006 Red Hat, Inc.
|
|
*
|
|
* See COPYING.LIB for the License of this software
|
|
*
|
|
* Daniel Veillard <veillard@redhat.com>
|
|
*/
|
|
|
|
#ifndef __VIR_XS_INTERNAL_H__
|
|
#define __VIR_XS_INTERNAL_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void xenStoreRegister (void);
|
|
int xenStoreOpen (virConnectPtr conn,
|
|
const char *name,
|
|
int flags);
|
|
int xenStoreClose (virConnectPtr conn);
|
|
int xenStoreGetDomainInfo (virDomainPtr domain,
|
|
virDomainInfoPtr info);
|
|
int xenStoreNumOfDomains (virConnectPtr conn);
|
|
int xenStoreListDomains (virConnectPtr conn,
|
|
int *ids,
|
|
int maxids);
|
|
virDomainPtr xenStoreDomainLookupByName(virConnectPtr conn,
|
|
const char *name);
|
|
unsigned long xenStoreGetMaxMemory (virDomainPtr domain);
|
|
int xenStoreDomainSetMemory (virDomainPtr domain,
|
|
unsigned long memory);
|
|
unsigned long xenStoreDomainGetMaxMemory(virDomainPtr domain);
|
|
int xenStoreDomainShutdown (virDomainPtr domain);
|
|
int xenStoreDomainReboot (virDomainPtr domain,
|
|
unsigned int flags);
|
|
int xenStoreDomainGetVNCPort(virDomainPtr domain);
|
|
char * xenStoreDomainGetConsolePath(virDomainPtr domain);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* __VIR_XS_INTERNAL_H__ */
|