Include :

- aggiornamento prototipi.
This commit is contained in:
Dario Sassi
2020-02-20 11:29:25 +00:00
parent fe7964ad22
commit 6b81f6a293
3 changed files with 6 additions and 3 deletions
+2 -1
View File
@@ -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) ;
+2 -1
View File
@@ -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 ;
+2 -1
View File
@@ -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) ;