netsurf/desktop/nojs.c
Vincent Sanders 6ebaecccaf Totaly prefunctry binding to spidermonkey
svn path=/trunk/netsurf/; revision=13360
2012-01-01 21:42:38 +00:00

25 lines
262 B
C

#include "desktop/js.h"
#include "utils/log.h"
void js_initialise(void)
{
}
void js_finalise(void)
{
}
jscontext *js_newcontext(void)
{
return NULL;
}
void js_destroycontext(jscontext *ctx)
{
}
jsobject *js_newcompartment(jscontext *ctx)
{
return NULL;
}