EgtInterface 2.2j1 :

- aggiornata interfaccia EgtExportDxf con parametro Flag.
This commit is contained in:
Dario Sassi
2020-10-12 09:51:51 +00:00
parent a0156c6a67
commit 3fb2e6bf4e
2 changed files with 2 additions and 2 deletions
+2 -2
View File
@@ -84,9 +84,9 @@ __stdcall EgtAdvancedImport( const wchar_t* wsFilePath)
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtExportDxf( int nId, const wchar_t* wsFilePath)
__stdcall EgtExportDxf( int nId, const wchar_t* wsFilePath, int nFlag)
{
return ( ExeExportDxf( nId, wstrztoA( wsFilePath)) ? TRUE : FALSE) ;
return ( ExeExportDxf( nId, wstrztoA( wsFilePath), nFlag) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------