EgtInterface 1.9g1 :
- aggiunta interfaccia EgtImportPnt.
This commit is contained in:
+18
-11
@@ -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) ;
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user