EgtInterface 1.6t2 :

- aggiunte EgtSetInfoBool, EgtGetInfoBool.
This commit is contained in:
Dario Sassi
2016-08-06 19:17:41 +00:00
parent 863af59651
commit 2a149990be
5 changed files with 27 additions and 5 deletions
+2 -2
View File
@@ -906,7 +906,7 @@ __stdcall EgtSetAllOperationsMode( BOOL bActive)
BOOL
__stdcall EgtSetOperationStatus( int nId, BOOL bShow)
{
return ( ExeSetOperationStatus( nId, bShow != FALSE) ? TRUE : FALSE) ;
return ( ExeSetOperationStatus( nId, ( bShow != FALSE)) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
@@ -953,7 +953,7 @@ __stdcall EgtGetPhaseDisposition( int nPhase)
BOOL
__stdcall EgtSpecialApplyDisposition( int nId, BOOL bRecalc)
{
return ( ExeSpecialApplyDisposition( nId, bRecalc != FALSE) ? TRUE : FALSE) ;
return ( ExeSpecialApplyDisposition( nId, ( bRecalc != FALSE)) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------