173728605d
- migliorato controllo gestione chiave di rete.
30 lines
1023 B
C++
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) ;
|