mirror of
https://github.com/netsurf-browser/netsurf
synced 2025-01-21 01:42:08 +03:00
25 lines
262 B
C
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;
|
||
|
}
|