summaryrefslogtreecommitdiff
path: root/javascript/duktape/prototypes.h
blob: 380b741113479db31b0879edfc5b5637f68315f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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(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 *);

#endif