Files
EgtInterface/API_TscExec.cpp
T
Dario Sassi 8bc0e986b2 EgtInterface 1.6e2 :
- esecutore e lua scorporato in EgtExecutor.
2015-05-05 22:14:56 +00:00

43 lines
1.3 KiB
C++

//----------------------------------------------------------------------------
// 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/EGnStringConverter.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) ;
}