mirror of
https://github.com/rkd77/elinks.git
synced 2025-01-03 14:57:44 -05:00
19 lines
589 B
C
19 lines
589 B
C
#ifndef EL__SCRIPTING_SMJS_ELINKS_OBJECT_H
|
|
#define EL__SCRIPTING_SMJS_ELINKS_OBJECT_H
|
|
|
|
#include "ecmascript/spidermonkey/util.h"
|
|
|
|
/* This is the all-powerful elinks object through which all client scripts
|
|
* will interface with ELinks. */
|
|
extern JSObject *smjs_elinks_object;
|
|
|
|
/* Initialise elinks_object. */
|
|
void smjs_init_elinks_object(void);
|
|
|
|
/* Invoke elinks.<method> with the given arguments and put the return value
|
|
* into *rval. */
|
|
JSBool smjs_invoke_elinks_object_method(unsigned char *method,
|
|
jsval argv[], int argc, jsval *rval);
|
|
|
|
#endif
|