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/js.h | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 javascript/js.h (limited to 'javascript/js.h') diff --git a/javascript/js.h b/javascript/js.h new file mode 100644 index 000000000..d8e241564 --- /dev/null +++ b/javascript/js.h @@ -0,0 +1,39 @@ +/* + * 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 + * Interface to javascript engine functions. + */ + +#ifndef _NETSURF_JAVASCRIPT_JS_H_ +#define _NETSURF_JAVASCRIPT_JS_H_ + +typedef struct jscontext jscontext; +typedef struct jsobject jsobject; + +void js_initialise(void); +void js_finalise(void); + +jscontext *js_newcontext(void); +void js_destroycontext(jscontext *ctx); + +jsobject *js_newcompartment(jscontext *ctx, struct content* c); + +bool js_exec(jscontext *ctx, const char *txt, int txtlen); + +#endif /* _NETSURF_JAVASCRIPT_JS_H_ */ -- cgit v1.2.3