EgtInterface 1.6t1 :

- aggiornamento interfaccia per funzioni su Operazioni.
This commit is contained in:
Dario Sassi
2016-08-05 18:38:51 +00:00
parent 1e4946c2aa
commit 863af59651
3 changed files with 50 additions and 1 deletions
+49
View File
@@ -781,6 +781,48 @@ __stdcall EgtGetNextOperation( int nId)
return ExeGetNextOperation( nId) ;
}
//-----------------------------------------------------------------------------
int
__stdcall EgtGetLastOperation( void)
{
return ExeGetLastOperation() ;
}
//-----------------------------------------------------------------------------
int
__stdcall EgtGetPrevOperation( int nId)
{
return ExeGetPrevOperation( nId) ;
}
//-----------------------------------------------------------------------------
int
__stdcall EgtGetFirstActiveOperation( void)
{
return ExeGetFirstActiveOperation() ;
}
//-----------------------------------------------------------------------------
int
__stdcall EgtGetNextActiveOperation( int nId)
{
return ExeGetNextActiveOperation( nId) ;
}
//-----------------------------------------------------------------------------
int
__stdcall EgtGetLastActiveOperation( void)
{
return ExeGetLastActiveOperation() ;
}
//-----------------------------------------------------------------------------
int
__stdcall EgtGetPrevActiveOperation( int nId)
{
return ExeGetPrevActiveOperation( nId) ;
}
//-----------------------------------------------------------------------------
int
__stdcall EgtGetOperationType( int nId)
@@ -891,6 +933,13 @@ __stdcall EgtChangeOperationPhase( int nId, int nNewPhase)
return ( ExeChangeOperationPhase( nId, nNewPhase) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtRemoveOperationHome( int nId)
{
return ( ExeRemoveOperationHome( nId) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
// Dispositions
//-----------------------------------------------------------------------------