summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2002-04-23 07:12:20 +0000
committerDaniel Veillard <veillard@src.gnome.org>2002-04-23 07:12:20 +0000
commit88c5891a25c1151a89f021e915d9efb7e58bfbf7 (patch)
tree25b9cf2f0e946dfcc6979abadcff9e1e93eb3191 /include
parente19fc23b6427f4df516af7b3f6df7baa942e4207 (diff)
downloadlibxml2-88c5891a25c1151a89f021e915d9efb7e58bfbf7.tar.gz
more work on Schemas updated the test list Daniel
* Makefile.am xmlschemas.c xmlschemastypes.c: more work on Schemas * test/schemas result/schemas: updated the test list Daniel
Diffstat (limited to 'include')
-rw-r--r--include/libxml/schemasInternals.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/libxml/schemasInternals.h b/include/libxml/schemasInternals.h
index 1322c4cb..e59e1576 100644
--- a/include/libxml/schemasInternals.h
+++ b/include/libxml/schemasInternals.h
@@ -69,7 +69,8 @@ typedef enum {
XML_SCHEMA_CONTENT_MIXED,
XML_SCHEMA_CONTENT_SIMPLE,
XML_SCHEMA_CONTENT_MIXED_OR_ELEMENTS,
- XML_SCHEMA_CONTENT_BASIC
+ XML_SCHEMA_CONTENT_BASIC,
+ XML_SCHEMA_CONTENT_ANY
} xmlSchemaContentType;
typedef struct _xmlSchemaVal xmlSchemaVal;
@@ -206,6 +207,7 @@ struct _xmlSchemaElement {
xmlChar *value;
struct _xmlSchemaElement *refDecl;
xmlRegexpPtr contModel;
+ xmlSchemaContentType contentType;
};
/**