lua.CheckType

This commit is contained in:
Glenn Maynard
2007-04-07 16:40:31 +00:00
parent dca60a0b88
commit 03a2f87d1f
+8
View File
@@ -891,6 +891,13 @@ namespace
LOG->Warn( "%s", sString.c_str() ); LOG->Warn( "%s", sString.c_str() );
return 0; return 0;
} }
static int CheckType( lua_State *L )
{
RString sType = SArg(1);
bool bRet = LuaBinding::CheckLuaObjectType( L, 2, sType );
LuaHelpers::Push( L, bRet );
return 1;
}
static int ReadFile( lua_State *L ) static int ReadFile( lua_State *L )
{ {
RString sPath = SArg(1); RString sPath = SArg(1);
@@ -958,6 +965,7 @@ namespace
{ {
LIST_METHOD( Trace ), LIST_METHOD( Trace ),
LIST_METHOD( Warn ), LIST_METHOD( Warn ),
LIST_METHOD( CheckType ),
LIST_METHOD( ReadFile ), LIST_METHOD( ReadFile ),
LIST_METHOD( RunWithThreadVariables ), LIST_METHOD( RunWithThreadVariables ),
LIST_METHOD( GetThreadVariable ), LIST_METHOD( GetThreadVariable ),