From 2a5c59a38cc8ec42c7b7e9d428d196ea2fbd7390 Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Wed, 11 Jan 2017 17:20:33 +0000 Subject: [PATCH] Include : - aggiornamento prototipi. --- EInAPI.h | 1 + EMkMachMgr.h | 1 + EXeExecutor.h | 1 + 3 files changed, 3 insertions(+) diff --git a/EInAPI.h b/EInAPI.h index ed2ed14..046e614 100644 --- a/EInAPI.h +++ b/EInAPI.h @@ -698,6 +698,7 @@ EIN_EXPORT int __stdcall EgtGetBaseId( const wchar_t* wsBase) ; EIN_EXPORT int __stdcall EgtGetTableId( const wchar_t* wsTable) ; EIN_EXPORT int __stdcall EgtGetAxisId( const wchar_t* wsAxis) ; EIN_EXPORT int __stdcall EgtGetHeadId( const wchar_t* wsHead) ; +EIN_EXPORT int __stdcall EgtGetHeadExitCount( const wchar_t* wsHead) ; // Machine Calc EIN_EXPORT BOOL __stdcall EgtSetCalcTool( const wchar_t* wsTool, const wchar_t* wsHead, int nExit) ; EIN_EXPORT BOOL __stdcall EgtGetCalcTipFromPositions( double dX, double dY, double dZ, double dAngA, double dAngB, diff --git a/EMkMachMgr.h b/EMkMachMgr.h index 74b0a8b..0016461 100644 --- a/EMkMachMgr.h +++ b/EMkMachMgr.h @@ -236,6 +236,7 @@ class __declspec( novtable) IMachMgr virtual int GetTableId( const std::string& sTable) const = 0 ; virtual int GetAxisId( const std::string& sAxis) const = 0 ; virtual int GetHeadId( const std::string& sHead) const = 0 ; + virtual int GetHeadExitCount( const std::string& sHead) const = 0 ; virtual bool GetAxisToken( const std::string& sAxis, std::string& sToken) const = 0 ; virtual bool SetAxisPos( const std::string& sAxis, double dVal) = 0 ; virtual bool GetAxisPos( const std::string& sAxis, double& dVal) const = 0 ; diff --git a/EXeExecutor.h b/EXeExecutor.h index a44c738..9b45c06 100644 --- a/EXeExecutor.h +++ b/EXeExecutor.h @@ -751,6 +751,7 @@ EXE_EXPORT int ExeGetBaseId( const std::string& sBase) ; EXE_EXPORT int ExeGetTableId( const std::string& sTable) ; EXE_EXPORT int ExeGetAxisId( const std::string& sAxis) ; EXE_EXPORT int ExeGetHeadId( const std::string& sHead) ; +EXE_EXPORT int ExeGetHeadExitCount( const std::string& sHead) ; EXE_EXPORT bool ExeGetAxisToken( const std::string& sAxis, std::string& sToken) ; // Machine Calc EXE_EXPORT bool ExeSetCalcTable( const std::string& sTable) ;