1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/* $Id: core.h,v 1.13 2003/12/20 22:42:54 pasky Exp $ */
#ifndef EL__SCRIPTING_LUA_CORE_H
#define EL__SCRIPTING_LUA_CORE_H
#ifdef HAVE_LUA
#include <lua.h> /* This is standard include. */
#ifdef HAVE_LAUXLIB_H
#include <lauxlib.h> /* needed for lua_ref, lua_unref */
#endif
#ifdef HAVE_LUA_PCALL
#define lua_call(L,nargs,nresults) lua_pcall(L,nargs,nresults,0)
#define lua_open(x) (lua_open)()
#endif
#ifndef LUA_ALERT
#define LUA_ALERT "alert"
#endif
#include "modules/module.h"
#include "sched/event.h"
#include "sched/session.h"
extern lua_State *lua_state;
int prepare_lua(struct session *);
void finish_lua(void);
void alert_lua_error(unsigned char *);
void alert_lua_error2(unsigned char *, unsigned char *);
enum evhook_status dialog_lua_console(va_list ap, void *data);
enum evhook_status free_lua_console_history(va_list ap, void *data);
extern struct module lua_scripting_module;
#endif
#endif
|