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, 5 insertions, 6 deletions
diff --git a/include/dom/core/implementation.h b/include/dom/core/implementation.h
index d8959e6..cb95f84 100644
--- a/include/dom/core/implementation.h
+++ b/include/dom/core/implementation.h
@@ -30,20 +30,19 @@ dom_exception dom_implementation_has_feature(
dom_exception dom_implementation_create_document_type(
struct dom_implementation *impl, struct dom_string *qname,
struct dom_string *public_id, struct dom_string *system_id,
- struct dom_document_type **doctype,
- dom_alloc alloc, void *pw);
+ dom_alloc alloc, void *pw, struct lwc_context_s *ctx,
+ struct dom_document_type **doctype);
dom_exception dom_implementation_create_document(
struct dom_implementation *impl,
struct dom_string *namespace, struct dom_string *qname,
struct dom_document_type *doctype,
- struct dom_document **doc,
- dom_alloc alloc, void *pw);
+ dom_alloc alloc, void *pw, struct lwc_context_s *ctx,
+ struct dom_document **doc);
dom_exception dom_implementation_get_feature(
struct dom_implementation *impl,
struct dom_string *feature, struct dom_string *version,
- void **object,
- dom_alloc alloc, void *pw);
+ void **object);
#endif