diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2000-11-25 09:54:49 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2000-11-25 09:54:49 +0000 |
commit | ce6e98d693ffc5cb469e79b12377af928638fb6f (patch) | |
tree | c8866aec78dfed440abaf1bdafe6722579dd5852 /parserInternals.h | |
parent | 58770e762eb287d41b38e7e2abf156d3a9e913f4 (diff) | |
download | libxml2-ce6e98d693ffc5cb469e79b12377af928638fb6f.tar.gz |
Big OpenVMS patch: - nanohttp.c parser.[ch] tree.[ch] xmlIO.[ch] xmllint.c
Big OpenVMS patch:
- nanohttp.c parser.[ch] tree.[ch] xmlIO.[ch] xmllint.c xpath.c
parserInternals.h vms/build_libxml.com vms/config.vms Makefile.am:
integrated a set of OpenVMS changes from Howard Taylor
<Howard.Taylor@pacoast.com>
Daniel
Diffstat (limited to 'parserInternals.h')
-rw-r--r-- | parserInternals.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/parserInternals.h b/parserInternals.h index 646738cb..6588bd6c 100644 --- a/parserInternals.h +++ b/parserInternals.h @@ -4,6 +4,10 @@ * See Copyright for the status of this software. * * Daniel.Veillard@w3.org + * + * 14 Nov 2000 ht - truncated declaration of xmlParseElementChildrenContentDecl + * for VMS + * */ #ifndef __XML_PARSER_INTERNALS_H__ @@ -204,8 +208,14 @@ int xmlParseAttributeType (xmlParserCtxtPtr ctxt, void xmlParseAttributeListDecl(xmlParserCtxtPtr ctxt); xmlElementContentPtr xmlParseElementMixedContentDecl (xmlParserCtxtPtr ctxt); +#ifdef VMS +xmlElementContentPtr xmlParseElementChildrenContentD + (xmlParserCtxtPtr ctxt); +#define xmlParseElementChildrenContentDecl xmlParseElementChildrenContentD +#else xmlElementContentPtr xmlParseElementChildrenContentDecl (xmlParserCtxtPtr ctxt); +#endif int xmlParseElementContentDecl(xmlParserCtxtPtr ctxt, xmlChar *name, xmlElementContentPtr *result); |