Include :

- aggiornamento prototipi.
This commit is contained in:
Dario Sassi
2016-05-17 07:02:43 +00:00
parent 85372d8f52
commit 0f0c6cda6f
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -514,7 +514,7 @@ EIN_EXPORT BOOL __stdcall EgtResetCurrMachGroup( void) ;
EIN_EXPORT int __stdcall EgtGetCurrMachGroup( void) ;
// Phases
EIN_EXPORT int __stdcall EgtAddPhase( void) ;
EIN_EXPORT BOOL __stdcall EgtSetCurrPhase( int nPhase) ;
EIN_EXPORT BOOL __stdcall EgtSetCurrPhase( int nPhase, BOOL bForced) ;
EIN_EXPORT int __stdcall EgtGetCurrPhase( void) ;
EIN_EXPORT BOOL __stdcall EgtRemoveLastPhase( void) ;
EIN_EXPORT int __stdcall EgtGetPhaseCount( void) ;
+1 -1
View File
@@ -51,7 +51,7 @@ class __declspec( novtable) IMachMgr
virtual int GetCurrMachGroup( void) const = 0 ;
// Phases
virtual int AddPhase( void) = 0 ;
virtual bool SetCurrPhase( int nPhase) = 0 ;
virtual bool SetCurrPhase( int nPhase, bool bForced = false) = 0 ;
virtual int GetCurrPhase( void) const = 0 ;
virtual bool RemoveLastPhase( void) = 0 ;
virtual int GetPhaseCount( void) const = 0 ;
+1 -1
View File
@@ -552,7 +552,7 @@ EXE_EXPORT bool ExeResetCurrMachGroup( void) ;
EXE_EXPORT int ExeGetCurrMachGroup( void) ;
// Phases
EXE_EXPORT int ExeAddPhase( void) ;
EXE_EXPORT bool ExeSetCurrPhase( int nPhase) ;
EXE_EXPORT bool ExeSetCurrPhase( int nPhase, bool bForced) ;
EXE_EXPORT int ExeGetCurrPhase( void) ;
EXE_EXPORT bool ExeRemoveLastPhase( void) ;
EXE_EXPORT int ExeGetPhaseCount( void) ;