mirror of
https://github.com/libretro/RetroArch
synced 2025-02-03 17:54:04 +00:00
21 lines
395 B
C
21 lines
395 B
C
/*
|
|
* Summary: the XML document serializer
|
|
* Description: API to save document or subtree of document
|
|
*
|
|
* Copy: See Copyright for the status of this software.
|
|
*
|
|
* Author: Daniel Veillard
|
|
*/
|
|
|
|
#ifndef __XML_XMLSAVE_H__
|
|
#define __XML_XMLSAVE_H__
|
|
|
|
#include <libxml/xmlversion.h>
|
|
#include <libxml/tree.h>
|
|
#include <libxml/encoding.h>
|
|
#include <libxml/xmlIO.h>
|
|
|
|
#endif /* __XML_XMLSAVE_H__ */
|
|
|
|
|