2004-04-10 21:21:02 +02:00
|
|
|
/* vi: set ts=2:
|
|
|
|
* Eressea PB(E)M host Christian Schlittchen (corwin@amber.kn-bremen.de)
|
|
|
|
* (C) 1998-2004 Katja Zedel (katze@felidae.kn-bremen.de)
|
2007-09-02 20:11:17 +02:00
|
|
|
* Enno Rehling (enno@eressea.de)
|
2004-04-10 21:21:02 +02:00
|
|
|
*
|
|
|
|
* This program may not be used, modified or distributed without
|
|
|
|
* prior permission by the authors of Eressea.
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2007-06-12 01:00:15 +02:00
|
|
|
#include <lua.hpp>
|
2004-04-10 21:21:02 +02:00
|
|
|
|
|
|
|
extern int lua_console(lua_State * L);
|
2006-04-16 14:48:55 +02:00
|
|
|
extern int lua_do(lua_State * L);
|
2008-04-19 18:12:13 +02:00
|
|
|
|
|
|
|
typedef int (*readline)(struct lua_State *, const char *);
|
|
|
|
extern void set_readline(readline foo);
|
2004-04-10 21:21:02 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|