aa17b2b080
- modifiche per prima gestione chiave di rete.
34 lines
1.1 KiB
C++
34 lines
1.1 KiB
C++
//----------------------------------------------------------------------------
|
|
// EgalTech 2015-2015
|
|
//----------------------------------------------------------------------------
|
|
// File : DllGraphics.h Data : 27.03.15 Versione : 1.6c9
|
|
// Contenuto : Dichiarazioni funzioni per libreria opzionale EgtGraphics.
|
|
//
|
|
//
|
|
//
|
|
// Modifiche : 27.03.15 DS Creazione modulo.
|
|
//
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class ILogger ;
|
|
class IEGrScene ;
|
|
class ISceExecutor ;
|
|
class IEgrImageMgr ;
|
|
|
|
//----------------------------------------------------------------------------
|
|
bool LoadGraphicsDll( ILogger* pLogger, const std::string& sKey, bool bNetHwKey) ;
|
|
bool FreeGraphicsDll( void) ;
|
|
bool IsLoadedGraphicsDll( void) ;
|
|
void MySetEGrLogger( ILogger* pLogger) ;
|
|
void MySetEGrKey( const std::string& sKey) ;
|
|
void MySetEGrNetHwKey( bool bNetHwKey) ;
|
|
const char* MyGetEGrVersion( void) ;
|
|
IEGrScene* MyCreateEGrScene( void) ;
|
|
ISceExecutor* MyCreateSceExecutor(void) ;
|
|
IEgrImageMgr* MyCreateEgrImageMgr( void) ;
|