Include :

- aggiunte costanti FT_IGES, FT_STEP, ....FT_VRML
- aggiornamento prototipi.
This commit is contained in:
Dario Sassi
2020-09-22 07:54:28 +00:00
parent 2c7ee3aaea
commit b8aa6fb1c2
3 changed files with 8 additions and 0 deletions
+1
View File
@@ -105,6 +105,7 @@ EIN_EXPORT BOOL __stdcall EgtImportCsf( const wchar_t* wsFilePath) ;
EIN_EXPORT BOOL __stdcall EgtImportDxf( const wchar_t* wsFilePath, double dScaleFactor) ;
EIN_EXPORT BOOL __stdcall EgtImportPnt( const wchar_t* wsFilePath, int nFlag) ;
EIN_EXPORT BOOL __stdcall EgtImportStl( const wchar_t* wsFilePath, double dScaleFactor) ;
EIN_EXPORT BOOL __stdcall EgtAdvancedImport( const wchar_t* wsFilePath) ;
EIN_EXPORT BOOL __stdcall EgtExportDxf( int nId, const wchar_t* wsFilePath) ;
EIN_EXPORT BOOL __stdcall EgtExportStl( int nId, const wchar_t* wsFilePath) ;
EIN_EXPORT BOOL __stdcall EgtExportSvg( int nId, const wchar_t* wsFilePath) ;
+6
View File
@@ -26,6 +26,12 @@ enum FileType { FT_NULL = 0,
FT_IMG = 16,
FT_PNT = 17,
FT_SVG = 18,
FT_IGES = 31,
FT_STEP = 32,
FT_ACIS = 33,
FT_PARASOLID = 34,
FT_JT = 35,
FT_VRML = 36,
FT_TSC = 101,
FT_LUA = 102} ;
+1
View File
@@ -111,6 +111,7 @@ EXE_EXPORT bool ExeImportCsf( const std::string& sFilePath) ;
EXE_EXPORT bool ExeImportDxf( const std::string& sFilePath, double dScaleFactor) ;
EXE_EXPORT bool ExeImportPnt( const std::string& sFilePath, int nFlag) ;
EXE_EXPORT bool ExeImportStl( const std::string& sFilePath, double dScaleFactor) ;
EXE_EXPORT bool ExeAdvancedImport( const std::string& sFilePath) ;
EXE_EXPORT bool ExeExportDxf( int nId, const std::string& sFilePath) ;
EXE_EXPORT bool ExeExportStl( int nId, const std::string& sFilePath) ;
EXE_EXPORT bool ExeExportSvg( int nId, const std::string& sFilePath, int nFilter = 393) ;