From d5fcae0eec986b346dd729617f5f617a64aac46b Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Fri, 31 Jan 2025 08:58:44 +0100 Subject: [PATCH] Include : - aggiornamento prototipi per SetFixtureLink. --- EInAPI.h | 1 + EMkMachMgr.h | 1 + EXeExecutor.h | 1 + 3 files changed, 3 insertions(+) diff --git a/EInAPI.h b/EInAPI.h index d8aeba1..d41c9aa 100644 --- a/EInAPI.h +++ b/EInAPI.h @@ -812,6 +812,7 @@ EIN_EXPORT int __stdcall EgtGetFirstFixture( void) ; EIN_EXPORT int __stdcall EgtGetNextFixture( int nFxtId) ; EIN_EXPORT BOOL __stdcall EgtMoveFixture( int nFxtId, const double vtMove[3]) ; EIN_EXPORT BOOL __stdcall EgtRotateFixture( int nFxtId, double dDeltaAngDeg) ; +EIN_EXPORT BOOL __stdcall EgtSetFixtureLink( int nFxtId, const wchar_t* wsTaLink) ; EIN_EXPORT BOOL __stdcall EgtMoveFixtureMobile( int nFxtId, double dDeltaMov) ; EIN_EXPORT BOOL __stdcall EgtSetFixtureMobile( int nFxtId, double dMov) ; // Tools DataBase diff --git a/EMkMachMgr.h b/EMkMachMgr.h index 177cb16..b4d49f6 100644 --- a/EMkMachMgr.h +++ b/EMkMachMgr.h @@ -129,6 +129,7 @@ class __declspec( novtable) IMachMgr virtual int GetNextFixture( int nFxtId) const = 0 ; virtual bool MoveFixture( int nId, const Vector3d& vtMove) = 0 ; virtual bool RotateFixture( int nId, double dDeltaAngDeg) = 0 ; + virtual bool SetFixtureLink( int nId, const std::string& sTaLink) = 0 ; virtual bool MoveFixtureMobile( int nId, double dDeltaMov) = 0 ; virtual bool SetFixtureMobile( int nId, double dMov) = 0 ; // Tools DataBase diff --git a/EXeExecutor.h b/EXeExecutor.h index 254707e..0ef4e37 100644 --- a/EXeExecutor.h +++ b/EXeExecutor.h @@ -1081,6 +1081,7 @@ EXE_EXPORT int ExeGetFirstFixture( void) ; EXE_EXPORT int ExeGetNextFixture( int nFxtId) ; EXE_EXPORT bool ExeMoveFixture( int nFxtId, const Vector3d& vtMove) ; EXE_EXPORT bool ExeRotateFixture( int nFxtId, double dDeltaAngDeg) ; +EXE_EXPORT bool ExeSetFixtureLink( int nFxtId, const std::string& sTaLink) ; EXE_EXPORT bool ExeMoveFixtureMobile( int nFxtId, double dDeltaMove) ; EXE_EXPORT bool ExeSetFixtureMobile( int nFxtId, double dMove) ; // Tools Database