0
0
mirror of https://github.com/rkd77/elinks.git synced 2025-09-21 19:46:23 -04:00

[quickjs] window.c

This commit is contained in:
Witold Filipczyk
2021-10-31 20:48:10 +01:00
parent 307ec0d173
commit 183dca1c10
5 changed files with 391 additions and 7 deletions

View File

@@ -138,6 +138,10 @@ void ecmascript_set_timeout(struct ecmascript_interpreter *interpreter, char *co
void ecmascript_set_timeout2(struct ecmascript_interpreter *interpreter, JS::HandleValue f, int timeout);
#endif
#ifdef CONFIG_QUICKJS
void ecmascript_set_timeout2q(struct ecmascript_interpreter *interpreter, JSValue f, int timeout);
#endif
int get_ecmascript_enable(struct ecmascript_interpreter *interpreter);
void check_for_rerender(struct ecmascript_interpreter *interpreter, const char* text);