EgtInterface 1.6l4 :

- aggiunta EgtLuaCallFunction.
This commit is contained in:
Dario Sassi
2015-12-28 10:39:36 +00:00
parent 8b946f136e
commit a356710c5a
2 changed files with 9 additions and 2 deletions
+9 -2
View File
@@ -20,6 +20,13 @@
using namespace std ;
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtLuaCreateGlobTable( const wchar_t* wsVar)
{
return ( ExeLuaCreateGlobTable( wstrztoA( wsVar)) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtLuaSetGlobBoolVar( const wchar_t* wsVar, BOOL bVal)
@@ -99,9 +106,9 @@ __stdcall EgtLuaResetGlobVar( const wchar_t* wsVar)
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtLuaCreateGlobTable( const wchar_t* wsVar)
__stdcall EgtLuaCallFunction( const wchar_t* wsFun)
{
return ( ExeLuaCreateGlobTable( wstrztoA( wsVar)) ? TRUE : FALSE) ;
return ( ExeLuaCallFunction( wstrztoA( wsFun)) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------