1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-12-25 23:21:26 +03:00

expose xmlTextReaderSetup function

svn path=/trunk/; revision=3571
This commit is contained in:
Aleksey Sanin 2007-01-03 23:13:12 +00:00
parent 9cb1b64dde
commit d837764002
4 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Wed Jan 3 16:05:21 PST 2007 Aleksey Sanin <aleksey@aleksey.com>
* xmlreader.c include/libxml/xmlreader.h win32/libxml2.def.src:
expose xmlTextReaderSetup() function
Wed Jan 3 16:14:13 CET 2007 Daniel Veillard <daniel@veillard.com>
* configure.in: adapt the extra versioning code to SVN

View File

@ -113,9 +113,15 @@ XMLPUBFUN xmlTextReaderPtr XMLCALL
const char *URI);
XMLPUBFUN xmlTextReaderPtr XMLCALL
xmlNewTextReaderFilename(const char *URI);
XMLPUBFUN void XMLCALL
xmlFreeTextReader (xmlTextReaderPtr reader);
XMLPUBFUN int XMLCALL
xmlTextReaderSetup(xmlTextReaderPtr reader,
xmlParserInputBufferPtr input, const char *URL,
const char *encoding, int options);
/*
* Iterators
*/

View File

@ -1949,6 +1949,7 @@ xmlTextReaderSetErrorHandler
xmlTextReaderSetParserProp
xmlTextReaderSetSchema
xmlTextReaderSetStructuredErrorHandler
xmlTextReaderSetup
xmlTextReaderStandalone
xmlTextReaderValue
xmlTextReaderXmlLang

View File

@ -4855,7 +4855,7 @@ xmlTextReaderGetErrorHandler(xmlTextReaderPtr reader,
*
* Returns 0 in case of success and -1 in case of error.
*/
static int
int
xmlTextReaderSetup(xmlTextReaderPtr reader,
xmlParserInputBufferPtr input, const char *URL,
const char *encoding, int options)