blob: 478d3e33e1fd7493caae07c3d5b4f7de8fac1c72 [file] [log] [blame]
Bjorn Reese70a9da52001-04-21 16:57:29 +00001/*
2 * libxml.h: internal header only used during the compilation of libxml
3 *
4 * See COPYRIGHT for the status of this software
5 *
6 * Author: breese@users.sourceforge.net
7 */
8
9#ifndef __XML_LIBXML_H__
10#define __XML_LIBXML_H__
11
Daniel Veillard3e59fc52003-04-18 12:34:58 +000012#ifndef NO_LARGEFILE_SOURCE
13#ifndef _LARGEFILE_SOURCE
14#define _LARGEFILE_SOURCE
15#endif
16#ifndef _FILE_OFFSET_BITS
17#define _FILE_OFFSET_BITS 64
18#endif
19#endif
20
Igor Zlatkovica6ceeb42003-08-28 10:25:13 +000021#if defined(macintosh)
Daniel Veillardd3b08822001-12-05 12:03:33 +000022#include "config-mac.h"
Bjorn Reese70a9da52001-04-21 16:57:29 +000023#else
24#include "config.h"
Bjorn Reese70a9da52001-04-21 16:57:29 +000025#include <libxml/xmlversion.h>
Daniel Veillard87ee9142001-06-28 12:54:16 +000026#endif
Bjorn Reese70a9da52001-04-21 16:57:29 +000027
Daniel Veillardf79fbfc2006-05-31 13:35:28 +000028#if defined(__Lynx__)
29#include <stdio.h> /* pull definition of size_t */
30#include <varargs.h>
31int snprintf(char *, size_t, const char *, ...);
32int vfprintf(FILE *, const char *, va_list);
33#endif
34
Daniel Veillard59d3ed82007-04-17 12:44:58 +000035/*
36 * Windows CE compatibility definitions and functions
37 * This is needed to compile libxml2 for Windows CE.
38 * At least I tested it with WinCE 4.2 for Emulator and SH4 target
39 */
40#if defined(_WIN32_WCE)
41#include <wincecompat.h>
42#endif
43
Daniel Veillard7cf5e442001-09-10 20:16:32 +000044#ifndef WITH_TRIO
Bjorn Reese70a9da52001-04-21 16:57:29 +000045#include <stdio.h>
46#else
Daniel Veillard5e2dace2001-07-18 19:30:27 +000047/**
48 * TRIO_REPLACE_STDIO:
49 *
50 * This macro is defined if teh trio string formatting functions are to
51 * be used instead of the default stdio ones.
52 */
Bjorn Reese70a9da52001-04-21 16:57:29 +000053#define TRIO_REPLACE_STDIO
54#include "trio.h"
55#endif
Bjorn Reese70a9da52001-04-21 16:57:29 +000056
Daniel Veillarda880b122003-04-21 21:36:41 +000057/*
58 * Internal variable indicating if a callback has been registered for
59 * node creation/destruction. It avoids spending a lot of time in locking
60 * function while checking if the callback exists.
61 */
62extern int __xmlRegisterCallbacks;
Daniel Veillarde8039df2003-10-27 11:25:13 +000063/*
64 * internal error reporting routines, shared but not partof the API.
65 */
Daniel Veillard2b0f8792003-10-10 19:36:36 +000066void __xmlIOErr(int domain, int code, const char *extra);
Daniel Veillarde8039df2003-10-27 11:25:13 +000067void __xmlLoaderErr(void *ctx, const char *msg, const char *filename);
Daniel Veillard499cc922006-01-18 17:22:35 +000068#ifdef LIBXML_HTML_ENABLED
69/*
70 * internal function of HTML parser needed for xmlParseInNodeContext
71 * but not part of the API
72 */
73void __htmlParseContent(void *ctx);
74#endif
75
Daniel Veillardfde5b0b2007-02-12 17:31:53 +000076/*
77 * internal global initialization critical section routines.
78 */
79void __xmlGlobalInitMutexLock(void);
80void __xmlGlobalInitMutexUnlock(void);
Daniel Veillarda2351322004-06-27 12:08:10 +000081
82#ifdef IN_LIBXML
83#ifdef __GNUC__
Daniel Veillardbe3eb202004-07-09 12:05:25 +000084#ifdef PIC
Daniel Veillarda2351322004-06-27 12:08:10 +000085#ifdef linux
Daniel Veillardc0c6ce22005-03-10 09:22:07 +000086#if (__GNUC__ == 3 && __GNUC_MINOR__ >= 3) || (__GNUC__ > 3)
Daniel Veillarda2351322004-06-27 12:08:10 +000087#include "elfgcchack.h"
88#endif
89#endif
90#endif
Daniel Veillardbe3eb202004-07-09 12:05:25 +000091#endif
Daniel Veillardc0c6ce22005-03-10 09:22:07 +000092#endif
Bjorn Reese70a9da52001-04-21 16:57:29 +000093#endif /* ! __XML_LIBXML_H__ */