1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-10-01 03:36:26 -04:00
elinks/src/ecmascript/ecmascript-c.h

22 lines
327 B
C
Raw Normal View History

#ifndef EL__ECMASCRIPT_ECMASCRIPT_C_H
#define EL__ECMASCRIPT_ECMASCRIPT_C_H
2023-11-25 08:30:05 -05:00
#include "main/module.h"
#ifdef __cplusplus
extern "C" {
#endif
2023-11-25 08:13:10 -05:00
struct session;
int ecmascript_get_interpreter_count(void);
2023-11-25 08:13:10 -05:00
void toggle_ecmascript(struct session *ses);
2023-11-25 08:30:05 -05:00
extern struct module ecmascript_module;
#ifdef __cplusplus
}
#endif
#endif