2005-09-15 15:58:31 +02:00
|
|
|
|
|
|
|
|
#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;
|
2008-06-17 00:25:59 +03:00
|
|
|
extern const spidermonkeyFunctionSpec history_funcs[];
|
2005-09-15 15:58:31 +02:00
|
|
|
|
|
|
|
|
extern const JSClass location_class;
|
2008-06-17 00:25:59 +03:00
|
|
|
extern const spidermonkeyFunctionSpec location_funcs[];
|
2005-09-15 15:58:31 +02:00
|
|
|
extern const JSPropertySpec location_props[];
|
|
|
|
|
|
|
|
|
|
void location_goto(struct document_view *doc_view, unsigned char *url);
|
|
|
|
|
|
|
|
|
|
#endif
|