| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Summary: internals routines and limits exported by the parser. | 2 * Summary: internals routines and limits exported by the parser. |
| 3 * Description: this module exports a number of internal parsing routines | 3 * Description: this module exports a number of internal parsing routines |
| 4 * they are not really all intended for applications but | 4 * they are not really all intended for applications but |
| 5 * can prove useful doing low level processing. | 5 * can prove useful doing low level processing. |
| 6 * | 6 * |
| 7 * Copy: See Copyright for the status of this software. | 7 * Copy: See Copyright for the status of this software. |
| 8 * | 8 * |
| 9 * Author: Daniel Veillard | 9 * Author: Daniel Veillard |
| 10 */ | 10 */ |
| (...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 xmlParserInputPtr input, | 344 xmlParserInputPtr input, |
| 345 xmlCharEncodingHandlerPtr handler); | 345 xmlCharEncodingHandlerPtr handler); |
| 346 | 346 |
| 347 #ifdef IN_LIBXML | 347 #ifdef IN_LIBXML |
| 348 /* internal error reporting */ | 348 /* internal error reporting */ |
| 349 XMLPUBFUN void XMLCALL | 349 XMLPUBFUN void XMLCALL |
| 350 __xmlErrEncoding (xmlParserCtxtPtr ctxt, | 350 __xmlErrEncoding (xmlParserCtxtPtr ctxt, |
| 351 xmlParserErrors xmlerr, | 351 xmlParserErrors xmlerr, |
| 352 const char *msg, | 352 const char *msg, |
| 353 const xmlChar * str1, | 353 const xmlChar * str1, |
| 354 » » » » » » const xmlChar * str2); | 354 » » » » » » const xmlChar * str2) LIBXML_AT
TR_FORMAT(3,0); |
| 355 #endif | 355 #endif |
| 356 | 356 |
| 357 /** | 357 /** |
| 358 * Input Streams. | 358 * Input Streams. |
| 359 */ | 359 */ |
| 360 XMLPUBFUN xmlParserInputPtr XMLCALL | 360 XMLPUBFUN xmlParserInputPtr XMLCALL |
| 361 xmlNewStringInputStream (xmlParserCtxtPtr ctxt, | 361 xmlNewStringInputStream (xmlParserCtxtPtr ctxt, |
| 362 const xmlChar *buffer); | 362 const xmlChar *buffer); |
| 363 XMLPUBFUN xmlParserInputPtr XMLCALL | 363 XMLPUBFUN xmlParserInputPtr XMLCALL |
| 364 xmlNewEntityInputStream (xmlParserCtxtPtr ctxt, | 364 xmlNewEntityInputStream (xmlParserCtxtPtr ctxt, |
| (...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 635 */ | 635 */ |
| 636 XMLPUBFUN void XMLCALL | 636 XMLPUBFUN void XMLCALL |
| 637 xmlErrMemory (xmlParserCtxtPtr ctxt, | 637 xmlErrMemory (xmlParserCtxtPtr ctxt, |
| 638 const char *extra); | 638 const char *extra); |
| 639 #endif | 639 #endif |
| 640 | 640 |
| 641 #ifdef __cplusplus | 641 #ifdef __cplusplus |
| 642 } | 642 } |
| 643 #endif | 643 #endif |
| 644 #endif /* __XML_PARSER_INTERNALS_H__ */ | 644 #endif /* __XML_PARSER_INTERNALS_H__ */ |
| OLD | NEW |