summaryrefslogtreecommitdiff
path: root/javascript/jsapi/event.bnd
diff options
context:
space:
mode:
Diffstat (limited to 'javascript/jsapi/event.bnd')
-rw-r--r--javascript/jsapi/event.bnd37
1 files changed, 0 insertions, 37 deletions
diff --git a/javascript/jsapi/event.bnd b/javascript/jsapi/event.bnd
deleted file mode 100644
index b8b0aff47..000000000
--- a/javascript/jsapi/event.bnd
+++ /dev/null
@@ -1,37 +0,0 @@
-/* Binding to generate event interface
- *
- * Copyright 2012 Vincent Sanders <vince@netsurf-browser.org>
- *
- * This file is part of NetSurf, http://www.netsurf-browser.org/
- *
- * Released under the terms of the MIT License,
- * http://www.opensource.org/licenses/mit-license
- */
-
-webidlfile "dom.idl";
-
-hdrcomment "Copyright 2012 Vincent Sanders <vince@netsurf-browser.org>";
-hdrcomment "This file is part of NetSurf, http://www.netsurf-browser.org/";
-hdrcomment "Released under the terms of the MIT License,";
-hdrcomment " http://www.opensource.org/licenses/mit-license";
-
-preamble %{
-#include <stdlib.h>
-
-#include <dom/dom.h>
-
-#include "utils/config.h"
-#include "utils/log.h"
-#include "javascript/jsapi.h"
-
-#include "event.h"
-
-%}
-
-binding node {
- type js_libdom; /* the binding type */
-
- interface Event; /* Web IDL interface to generate */
-
- private "dom_event *" event;
-}