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