summaryrefslogtreecommitdiff
path: root/javascript/duktape/prototypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'javascript/duktape/prototypes.h')
-rw-r--r--javascript/duktape/prototypes.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/javascript/duktape/prototypes.h b/javascript/duktape/prototypes.h
new file mode 100644
index 000000000..380b74111
--- /dev/null
+++ b/javascript/duktape/prototypes.h
@@ -0,0 +1,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
+