mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
ed17eb18df
(cherry picked from commit 6bfaa7ca8d
)
Conflicts:
src/ecmascript/spidermonkey/form.c
src/scripting/smjs/elinks_object.c
19 lines
474 B
C
19 lines
474 B
C
|
|
#ifndef EL__ECMASCRIPT_SPIDERMONKEY_LOCATION_H
|
|
#define EL__ECMASCRIPT_SPIDERMONKEY_LOCATION_H
|
|
|
|
#include "ecmascript/spidermonkey/util.h"
|
|
|
|
struct document_view;
|
|
|
|
extern const JSClass history_class;
|
|
extern const spidermonkeyFunctionSpec history_funcs[];
|
|
|
|
extern const JSClass location_class;
|
|
extern const spidermonkeyFunctionSpec location_funcs[];
|
|
extern const JSPropertySpec location_props[];
|
|
|
|
void location_goto(struct document_view *doc_view, unsigned char *url);
|
|
|
|
#endif
|