2001-04-22 00:57:29 +08:00
|
|
|
/*
|
|
|
|
* libxml.h: internal header only used during the compilation of libxml
|
|
|
|
*
|
|
|
|
* See COPYRIGHT for the status of this software
|
|
|
|
*
|
|
|
|
* Author: breese@users.sourceforge.net
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __XML_LIBXML_H__
|
|
|
|
#define __XML_LIBXML_H__
|
|
|
|
|
2001-06-11 18:29:38 +08:00
|
|
|
#if defined(WIN32) && !defined(__CYGWIN__)
|
2001-04-22 00:57:29 +08:00
|
|
|
#include "win32config.h"
|
2001-12-05 20:03:33 +08:00
|
|
|
#elif defined(macintosh)
|
|
|
|
#include "config-mac.h"
|
2001-04-22 00:57:29 +08:00
|
|
|
#else
|
|
|
|
#include "config.h"
|
|
|
|
#include <libxml/xmlversion.h>
|
2001-06-28 20:54:16 +08:00
|
|
|
#endif
|
2001-04-22 00:57:29 +08:00
|
|
|
|
2001-09-11 04:16:32 +08:00
|
|
|
#ifndef WITH_TRIO
|
2001-04-22 00:57:29 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#else
|
2001-07-19 03:30:27 +08:00
|
|
|
/**
|
|
|
|
* TRIO_REPLACE_STDIO:
|
|
|
|
*
|
|
|
|
* This macro is defined if teh trio string formatting functions are to
|
|
|
|
* be used instead of the default stdio ones.
|
|
|
|
*/
|
2001-04-22 00:57:29 +08:00
|
|
|
#define TRIO_REPLACE_STDIO
|
|
|
|
#include "trio.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* ! __XML_LIBXML_H__ */
|