EgtInterface 1.8c3 :

- aggiunta interfaccia per funzioni EgtGetFirstGhostPart e EgtGetNextGhostPart.
This commit is contained in:
Dario Sassi
2017-03-06 18:57:27 +00:00
parent 2adea3a200
commit 94b78cf311
2 changed files with 14 additions and 0 deletions
+14
View File
@@ -124,6 +124,20 @@ __stdcall EgtGetPrevLayer( int nId, BOOL bOnlyVisible)
return ExeGetPrevLayer( nId, ( bOnlyVisible != FALSE)) ;
}
//-------------------------------------------------------------------------------
int
__stdcall EgtGetFirstGhostPart( void)
{
return ExeGetFirstGhostPart() ;
}
//-------------------------------------------------------------------------------
int
__stdcall EgtGetNextGhostPart( int nId)
{
return ExeGetNextGhostPart( nId) ;
}
//-------------------------------------------------------------------------------
BOOL
__stdcall EgtEraseEmptyParts( void)