Files
DarioS 173728605d EgtExecutor 2.5e5 :
- migliorato controllo gestione chiave di rete.
2023-05-30 10:28:53 +02:00

30 lines
1023 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 bNetHwKey) ;
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) ;