0
0
mirror of https://github.com/rkd77/elinks.git synced 2025-06-30 22:19:29 -04:00
Witold Filipczyk 25dd2ecae9 Changed ecmascript engine to mozjs-17.0.
Was not tested, especially smjs is likely buggy.
2019-02-10 21:00:37 +01:00

19 lines
456 B
C

#ifndef EL__ECMASCRIPT_SPIDERMONKEY_LOCATION_H
#define EL__ECMASCRIPT_SPIDERMONKEY_LOCATION_H
#include "ecmascript/spidermonkey/util.h"
struct document_view;
extern JSClass history_class;
extern const spidermonkeyFunctionSpec history_funcs[];
extern JSClass location_class;
extern const spidermonkeyFunctionSpec location_funcs[];
extern JSPropertySpec location_props[];
void location_goto(struct document_view *doc_view, unsigned char *url);
#endif