EgtInterface :

- aggiunte EgtChangeTextHeight, EgtChangeTextItalic, EgtTextGetHeight e EgtTextGetItalic
- corrette EgtShowOnlyTable e EgtSurfTmFacetsContact per parametri BOOL e non bool.
This commit is contained in:
Dario Sassi
2019-08-02 17:35:40 +00:00
parent 59f89ebb8a
commit 413d919be3
3 changed files with 43 additions and 4 deletions
+2 -2
View File
@@ -522,9 +522,9 @@ __stdcall EgtGetTableAreaOffset( int nInd, double ptMinOffs[3], double ptMaxOffs
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtShowOnlyTable( bool bVal)
__stdcall EgtShowOnlyTable( BOOL bVal)
{
return ( ExeShowOnlyTable( bVal) ? TRUE : FALSE) ;
return ( ExeShowOnlyTable( ( bVal != FALSE)) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------