From d4b72e9fbe5fe929a94458bfe9b70954a4347aa5 Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Sat, 21 Nov 2020 17:59:01 +0000 Subject: [PATCH] Include : - aggiornamento prototipi. --- EInAPI.h | 2 +- EXeExecutor.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/EInAPI.h b/EInAPI.h index 2085b71..f4c7f00 100644 --- a/EInAPI.h +++ b/EInAPI.h @@ -106,7 +106,7 @@ EIN_EXPORT BOOL __stdcall EgtImportDxf( const wchar_t* wsFilePath, double dScale 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 EgtAdvancedImportIsEnabled( void) ; -EIN_EXPORT BOOL __stdcall EgtAdvancedImport( const wchar_t* wsFilePath) ; +EIN_EXPORT BOOL __stdcall EgtAdvancedImport( const wchar_t* wsFilePath, double dLinToler) ; EIN_EXPORT BOOL __stdcall EgtExportDxf( int nId, const wchar_t* wsFilePath, int nFlag) ; 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/EXeExecutor.h b/EXeExecutor.h index 25f36df..f001604 100644 --- a/EXeExecutor.h +++ b/EXeExecutor.h @@ -112,7 +112,7 @@ 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 ExeAdvancedImportIsEnabled( void) ; -EXE_EXPORT bool ExeAdvancedImport( const std::string& sFilePath) ; +EXE_EXPORT bool ExeAdvancedImport( const std::string& sFilePath, double dToler = 0.1) ; EXE_EXPORT bool ExeExportDxf( int nId, const std::string& sFilePath, int nFlag = 1) ; EXE_EXPORT bool ExeExportStl( int nId, const std::string& sFilePath) ; EXE_EXPORT bool ExeExportSvg( int nId, const std::string& sFilePath, int nFilter = 393) ;