EgtInterface 1.6l10 :

- aggiornamenti.
This commit is contained in:
Dario Sassi
2016-01-29 19:58:46 +00:00
parent 8ede2dd647
commit 8f97e8c784
3 changed files with 40 additions and 10 deletions
+23
View File
@@ -755,6 +755,29 @@ __stdcall EgtSetCurrMachining( int nId)
return ( ExeSetCurrMachining( nId) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtSetMachiningParamInt( int nType, int nVal)
{
return ( ExeSetMachiningParam( nType, nVal) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtPreviewMachining( BOOL bRecalc)
{
return ( ExePreviewMachining( bRecalc != FALSE) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtGetMachiningParamInt( int nType, int* pnVal)
{
if ( pnVal == nullptr)
return FALSE ;
return ( ExeGetMachiningParam( nType, *pnVal) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtIsMachiningNotEmpty( void)