mirror of
https://github.com/rkd77/elinks.git
synced 2025-02-02 15:09:23 -05:00
17 lines
399 B
C
17 lines
399 B
C
|
|
#ifndef EL__ECMASCRIPT_SPIDERMONKEY_FORM_H
|
|
#define EL__ECMASCRIPT_SPIDERMONKEY_FORM_H
|
|
|
|
#include "ecmascript/spidermonkey/util.h"
|
|
|
|
struct form;
|
|
|
|
extern JSClass forms_class;
|
|
extern const spidermonkeyFunctionSpec forms_funcs[];
|
|
extern JSPropertySpec forms_props[];
|
|
|
|
JSObject *get_form_object(JSContext *ctx, JSObject *jsdoc, struct form *form);
|
|
JSObject *getForms(JSContext *ctx, void *node);
|
|
|
|
#endif
|