mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
25dd2ecae9
Was not tested, especially smjs is likely buggy.
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
|