xml/libxml2libs/src/libxml2/xmlenglibxml.h
changeset 0 e35f40988205
equal deleted inserted replaced
-1:000000000000 0:e35f40988205
       
     1 /*
       
     2  * xmlenglibxml.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  * Portion Copyright © 2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. 
       
     8  *
       
     9  */
       
    10 
       
    11 /** @file
       
    12 @internalComponent
       
    13 @released
       
    14 */
       
    15 
       
    16 #ifndef XML_LIBXML_H
       
    17 #define XML_LIBXML_H
       
    18 
       
    19 #include "libxml2_xmlversion.h"
       
    20 
       
    21 /* include private headers through this header */
       
    22 #include "libxml2_globals_private.h"
       
    23 #include "libxml2_tree_private.h"
       
    24 #include "libxml2_valid_private.h"
       
    25 #include "libxml2_xmlsave_private.h"
       
    26 #include "libxml2_xpathinternals_private.h"
       
    27 
       
    28 #ifndef WITH_TRIO
       
    29 #include <stdio.h>
       
    30 #else
       
    31 /**
       
    32  * TRIO_REPLACE_STDIO:
       
    33  *
       
    34  * This macro is defined if the trio string formatting functions are to
       
    35  * be used instead of the default stdio ones.
       
    36  */
       
    37 #define TRIO_REPLACE_STDIO
       
    38 #include "Libxml2_trio.h"
       
    39 #endif
       
    40 
       
    41 /*
       
    42  * internal error reporting routines, shared but not part of the API.
       
    43  */
       
    44 void __xmlIOErr(int domain, int code, const char *extra);
       
    45 void __xmlLoaderErr(void *ctx, const char *msg, const char *filename);
       
    46 
       
    47 #endif /* XML_LIBXML_H */
       
    48