Include :

- aggiornamento interfacce.
This commit is contained in:
Dario Sassi
2017-02-04 18:43:46 +00:00
parent 88424f88a8
commit d3e04132f2
3 changed files with 8 additions and 0 deletions
+3
View File
@@ -522,6 +522,9 @@ EIN_EXPORT int __stdcall EgtVerifyCutAsSplitting( int nMchId) ;
// Machining
EIN_EXPORT BOOL __stdcall EgtInitMachMgr( const wchar_t* wsMachinesDir) ;
// Errors
EIN_EXPORT int __stdcall EgtGetLastMachMgrErrorId( void) ;
EIN_EXPORT wchar_t* __stdcall EgtGetLastMachMgrErrorString( void) ;
// Machines
EIN_EXPORT BOOL __stdcall EgtSetCurrMachine( const wchar_t* wsMachineName) ;
EIN_EXPORT BOOL __stdcall EgtGetCurrMachineName( wchar_t*& wsMachineName) ;
+2
View File
@@ -34,6 +34,8 @@ class __declspec( novtable) IMachMgr
int nContextId, const std::string& sLuaLibsDir, const std::string& sLuaLastRequire) = 0 ;
virtual bool Update( void) = 0 ;
virtual bool Insert( int nInsGrp) = 0 ;
virtual int GetLastErrorId( void) = 0 ;
virtual std::string GetLastErrorString( void) = 0 ;
// Machines
virtual bool SetCurrMachine( const std::string& sMachineName) = 0 ;
virtual bool GetCurrMachineName( std::string& sMachineName) const = 0 ;
+3
View File
@@ -568,6 +568,9 @@ EXE_EXPORT int ExeVerifyCutAsSplitting( int nMchId) ;
EXE_EXPORT bool ExeInitMachMgr( const std::string& sMachinesDir) ;
EXE_EXPORT bool ExeUpdateMachMgr( void) ;
EXE_EXPORT bool ExeInsertMachMgr( int nInsGrp) ;
// Errors
EXE_EXPORT int ExeGetLastMachMgrErrorId( void) ;
EXE_EXPORT std::string ExeGetLastMachMgrErrorString( void) ;
// Machines
EXE_EXPORT bool ExeSetCurrMachine( const std::string& sMachineName) ;
EXE_EXPORT bool ExeGetCurrMachineName( std::string& sMachineName) ;