summaryrefslogtreecommitdiff
path: root/include/dom/events/custom_event.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 /include/dom/events/custom_event.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 'include/dom/events/custom_event.h')
-rw-r--r--include/dom/events/custom_event.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/include/dom/events/custom_event.h b/include/dom/events/custom_event.h
new file mode 100644
index 0000000..cb97732
--- /dev/null
+++ b/include/dom/events/custom_event.h
@@ -0,0 +1,32 @@
+/*
+ * This file is part of libdom.
+ * Licensed under the MIT License,
+ * http://www.opensource.org/licenses/mit-license.php
+ * Copyright 2009 Bo Yang <struggleyb.nku@gmail.com>
+ */
+
+#ifndef dom_events_custom_event_h_
+#define dom_events_custom_event_h_
+
+#include <stdbool.h>
+#include <dom/core/exceptions.h>
+
+struct dom_string;
+
+typedef struct dom_custom_event dom_custom_event;
+
+dom_exception _dom_custom_event_get_detail(dom_custom_event *evt,
+ void **detail);
+#define dom_custom_event_get_detail(e, d) \
+ _dom_custom_event_get_detail((dom_custom_event *) (e),\
+ (void **) (d))
+
+dom_exception _dom_custom_event_init_ns(dom_custom_event *evt,
+ struct dom_string *namespace, struct dom_string *type,
+ bool bubble, bool cancelable, void *detail);
+#define dom_custom_event_init_ns(e, n, t, b, c, d) \
+ _dom_custom_event_init_ns((dom_custom_event *) (e), \
+ (struct dom_string *) (n), (struct dom_string *) (t), \
+ (bool) (b), (bool) (c), (void *) (d))
+
+#endif