From cd414075520d45bc3ad0ec02efe05a721e86c593 Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Thu, 15 Nov 2018 18:39:35 +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 66df1b7..b4f076e 100644 --- a/EInAPI.h +++ b/EInAPI.h @@ -688,6 +688,7 @@ EIN_EXPORT int __stdcall EgtGetLastActiveOperation( void) ; EIN_EXPORT int __stdcall EgtGetPrevActiveOperation( int nId) ; EIN_EXPORT int __stdcall EgtGetOperationType( int nId) ; EIN_EXPORT int __stdcall EgtGetOperationPhase( int nId) ; +EIN_EXPORT BOOL __stdcall EgtSetOperationName( int nId, const wchar_t* wsName) ; EIN_EXPORT BOOL __stdcall EgtGetOperationName( int nId, wchar_t*& wsName) ; EIN_EXPORT int __stdcall EgtGetOperationId( const wchar_t* wsName) ; EIN_EXPORT BOOL __stdcall EgtIsOperationEmpty( int nId) ; diff --git a/EMkMachMgr.h b/EMkMachMgr.h index 2285804..e0ba11b 100644 --- a/EMkMachMgr.h +++ b/EMkMachMgr.h @@ -178,6 +178,7 @@ class __declspec( novtable) IMachMgr virtual int GetPrevActiveOperation( int nId) const = 0 ; virtual int GetOperationType( int nId) const = 0 ; virtual int GetOperationPhase( int nId) const = 0 ; + virtual bool SetOperationName( int nId, const std::string& sName) = 0 ; virtual std::string GetOperationName( int nId) const = 0 ; virtual int GetOperationId( const std::string& sName) const = 0 ; virtual bool IsOperationEmpty( int nId) const = 0 ; diff --git a/EXeExecutor.h b/EXeExecutor.h index ed7ed48..77eddf6 100644 --- a/EXeExecutor.h +++ b/EXeExecutor.h @@ -784,6 +784,7 @@ EXE_EXPORT int ExeGetLastActiveOperation( void) ; EXE_EXPORT int ExeGetPrevActiveOperation( int nId) ; EXE_EXPORT int ExeGetOperationType( int nId) ; EXE_EXPORT int ExeGetOperationPhase( int nId) ; +EXE_EXPORT bool ExeSetOperationName( int nId, const std::string& sName) ; EXE_EXPORT bool ExeGetOperationName( int nId, std::string& sName) ; EXE_EXPORT int ExeGetOperationId( const std::string& sName) ; EXE_EXPORT bool ExeIsOperationEmpty( int nId) ;