From 6b81f6a293abf7174525a812882edefe3651a6fe Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Thu, 20 Feb 2020 11:29:25 +0000 Subject: [PATCH] Include : - aggiornamento prototipi. --- EInAPI.h | 3 ++- EMkMachMgr.h | 3 ++- EXeExecutor.h | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/EInAPI.h b/EInAPI.h index ae5b055..db204b8 100644 --- a/EInAPI.h +++ b/EInAPI.h @@ -697,7 +697,8 @@ EIN_EXPORT BOOL __stdcall EgtTdbGetToolHolderDir( wchar_t*& wsTHolderDir) ; // Setup EIN_EXPORT int __stdcall EgtGetCurrSetup( void) ; EIN_EXPORT BOOL __stdcall EgtImportSetup( const wchar_t* wsName) ; -EIN_EXPORT BOOL __stdcall EgtUpdateSetup( void) ; +EIN_EXPORT BOOL __stdcall EgtUpdateCurrSetup( void) ; +EIN_EXPORT BOOL __stdcall EgtEraseCurrSetup( void) ; // Machinings DataBase EIN_EXPORT BOOL __stdcall EgtMdbGetMachiningNewName( const wchar_t* wsName, wchar_t*& wsNewName) ; EIN_EXPORT BOOL __stdcall EgtMdbAddMachining( const wchar_t* wsName, int nType) ; diff --git a/EMkMachMgr.h b/EMkMachMgr.h index e06f184..fa8f0e5 100644 --- a/EMkMachMgr.h +++ b/EMkMachMgr.h @@ -144,7 +144,8 @@ class __declspec( novtable) IMachMgr virtual bool ImportSetup( const std::string& sName) = 0 ; virtual bool VerifyCurrSetup( STRVECTOR& vsErrors) = 0 ; virtual bool FindToolInCurrSetup( const std::string& sTool) = 0 ; - virtual bool UpdateSetup( void) = 0 ; + virtual bool UpdateCurrSetup( void) = 0 ; + virtual bool EraseCurrSetup( void) = 0 ; // Machinings DataBase virtual bool MdbGetMachiningNewName( std::string& sName) const = 0 ; virtual bool MdbAddMachining( const std::string& sName, int nType) = 0 ; diff --git a/EXeExecutor.h b/EXeExecutor.h index aaac181..2ebc2c7 100644 --- a/EXeExecutor.h +++ b/EXeExecutor.h @@ -829,7 +829,8 @@ EXE_EXPORT bool ExeGetDefaultSetupName( std::string& sName) ; EXE_EXPORT bool ExeImportSetup( const std::string& sName) ; EXE_EXPORT bool ExeVerifyCurrSetup( STRVECTOR& vsErrors) ; EXE_EXPORT bool ExeFindToolInCurrSetup( const std::string& sTool) ; -EXE_EXPORT bool ExeUpdateSetup( void) ; +EXE_EXPORT bool ExeUpdateCurrSetup( void) ; +EXE_EXPORT bool ExeEraseCurrSetup( void) ; // Machinings Database EXE_EXPORT bool ExeMdbGetMachiningNewName( std::string& sName) ; EXE_EXPORT bool ExeMdbAddMachining( const std::string& sName, int nType) ;