xml/libxml2libs/inc/libxml2/libxml2_errencoding.h
changeset 0 e35f40988205
child 20 889504eac4fb
equal deleted inserted replaced
-1:000000000000 0:e35f40988205
       
     1 /*
       
     2  * Summary: internals routines exported by the parser.
       
     3  * Description: this module exports a number of internal parsing routines
       
     4  *              they are not really all intended for applications but
       
     5  *              can prove useful doing low level processing.
       
     6  *
       
     7  * Copy: See Copyright for the status of this software.
       
     8  *
       
     9  * Author: Daniel Veillard
       
    10  * Portion Copyright © 2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. 
       
    11  */
       
    12 #ifndef LIBXML2_ERRENCODING_H_
       
    13 
       
    14 #define LIBXML2_ERRENCODING_H_
       
    15 
       
    16 
       
    17 
       
    18 #include <libxml2_parser.h>
       
    19 
       
    20 #include <libxml2_chvalid.h>
       
    21 
       
    22 
       
    23 
       
    24 
       
    25 
       
    26 #ifdef IN_LIBXML
       
    27 
       
    28 /* internal error reporting 
       
    29 
       
    30  * @internalComponent
       
    31 
       
    32  * @prototype
       
    33 
       
    34  */
       
    35 
       
    36 void XMLCALL
       
    37 
       
    38             __xmlErrEncoding    (xmlParserCtxtPtr ctxt,
       
    39 
       
    40                          xmlParserErrors error,
       
    41 
       
    42                          const char *msg,
       
    43 
       
    44                          const xmlChar * str1,
       
    45 
       
    46                          const xmlChar * str2);
       
    47 
       
    48 						 
       
    49 
       
    50 /*
       
    51 
       
    52  * internal only
       
    53 
       
    54  * @internalComponent
       
    55 
       
    56  * @prototype
       
    57 
       
    58  */
       
    59 
       
    60 void XMLCALL
       
    61 
       
    62     xmlErrMemory        (xmlParserCtxtPtr ctxt,
       
    63 
       
    64                  const char *extra);
       
    65 
       
    66 	 
       
    67 
       
    68 #endif
       
    69 
       
    70 
       
    71 
       
    72 
       
    73 
       
    74 #endif /*LIBXML2_ERRENCODING_H_*/
       
    75