From b8aa6fb1c2b96153c7a6cef1f8086f30cf43e5d3 Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Tue, 22 Sep 2020 07:54:28 +0000 Subject: [PATCH] Include : - aggiunte costanti FT_IGES, FT_STEP, ....FT_VRML - aggiornamento prototipi. --- EInAPI.h | 1 + EXeConst.h | 6 ++++++ EXeExecutor.h | 1 + 3 files changed, 8 insertions(+) diff --git a/EInAPI.h b/EInAPI.h index 74a0163..2674b8c 100644 --- a/EInAPI.h +++ b/EInAPI.h @@ -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) ; diff --git a/EXeConst.h b/EXeConst.h index 90bdae2..281a647 100644 --- a/EXeConst.h +++ b/EXeConst.h @@ -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} ; diff --git a/EXeExecutor.h b/EXeExecutor.h index 77c506f..34dc179 100644 --- a/EXeExecutor.h +++ b/EXeExecutor.h @@ -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) ;