Files
Dario Sassi 0d337c6aad EgtExecutor 2.1k6 :
- aggiunta gestione libreria di Nesting Automatico e relativa protezione
- aggiunta funzione ExeSetLineAttribs per impostare spessore linee in grafica.
2019-12-02 07:31:22 +00:00

30 lines
1007 B
C++

//----------------------------------------------------------------------------
// EgalTech 2015-2015
//----------------------------------------------------------------------------
// File : DllNesting.h Data : 28.11.19 Versione : 2.1k6
// Contenuto : Dichiarazioni funzioni per libreria opzionale EgtNesting.
//
//
//
// Modifiche : 28.11.19 DS Creazione modulo.
//
//
//----------------------------------------------------------------------------
#pragma once
#include <string>
class ILogger ;
class IAutoNester ;
//----------------------------------------------------------------------------
bool LoadNestingDll( ILogger* pLogger, const std::string& sKey, const std::string& sKey2) ;
bool FreeNestingDll( void) ;
bool IsLoadedNestingDll( void) ;
void MySetENsLogger( ILogger* pLogger) ;
void MySetENsKey( const std::string& sKey) ;
void MySetENsKey2( const std::string& sKey2) ;
const char* MyGetENsVersion( void) ;
IAutoNester* MyCreateAutoNester( void) ;