mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
12 lines
316 B
C
12 lines
316 B
C
#ifndef EL__ECMASCRIPT_SPIDERMONKEY_XHR_H
|
|
#define EL__ECMASCRIPT_SPIDERMONKEY_XHR_H
|
|
|
|
#include "ecmascript/spidermonkey/util.h"
|
|
|
|
extern JSClass xhr_class;
|
|
extern JSPropertySpec xhr_props[];
|
|
extern const spidermonkeyFunctionSpec xhr_funcs[];
|
|
bool xhr_constructor(JSContext* ctx, unsigned argc, JS::Value* vp);
|
|
|
|
#endif
|