summaryrefslogtreecommitdiff
path: root/include/dom/core/implementation.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/dom/core/implementation.h')
-rw-r--r--include/dom/core/implementation.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/dom/core/implementation.h b/include/dom/core/implementation.h
index 6b3f143..0094217 100644
--- a/include/dom/core/implementation.h
+++ b/include/dom/core/implementation.h
@@ -19,6 +19,16 @@ struct dom_document_type;
typedef const char *dom_implementation;
+typedef enum dom_implementation_type {
+ DOM_IMPLEMENTATION_CORE = 0,
+ DOM_IMPLEMENTATION_XML = (1 << 0), /* not implemented */
+ DOM_IMPLEMENTATION_HTML = (1 << 1),
+
+ DOM_IMPLEMENTATION_ALL = DOM_IMPLEMENTATION_CORE |
+ DOM_IMPLEMENTATION_XML |
+ DOM_IMPLEMENTATION_HTML
+} dom_implementation_type;
+
dom_exception dom_implementation_has_feature(
const char *feature, const char *version,
bool *result);
@@ -30,6 +40,7 @@ dom_exception dom_implementation_create_document_type(
struct dom_document_type **doctype);
dom_exception dom_implementation_create_document(
+ uint32_t impl_type,
const char *namespace, const char *qname,
struct dom_document_type *doctype,
dom_alloc alloc, void *pw,