EgtInterface 1.6v8 :

- aggiunte in interfaccia EgtVerifyRawPartCurrPhase, EgtVerifyFixture e EgtGetPlaneSnapPoint.
This commit is contained in:
Dario Sassi
2016-10-29 15:50:57 +00:00
parent d5237e71eb
commit bbe34f603f
6 changed files with 33 additions and 5 deletions
+15 -1
View File
@@ -253,6 +253,13 @@ __stdcall EgtVerifyRawPartPhase( int nRawId, int nPhase)
return ( ExeVerifyRawPartPhase( nRawId, nPhase) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtVerifyRawPartCurrPhase( int nRawId)
{
return ( ExeVerifyRawPartCurrPhase( nRawId) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtRemoveRawPartFromCurrPhase( int nRawId)
@@ -414,6 +421,13 @@ __stdcall EgtRemoveFixture( int nFxtId)
return ( ExeRemoveFixture( nFxtId) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtVerifyFixture( int nFxtId)
{
return ( ExeVerifyFixture( nFxtId) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
int
__stdcall EgtGetFirstFixture( void)
@@ -1391,7 +1405,7 @@ __stdcall EgtGetOutstrokeInfo( wchar_t*& wsInfo)
{
string sInfo ;
if ( ! ExeGetOutstrokeInfo( sInfo))
return false ;
return FALSE ;
wsInfo = _wcsdup( stringtoW( sInfo)) ;
return (( wsInfo == nullptr) ? FALSE : TRUE) ;
}