Include :

- aggiornamento prototipi.
This commit is contained in:
Dario Sassi
2018-10-05 08:54:51 +00:00
parent 59feb68c9e
commit 58b12dfa36
3 changed files with 4 additions and 1 deletions
+1
View File
@@ -710,6 +710,7 @@ EIN_EXPORT BOOL __stdcall EgtSpecialUpdateDisposition( int nId) ;
// Machinings
EIN_EXPORT int __stdcall EgtAddMachining( const wchar_t* wsName, const wchar_t* wsMachining) ;
EIN_EXPORT int __stdcall EgtCreateMachining( const wchar_t* wsName, int nMchType, const wchar_t* wsTool) ;
EIN_EXPORT int __stdcall EgtCopyMachining( const wchar_t* wsName, const wchar_t* wsSouName) ;
EIN_EXPORT BOOL __stdcall EgtSetCurrMachining( int nId) ;
EIN_EXPORT BOOL __stdcall EgtResetCurrMachining( void) ;
EIN_EXPORT int __stdcall EgtGetCurrMachining( void) ;
+2 -1
View File
@@ -200,6 +200,7 @@ class __declspec( novtable) IMachMgr
// Operations : machinings
virtual int AddMachining( const std::string& sName, const std::string& sMachining) = 0 ;
virtual int AddMachining( const std::string& sName, int nMchType, const std::string& sTool) = 0 ;
virtual int CopyMachining( const std::string& sName, const std::string& sSouName) = 0 ;
virtual bool SetCurrMachining( int nId) = 0 ;
virtual bool ResetCurrMachining( void) = 0 ;
virtual int GetCurrMachining( void) const = 0 ;
@@ -217,7 +218,7 @@ class __declspec( novtable) IMachMgr
virtual bool RemovePreviewMachiningTool( void) const = 0 ;
virtual int PreviewMachiningTool( int nEntId, int nFlag) const = 0 ;
virtual bool GetMachiningParam( int nType, bool& bVal) const = 0 ;
virtual bool GetMachiningParam( int nType, int& dVal) const = 0 ;
virtual bool GetMachiningParam( int nType, int& nVal) const = 0 ;
virtual bool GetMachiningParam( int nType, double& dVal) const = 0 ;
virtual bool GetMachiningParam( int nType, std::string& sVal) const = 0 ;
virtual bool GetMachiningGeometry( SELVECTOR& vIds) const = 0 ;
+1
View File
@@ -803,6 +803,7 @@ EXE_EXPORT bool ExeSpecialUpdateDisposition( int nId) ;
// Machinings
EXE_EXPORT int ExeAddMachining( const std::string& sName, const std::string& sMachining) ;
EXE_EXPORT int ExeAddMachining( const std::string& sName, int nMchType, const std::string& sTool) ;
EXE_EXPORT int ExeCopyMachining( const std::string& sName, const std::string& sSouName) ;
EXE_EXPORT bool ExeSetCurrMachining( int nId) ;
EXE_EXPORT bool ExeResetCurrMachining( void) ;
EXE_EXPORT int ExeGetCurrMachining( void) ;