Get rid of string type and replace with a bool type
[fidl.git] / xml-writer.h
blobb106cd65b8355265ec36db437c2903236f9e7c68
1 /*
2 * QEMU Marshalling Framework
3 * XML marshaller
5 * Copyright IBM, Corp. 2010
7 * Authors:
8 * Anthony Liguori <aliguori@us.ibm.com>
10 * This work is licensed under the terms of the GNU GPL, version 2. See
11 * the COPYING file in the top-level directory.
14 #ifndef XML_WRITER_H
15 #define XML_WRITER_H
17 #include <stdio.h>
18 #include "marshal.h"
20 Marshaller *xml_writer_open(FILE *filp);
21 void xml_writer_close(Marshaller *m);
23 #endif