|
Lua_icxx
1.02 (Aug 2011)
|
00001 /* 00002 This file is part of the Lua_icxx library. 00003 Copyright 2010 (c) by Oliver Schoenborn. 00004 License terms in LICENSE.txt. 00005 */ 00006 00007 00008 #ifndef LUA_ICXX_CALL_STATUS_INCLUDED 00009 #define LUA_ICXX_CALL_STATUS_INCLUDED 00010 00011 #include <lua.hpp> 00012 00013 00015 enum LuaErrCode 00016 { 00017 LUA_ERR_NONE = 0, 00018 LUA_ERR_SYNTAX = LUA_ERRSYNTAX, 00019 LUA_ERR_RUN = LUA_ERRRUN, 00020 LUA_ERR_MEM = LUA_ERRMEM, 00021 LUA_ERR_ERR = LUA_ERRERR, 00022 LUA_ERR_FILE = LUA_ERRFILE, 00023 LUA_NO_LUA = 100, 00024 }; 00025 00026 #endif // LUA_ICXX_CALL_STATUS_INCLUDED