2014-04-27 15:57:47 -04:00
|
|
|
|
2014-04-27 16:03:34 -04:00
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
struct lua_State;
|
|
|
|
struct tolua_Error
|
|
|
|
{
|
|
|
|
int index;
|
|
|
|
int array;
|
|
|
|
const char* type;
|
|
|
|
};
|
|
|
|
|
|
|
|
void tolua_error (lua_State* L, const char* msg, tolua_Error* err)
|
|
|
|
{
|
|
|
|
__coverity_panic__();
|
|
|
|
}
|
|
|
|
|
2014-04-27 15:57:47 -04:00
|
|
|
}
|