EgtInterface 1.6j2 :

- aggiunte funzioni per simulazione.
This commit is contained in:
Dario Sassi
2015-10-23 08:00:44 +00:00
parent 5025c28adf
commit b268a46d68
2 changed files with 29 additions and 1 deletions
+29 -1
View File
@@ -220,4 +220,32 @@ BOOL
__stdcall EgtShowOnlyTable( bool bVal)
{
return ( ExeShowOnlyTable( bVal) ? TRUE : FALSE) ;
}
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtSimStart( void)
{
return ( ExeSimStart() ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtSimMove( void)
{
return ( ExeSimMove() ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtSimSetStep( double dStep)
{
return ( ExeSimSetStep( dStep) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtSimStop( void)
{
return ( ExeSimStop() ? TRUE : FALSE) ;
}