EgtInterface 1.9g1 :

- aggiunta interfaccia EgtImportPnt.
This commit is contained in:
Dario Sassi
2018-07-05 10:31:51 +00:00
parent 375c65b9a2
commit 739c6bb5c3
2 changed files with 18 additions and 11 deletions
+18 -11
View File
@@ -29,16 +29,9 @@ __stdcall EgtGetFileType( const wchar_t* wsFilePath)
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtImportDxf( const wchar_t* wsFilePath, double dScaleFactor)
__stdcall EgtImportBtl( const wchar_t* wsFilePath, int nFlag)
{
return ( ExeImportDxf( wstrztoA( wsFilePath), dScaleFactor) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtImportStl( const wchar_t* wsFilePath, double dScaleFactor)
{
return ( ExeImportStl( wstrztoA( wsFilePath), dScaleFactor) ? TRUE : FALSE) ;
return ( ExeImportBtl( wstrztoA( wsFilePath), nFlag) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
@@ -57,9 +50,23 @@ __stdcall EgtImportCsf( const wchar_t* wsFilePath)
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtImportBtl( const wchar_t* wsFilePath, int nFlag)
__stdcall EgtImportDxf( const wchar_t* wsFilePath, double dScaleFactor)
{
return ( ExeImportBtl( wstrztoA( wsFilePath), nFlag) ? TRUE : FALSE) ;
return ( ExeImportDxf( wstrztoA( wsFilePath), dScaleFactor) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtImportPnt( const wchar_t* wsFilePath, int nFlag)
{
return ( ExeImportPnt( wstrztoA( wsFilePath), nFlag) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtImportStl( const wchar_t* wsFilePath, double dScaleFactor)
{
return ( ExeImportStl( wstrztoA( wsFilePath), dScaleFactor) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------