From 65ffe82e744ade36e9d0314f16bce26d8b510088 Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Mon, 15 Sep 2014 07:06:04 +0000 Subject: [PATCH] Include : - modifiche per chiave di protezione. --- EGkDllMain.h | 2 ++ EInAPI.h | 1 + 2 files changed, 3 insertions(+) diff --git a/EGkDllMain.h b/EGkDllMain.h index 6cdf508..fe3be17 100644 --- a/EGkDllMain.h +++ b/EGkDllMain.h @@ -30,5 +30,7 @@ class ILogger ; EGK_EXPORT const char* GetEGkVersion( void) ; // permette di impostare il logger per la Dll EGK_EXPORT void SetEGkLogger( ILogger* pLogger) ; +// imposta la chiave di protezione +EGK_EXPORT void SetEGkKey( const std::string& sKey) ; // permette di inizializzare il font manager EGK_EXPORT void InitFontManager( const std::string& sNfeFontDir, const std::string& sDefaultFont) ; diff --git a/EInAPI.h b/EInAPI.h index f7036be..ea09dcd 100644 --- a/EInAPI.h +++ b/EInAPI.h @@ -33,6 +33,7 @@ extern "C" { // General EIN_EXPORT BOOL __stdcall EgtInit( int nDebug, const wchar_t* sLogFile) ; EIN_EXPORT BOOL __stdcall EgtExit( void) ; +EIN_EXPORT BOOL __stdcall EgtSetKey( const wchar_t* sKey) ; EIN_EXPORT BOOL __stdcall EgtSetFont( const wchar_t* sNfeFontDir, const wchar_t* sDefaultFont) ; EIN_EXPORT BOOL __stdcall EgtFreeMemory( void* pMem) ;