From fefea90082578bc53a2e37f18c72e4e76490f429 Mon Sep 17 00:00:00 2001 From: DarioS Date: Mon, 27 Feb 2023 17:24:00 +0100 Subject: [PATCH] EgtInterface : - a EgtLuaExecFile aggiunto parametro bLogInfo. --- API_Lua.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/API_Lua.cpp b/API_Lua.cpp index b276510..74bc563 100644 --- a/API_Lua.cpp +++ b/API_Lua.cpp @@ -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) ; } //-----------------------------------------------------------------------------