EgtInterface :

- a EgtLuaExecFile aggiunto parametro bLogInfo.
This commit is contained in:
DarioS
2023-02-27 17:24:00 +01:00
parent a3f97a7ae3
commit fefea90082
+2 -2
View File
@@ -198,9 +198,9 @@ __stdcall EgtLuaExecLine( const wchar_t* wsLine)
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtLuaExecFile( const wchar_t* wsFilePath)
__stdcall EgtLuaExecFile( const wchar_t* wsFilePath, BOOL bLogInfo)
{
return ( ExeLuaExecFile( wstrztoA( wsFilePath)) ? TRUE : FALSE) ;
return ( ExeLuaExecFile( wstrztoA( wsFilePath), bLogInfo != FALSE) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------