mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
15 lines
326 B
C
15 lines
326 B
C
|
|
||
|
#ifndef EL__ECMASCRIPT_SPIDERMONKEY_ELEMENT_H
|
||
|
#define EL__ECMASCRIPT_SPIDERMONKEY_ELEMENT_H
|
||
|
|
||
|
#include "ecmascript/spidermonkey/util.h"
|
||
|
#include <htmlcxx/html/ParserDom.h>
|
||
|
using namespace htmlcxx;
|
||
|
|
||
|
extern JSClass element_class;
|
||
|
extern JSPropertySpec element_props[];
|
||
|
|
||
|
JSObject *getElement(JSContext *ctx, void *node);
|
||
|
|
||
|
#endif
|