From d5b6645a49cef6136d36541c42c995e9fb1aa5cb Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Fri, 21 Apr 2017 09:43:13 +0000 Subject: [PATCH] Include : - aggiornamento prototipi. --- EInAPI.h | 2 +- EMkMachMgr.h | 2 +- EXeExecutor.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/EInAPI.h b/EInAPI.h index 7a984c8..f58e0ef 100644 --- a/EInAPI.h +++ b/EInAPI.h @@ -697,7 +697,7 @@ EIN_EXPORT BOOL __stdcall EgtGetMachiningParamString( int nType, wchar_t*& wsVal EIN_EXPORT BOOL __stdcall EgtGetMachiningGeometry( int nInd, int* pnId, int* pnSub) ; EIN_EXPORT BOOL __stdcall EgtIsMachiningEmpty( void) ; // Simulation -EIN_EXPORT BOOL __stdcall EgtSimStart( void) ; +EIN_EXPORT BOOL __stdcall EgtSimStart( BOOL bFirst) ; EIN_EXPORT BOOL __stdcall EgtSimMove( int* pnStatus) ; EIN_EXPORT BOOL __stdcall EgtSimHome( void) ; EIN_EXPORT BOOL __stdcall EgtSimGetAxisInfoPos( int nI, wchar_t*& wsName, wchar_t*& wsToken, BOOL* pbLinear, double* pdVal) ; diff --git a/EMkMachMgr.h b/EMkMachMgr.h index 027b047..eb11431 100644 --- a/EMkMachMgr.h +++ b/EMkMachMgr.h @@ -213,7 +213,7 @@ class __declspec( novtable) IMachMgr virtual bool GetMachiningGeometry( SELVECTOR& vIds) const = 0 ; virtual bool IsMachiningEmpty( void) const = 0 ; // Simulation - virtual bool SimStart( void) = 0 ; + virtual bool SimStart( bool bFirst) = 0 ; virtual bool SimMove( int& nStatus) = 0 ; virtual bool SimGetAxisInfoPos( int nI, std::string& sName, std::string& sToken, bool& bLinear, double& dVal) = 0 ; virtual bool SimGetToolInfo( std::string& sName, double& dSpeed) = 0 ; diff --git a/EXeExecutor.h b/EXeExecutor.h index 6801f0a..c0bed44 100644 --- a/EXeExecutor.h +++ b/EXeExecutor.h @@ -753,7 +753,7 @@ EXE_EXPORT bool ExeGetMachiningParam( int nType, std::string& sVal) ; EXE_EXPORT bool ExeGetMachiningGeometry( SELVECTOR& vIds) ; EXE_EXPORT bool ExeIsMachiningEmpty( void) ; // Simulation -EXE_EXPORT bool ExeSimStart( void) ; +EXE_EXPORT bool ExeSimStart( bool bFirst) ; EXE_EXPORT bool ExeSimMove( int& nStatus) ; EXE_EXPORT bool ExeSimHome( void) ; EXE_EXPORT bool ExeSimGetAxisInfoPos( int nI, std::string& sName, std::string& sToken, bool& bLinear, double& dVal) ;