From 2bea506f837c9a1e9c12c448eb206e067770819c Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Wed, 14 Nov 2012 02:11:01 +0000 Subject: add Node interface binding just to get the prototype --- javascript/jsapi/node.bnd | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 javascript/jsapi/node.bnd (limited to 'javascript/jsapi/node.bnd') diff --git a/javascript/jsapi/node.bnd b/javascript/jsapi/node.bnd new file mode 100644 index 000000000..bcf0ef7b3 --- /dev/null +++ b/javascript/jsapi/node.bnd @@ -0,0 +1,34 @@ +/* Binding to generate Node interface + * + * Copyright 2012 Vincent Sanders + * + * 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 "; +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 + +#include "utils/config.h" +#include "utils/log.h" + +#include "javascript/jsapi.h" +#include "javascript/jsapi/binding.h" + +%} + +binding node { + type js_libdom; /* the binding type */ + + interface Node; /* Web IDL interface to generate */ +} -- cgit v1.2.3