summaryrefslogtreecommitdiff
path: root/src/core/document.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2013-02-19 23:27:10 +0000
committerVincent Sanders <vince@kyllikki.org>2013-02-19 23:27:10 +0000
commit081cf689356ef9138b67da2c687883b9c3354a63 (patch)
treec482500d137ff527279e15f1167ac3d2022fb013 /src/core/document.c
parentf7ae4017ff50be5ef4eb3047ebbff4820550d5ed (diff)
downloadlibdom-081cf689356ef9138b67da2c687883b9c3354a63.tar.gz
libdom-081cf689356ef9138b67da2c687883b9c3354a63.tar.bz2
add context for default action function
Diffstat (limited to 'src/core/document.c')
-rw-r--r--src/core/document.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/core/document.c b/src/core/document.c
index 97d93a6..8f316ff 100644
--- a/src/core/document.c
+++ b/src/core/document.c
@@ -79,7 +79,8 @@ static dom_exception dom_document_dup_node(dom_document *doc,
* The returned document will already be referenced.
*/
dom_exception _dom_document_create(dom_events_default_action_fetcher daf,
- dom_document **doc)
+ void *daf_ctx,
+ dom_document **doc)
{
dom_document *d;
dom_exception err;
@@ -98,7 +99,7 @@ dom_exception _dom_document_create(dom_events_default_action_fetcher daf,
* reaches zero. Documents own themselves (this simplifies the
* rest of the code, as it doesn't need to special case Documents)
*/
- err = _dom_document_initialise(d, daf);
+ err = _dom_document_initialise(d, daf, daf_ctx);
if (err != DOM_NO_ERR) {
/* Clean up document */
free(d);
@@ -111,8 +112,9 @@ dom_exception _dom_document_create(dom_events_default_action_fetcher daf,
}
/* Initialise the document */
-dom_exception _dom_document_initialise(dom_document *doc,
- dom_events_default_action_fetcher daf)
+dom_exception _dom_document_initialise(dom_document *doc,
+ dom_events_default_action_fetcher daf,
+ void *daf_ctx)
{
dom_exception err;
dom_string *name;
@@ -248,7 +250,7 @@ dom_exception _dom_document_initialise(dom_document *doc,
}
/* We should not pass a NULL when all things hook up */
- return _dom_document_event_internal_initialise(doc, &doc->dei, daf);
+ return _dom_document_event_internal_initialise(doc, &doc->dei, daf, daf_ctx);
}