2005-09-15 15:58:31 +02:00
|
|
|
#ifndef EL__SCRIPTING_SCRIPTING_H
|
|
|
|
#define EL__SCRIPTING_SCRIPTING_H
|
|
|
|
|
2020-10-05 20:14:55 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2005-09-15 15:58:31 +02:00
|
|
|
#ifdef CONFIG_SCRIPTING
|
|
|
|
|
|
|
|
struct module;
|
2005-10-21 04:07:43 +02:00
|
|
|
struct session;
|
|
|
|
|
|
|
|
void
|
|
|
|
report_scripting_error(struct module *module, struct session *ses,
|
2021-01-02 16:20:27 +01:00
|
|
|
char *msg);
|
2005-09-15 15:58:31 +02:00
|
|
|
|
|
|
|
extern struct module scripting_module;
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2020-10-05 20:14:55 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-09-15 15:58:31 +02:00
|
|
|
#endif
|