From 4c89c9d5df511852f2743d277cf39611b49ce7f2 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Sun, 10 Jun 2012 22:17:30 +0000 Subject: improve javascript support svn path=/trunk/netsurf/; revision=13962 --- javascript/global.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 javascript/global.h (limited to 'javascript/global.h') diff --git a/javascript/global.h b/javascript/global.h new file mode 100644 index 000000000..329c82c8d --- /dev/null +++ b/javascript/global.h @@ -0,0 +1,28 @@ +/* + * Copyright 2012 Vincent Sanders + * + * This file is part of NetSurf, http://www.netsurf-browser.org/ + * + * NetSurf is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; version 2 of the License. + * + * NetSurf is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +/** \file + * spidermonkey engine global functions. + */ + +#ifndef _NETSURF_JAVASCRIPT_GLOBAL_H_ +#define _NETSURF_JAVASCRIPT_GLOBAL_H_ + +bool js_new_globalfunc(JSContext *cx, JSObject *global); + +#endif -- cgit v1.2.3