aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxl/libxl_internal.h
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2010-08-16 15:31:05 +0100
committerIan Campbell <ian.campbell@citrix.com>2010-08-16 15:31:05 +0100
commit701e9761715fcb79e3af7ef36d35968fa700f45c (patch)
treebd80888a0624f4eea4b45cdb53b2c2704b5bdb37 /tools/libxl/libxl_internal.h
parent9063feaaab89f5c4a003160b0560c80cada2db79 (diff)
downloadxen-701e9761715fcb79e3af7ef36d35968fa700f45c.tar.gz
xen-701e9761715fcb79e3af7ef36d35968fa700f45c.tar.bz2
xen-701e9761715fcb79e3af7ef36d35968fa700f45c.zip
libxl: make libxl_console_reader type opaque to users of libxl
Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com> committer: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Diffstat (limited to 'tools/libxl/libxl_internal.h')
-rw-r--r--tools/libxl/libxl_internal.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/libxl/libxl_internal.h b/tools/libxl/libxl_internal.h
index ffc213c82f..14407869da 100644
--- a/tools/libxl/libxl_internal.h
+++ b/tools/libxl/libxl_internal.h
@@ -263,4 +263,13 @@ const char *libxl_blktap_devpath(libxl_gc *gc,
_hidden char *libxl_uuid2string(libxl_gc *gc, const libxl_uuid uuid);
+struct libxl__xen_console_reader {
+ char *buffer;
+ unsigned int size;
+ unsigned int count;
+ unsigned int clear;
+ unsigned int incremental;
+ unsigned int index;
+};
+
#endif