summaryrefslogtreecommitdiff
path: root/src/html/html_document.h
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/html/html_document.h
parentf7ae4017ff50be5ef4eb3047ebbff4820550d5ed (diff)
downloadlibdom-081cf689356ef9138b67da2c687883b9c3354a63.tar.gz
libdom-081cf689356ef9138b67da2c687883b9c3354a63.tar.bz2
add context for default action function
Diffstat (limited to 'src/html/html_document.h')
-rw-r--r--src/html/html_document.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/html/html_document.h b/src/html/html_document.h
index ecc6236..67250f5 100644
--- a/src/html/html_document.h
+++ b/src/html/html_document.h
@@ -33,10 +33,13 @@ struct dom_html_document {
/* Create a HTMLDocument */
dom_exception _dom_html_document_create(
dom_events_default_action_fetcher daf,
+ void *daf_ctx,
dom_html_document **doc);
/* Initialise a HTMLDocument */
-dom_exception _dom_html_document_initialise(dom_html_document *doc,
- dom_events_default_action_fetcher daf);
+dom_exception _dom_html_document_initialise(
+ dom_html_document *doc,
+ dom_events_default_action_fetcher daf,
+ void *daf_ctx);
/* Finalise a HTMLDocument */
bool _dom_html_document_finalise(dom_html_document *doc);