Include :

- aggiornamento interfacce.
This commit is contained in:
Dario Sassi
2017-01-09 12:05:08 +00:00
parent 92d89b0cf9
commit 8f552c2735
3 changed files with 6 additions and 0 deletions
+2
View File
@@ -535,6 +535,8 @@ EIN_EXPORT int __stdcall EgtGetMachGroupId( const wchar_t* wsName) ;
EIN_EXPORT BOOL __stdcall EgtSetCurrMachGroup( int nMGroupId) ;
EIN_EXPORT BOOL __stdcall EgtResetCurrMachGroup( void) ;
EIN_EXPORT int __stdcall EgtGetCurrMachGroup( void) ;
// Setup
EIN_EXPORT int __stdcall EgtGetCurrSetup( void) ;
// Phases
EIN_EXPORT int __stdcall EgtAddPhase( void) ;
EIN_EXPORT BOOL __stdcall EgtSetCurrPhase( int nPhase, BOOL bForced) ;
+2
View File
@@ -50,6 +50,8 @@ class __declspec( novtable) IMachMgr
virtual bool SetCurrMachGroup( int nId) = 0 ;
virtual bool ResetCurrMachGroup( void) = 0 ;
virtual int GetCurrMachGroup( void) const = 0 ;
// Setup
virtual int GetCurrSetup( void) const = 0 ;
// Phases
virtual int AddPhase( void) = 0 ;
virtual bool SetCurrPhase( int nPhase, bool bForced = false) = 0 ;
+2
View File
@@ -584,6 +584,8 @@ EXE_EXPORT int ExeGetMachGroupId( const std::string& sName) ;
EXE_EXPORT bool ExeSetCurrMachGroup( int nMGroupId) ;
EXE_EXPORT bool ExeResetCurrMachGroup( void) ;
EXE_EXPORT int ExeGetCurrMachGroup( void) ;
// Setup
EXE_EXPORT int ExeGetCurrSetup( void) ;
// Phases
EXE_EXPORT int ExeAddPhase( void) ;
EXE_EXPORT bool ExeSetCurrPhase( int nPhase, bool bForced) ;