blob: 3c44c83735d5daba2791c39241fa4771e30b1fae [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"
Daniel Veillard509ed2a2007-04-18 07:51:50 +000023#elif defined(_WIN32_WCE)
24/*
25 * Windows CE compatibility definitions and functions
26 * This is needed to compile libxml2 for Windows CE.
27 * At least I tested it with WinCE 5.0 for Emulator and WinCE 4.2/SH4 target
28 */
29#include <win32config.h>
30#include <libxml/xmlversion.h>
Bjorn Reese70a9da52001-04-21 16:57:29 +000031#else
32#include "config.h"
Bjorn Reese70a9da52001-04-21 16:57:29 +000033#include <libxml/xmlversion.h>
Daniel Veillard87ee9142001-06-28 12:54:16 +000034#endif
Bjorn Reese70a9da52001-04-21 16:57:29 +000035
Daniel Veillardf79fbfc2006-05-31 13:35:28 +000036#if defined(__Lynx__)
37#include <stdio.h> /* pull definition of size_t */
38#include <varargs.h>
39int snprintf(char *, size_t, const char *, ...);
40int vfprintf(FILE *, const char *, va_list);
41#endif
42
Daniel Veillard7cf5e442001-09-10 20:16:32 +000043#ifndef WITH_TRIO
Bjorn Reese70a9da52001-04-21 16:57:29 +000044#include <stdio.h>
45#else
Daniel Veillard5e2dace2001-07-18 19:30:27 +000046/**
47 * TRIO_REPLACE_STDIO:
48 *
49 * This macro is defined if teh trio string formatting functions are to
50 * be used instead of the default stdio ones.
51 */
Bjorn Reese70a9da52001-04-21 16:57:29 +000052#define TRIO_REPLACE_STDIO
53#include "trio.h"
54#endif
Bjorn Reese70a9da52001-04-21 16:57:29 +000055
Daniel Veillarda880b122003-04-21 21:36:41 +000056/*
57 * Internal variable indicating if a callback has been registered for
58 * node creation/destruction. It avoids spending a lot of time in locking
59 * function while checking if the callback exists.
60 */
61extern int __xmlRegisterCallbacks;
Daniel Veillarde8039df2003-10-27 11:25:13 +000062/*
63 * internal error reporting routines, shared but not partof the API.
64 */
Daniel Veillard2b0f8792003-10-10 19:36:36 +000065void __xmlIOErr(int domain, int code, const char *extra);
Daniel Veillarde8039df2003-10-27 11:25:13 +000066void __xmlLoaderErr(void *ctx, const char *msg, const char *filename);
Daniel Veillard499cc922006-01-18 17:22:35 +000067#ifdef LIBXML_HTML_ENABLED
68/*
69 * internal function of HTML parser needed for xmlParseInNodeContext
70 * but not part of the API
71 */
72void __htmlParseContent(void *ctx);
73#endif
74
Daniel Veillardfde5b0b2007-02-12 17:31:53 +000075/*
76 * internal global initialization critical section routines.
77 */
78void __xmlGlobalInitMutexLock(void);
79void __xmlGlobalInitMutexUnlock(void);
Rob Richards91eb5602007-11-16 10:54:59 +000080void __xmlGlobalInitMutexDestroy(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__ */