//---------------------------------------------------------------------------- // EgalTech 2014-2014 //---------------------------------------------------------------------------- // File : API_TscExec.cpp Data : 01.09.14 Versione : 1.5i1 // Contenuto : Funzioni esecuzione TSC per API. // // // // Modifiche : 01.09.14 DS Creazione modulo. // // //---------------------------------------------------------------------------- //--------------------------- Include ---------------------------------------- #include "stdafx.h" #include "API.h" #include "/EgtDev/Include/EInAPI.h" #include "/EgtDev/Include/EXeExecutor.h" #include "/EgtDev/Include/EgtStringConverter.h" using namespace std ; //----------------------------------------------------------------------------- BOOL __stdcall EgtInitTscExec( void) { return ( ExeInitTscExec() ? TRUE : FALSE) ; } //----------------------------------------------------------------------------- BOOL __stdcall EgtTscExecFile( const wchar_t* wsFilePath) { return ( ExeTscExecFile( wstrztoA( wsFilePath)) ? TRUE : FALSE) ; } //----------------------------------------------------------------------------- BOOL __stdcall EgtTscExecLine( const wchar_t* wsLine) { return ( ExeTscExecLine( wstrztoA( wsLine)) ? TRUE : FALSE) ; }