summaryrefslogtreecommitdiff
path: root/src/core/node.h
diff options
context:
space:
mode:
authorBo Yang <struggleyb.nku@gmail.com>2009-08-13 09:33:24 +0000
committerBo Yang <struggleyb.nku@gmail.com>2009-08-13 09:33:24 +0000
commit13fadb12fb400818e0ccb4c38b3bfce70ccfdad2 (patch)
tree19c55b39d97567a37b88b49aaaac13b21b9f24ee /src/core/node.h
parentbf6bc398bd40e39a016725550f5b8446a01ee2d1 (diff)
downloadlibdom-13fadb12fb400818e0ccb4c38b3bfce70ccfdad2.tar.gz
libdom-13fadb12fb400818e0ccb4c38b3bfce70ccfdad2.tar.bz2
Merge the Events module (branches/struggleyb/libdom-events) back to trunk. :)
svn path=/trunk/dom/; revision=9236
Diffstat (limited to 'src/core/node.h')
-rw-r--r--src/core/node.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/node.h b/src/core/node.h
index 68776da..c1a4192 100644
--- a/src/core/node.h
+++ b/src/core/node.h
@@ -15,6 +15,9 @@
#include <dom/core/node.h>
#include <dom/functypes.h>
+#include "events/event_target.h"
+#include "events/mutation_event.h"
+
#include "utils/list.h"
/**
@@ -76,6 +79,8 @@ struct dom_node_internal {
uint32_t refcnt; /**< Reference count */
struct list_entry pending_list; /**< The document delete pending list */
+
+ dom_event_target_internal eti; /**< The EventTarget interface */
};
dom_node_internal * _dom_node_create(struct dom_document *doc);