mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
14 lines
325 B
C
14 lines
325 B
C
|
|
#ifndef EL__ECMASCRIPT_SPIDERMONKEY_DOCUMENT_H
|
|
#define EL__ECMASCRIPT_SPIDERMONKEY_DOCUMENT_H
|
|
|
|
#include "ecmascript/spidermonkey/util.h"
|
|
|
|
extern JSClass document_class;
|
|
extern const spidermonkeyFunctionSpec document_funcs[];
|
|
extern JSPropertySpec document_props[];
|
|
|
|
JSObject *getDocument(JSContext *ctx, void *doc);
|
|
|
|
#endif
|