mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
16 lines
377 B
C
16 lines
377 B
C
#ifndef EL__ECMASCRIPT_SPIDERMONKEY_FORM_H
|
|
#define EL__ECMASCRIPT_SPIDERMONKEY_FORM_H
|
|
|
|
#include "ecmascript/spidermonkey/util.h"
|
|
|
|
struct form;
|
|
|
|
extern JSClass form_class;
|
|
extern JSClass forms_class;
|
|
extern const spidermonkeyFunctionSpec forms_funcs[];
|
|
extern JSPropertySpec forms_props[];
|
|
|
|
JSObject *get_form_object(JSContext *ctx, JSObject *jsdoc, struct form *form);
|
|
|
|
#endif
|