mirror of
https://github.com/rkd77/elinks.git
synced 2025-01-03 14:57:44 -05:00
19 lines
454 B
C
19 lines
454 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 JSFunctionSpec history_funcs[];
|
|
|
|
extern const JSClass location_class;
|
|
extern const JSFunctionSpec location_funcs[];
|
|
extern const JSPropertySpec location_props[];
|
|
|
|
void location_goto(struct document_view *doc_view, unsigned char *url);
|
|
|
|
#endif
|