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)
|
|
|
|
* Enno Rehling (enno@eressea-pbem.de)
|
|
|
|
*
|
|
|
|
* This program may not be used, modified or distributed without
|
|
|
|
* prior permission by the authors of Eressea.
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
#include <lua50/lua.h>
|
|
|
|
|
|
|
|
extern int lua_console(lua_State * L);
|
2006-04-16 14:48:55 +02:00
|
|
|
extern int lua_do(lua_State * L);
|
|
|
|
extern int (*lua_readline)(lua_State *l, const char *prompt);
|
2004-04-10 21:21:02 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|