EgtInterface 1.6h1 :
- aggiunta interfaccia per funzioni Nesting - aggiunta interfaccia per iterazione all'indietro su pezzi e layer.
This commit is contained in:
@@ -82,6 +82,20 @@ __stdcall EgtGetNextPart( int nId, BOOL bOnlyVisible)
|
||||
return ExeGetNextPart( nId, ( bOnlyVisible != FALSE)) ;
|
||||
}
|
||||
|
||||
//-------------------------------------------------------------------------------
|
||||
int
|
||||
__stdcall EgtGetLastPart( BOOL bOnlyVisible)
|
||||
{
|
||||
return ExeGetLastPart( ( bOnlyVisible != FALSE)) ;
|
||||
}
|
||||
|
||||
//-------------------------------------------------------------------------------
|
||||
int
|
||||
__stdcall EgtGetPrevPart( int nId, BOOL bOnlyVisible)
|
||||
{
|
||||
return ExeGetPrevPart( nId, ( bOnlyVisible != FALSE)) ;
|
||||
}
|
||||
|
||||
//-------------------------------------------------------------------------------
|
||||
int
|
||||
__stdcall EgtGetFirstLayer( int nPartId, BOOL bOnlyVisible)
|
||||
@@ -96,6 +110,20 @@ __stdcall EgtGetNextLayer( int nId, BOOL bOnlyVisible)
|
||||
return ExeGetNextLayer( nId, ( bOnlyVisible != FALSE)) ;
|
||||
}
|
||||
|
||||
//-------------------------------------------------------------------------------
|
||||
int
|
||||
__stdcall EgtGetLastLayer( int nPartId, BOOL bOnlyVisible)
|
||||
{
|
||||
return ExeGetLastLayer( nPartId, ( bOnlyVisible != FALSE)) ;
|
||||
}
|
||||
|
||||
//-------------------------------------------------------------------------------
|
||||
int
|
||||
__stdcall EgtGetPrevLayer( int nId, BOOL bOnlyVisible)
|
||||
{
|
||||
return ExeGetPrevLayer( nId, ( bOnlyVisible != FALSE)) ;
|
||||
}
|
||||
|
||||
//-------------------------------------------------------------------------------
|
||||
BOOL
|
||||
__stdcall EgtEraseEmptyParts( void)
|
||||
|
||||
Reference in New Issue
Block a user