summaryrefslogtreecommitdiff
path: root/include/dom/events/custom_event.h
blob: a5bc2f6b628ea41f23a386ed48ecbed191ae7838 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * 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>
#include <dom/core/string.h>

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, 
		dom_string *namespace, 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), \
		(dom_string *) (n), (dom_string *) (t), \
		(bool) (b), (bool) (c), (void *) (d))

#endif