src/lua_console.h
branchnew-lib-errors
changeset 218 5229a5d098b2
parent 217 7728d6ec3abf
child 219 cefec18b8268
--- a/src/lua_console.h	Wed May 27 23:57:48 2009 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,31 +0,0 @@
-#ifndef LUA_CONSOLE_H
-#define LUA_CONSOLE_H
-
-/**
- * @file
- *
- * An interactive lua console
- */
-#include "lua_thread.h"
-#include "console.h"
-
-#include <lua5.1/lua.h>
-
-/**
- * The lua console state
- */
-struct lua_console;
-
-/**
- * Create a new lua console based on the given low-level console, operating on the given nexus
- *
- * This overrides the console callbacks.
- */
-err_t lua_console_create (struct lua_console **lc_ptr, struct console *console, struct nexus_lua *lua, error_t *err);
-
-/**
- * Destroy the lua console state
- */
-void lua_console_destroy (struct lua_console *lc);
-
-#endif