mirror of
https://github.com/rkd77/elinks.git
synced 2025-06-30 22:19:29 -04:00
16 lines
359 B
C
16 lines
359 B
C
|
|
#ifndef EL__ECMASCRIPT_SPIDERMONKEY_FORM_H
|
|
#define EL__ECMASCRIPT_SPIDERMONKEY_FORM_H
|
|
|
|
#include "ecmascript/spidermonkey/util.h"
|
|
|
|
struct form_view;
|
|
|
|
extern JSClass forms_class;
|
|
extern const spidermonkeyFunctionSpec forms_funcs[];
|
|
extern JSPropertySpec forms_props[];
|
|
|
|
JSObject *get_form_object(JSContext *ctx, JSObject *jsdoc, struct form_view *fv);
|
|
|
|
#endif
|