EgtInterface 2.2i5 :

- aggiunti prototipi EgtSurfTmSplit e EgtSurfTmCut.
This commit is contained in:
Dario Sassi
2020-09-27 17:17:01 +00:00
parent 9d490adf6d
commit 8f2c8b0b81
2 changed files with 14 additions and 0 deletions
+14
View File
@@ -111,3 +111,17 @@ __stdcall EgtSurfTmResetTwoColors( int nId)
{
return ( ExeSurfTmResetTwoColors( nId) ? TRUE : FALSE) ;
}
//----------------------------------------------------------------------------
int
__stdcall EgtSurfTmSplit( int nId, int nSplitterId, int* pnCount)
{
return ExeSurfTmSplit( nId, nSplitterId, pnCount) ;
}
//----------------------------------------------------------------------------
BOOL
__stdcall EgtSurfTmCut( int nId, int nCutterId, BOOL bInVsOut, BOOL bSaveOnEq)
{
return ( ExeSurfTmCut( nId, nCutterId, ( bInVsOut != FALSE), ( bSaveOnEq != FALSE)) ? TRUE : FALSE) ;
}