summaryrefslogtreecommitdiff
path: root/javascript/duktape/prototypes.h
blob: 1f25424ac7c9318fb23b08bffa61569d79d01bc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef DUKTAPE_PROTOTYPES_H
#define DUKTAPE_PROTOTYPES_H

DUKKY_DECLARE_INTERFACE(event_target);
DUKKY_DECLARE_INTERFACE(window, struct browser_window *, struct html_content *);
DUKKY_DECLARE_INTERFACE(node, struct dom_node *);
DUKKY_DECLARE_INTERFACE(character_data, struct dom_node_character_data *);
DUKKY_DECLARE_INTERFACE(text, struct dom_node_text *);
DUKKY_DECLARE_INTERFACE(comment, struct dom_node_comment *);
DUKKY_DECLARE_INTERFACE(document, struct dom_document *);
DUKKY_DECLARE_INTERFACE(element, struct dom_element *);
DUKKY_DECLARE_INTERFACE(html_element, struct dom_html_element *);
DUKKY_DECLARE_INTERFACE(html_unknown_element, struct dom_html_element *);
DUKKY_DECLARE_INTERFACE(html_collection, struct dom_html_collection *);
DUKKY_DECLARE_INTERFACE(node_list, struct dom_nodelist *);

#endif