EgtInterface 1.6c7 :
- aggiunto richiamo di EgtMachKernel - possibilità di estendere curva in EgtCurveLengthAtPoint.
This commit is contained in:
+9
-4
@@ -17,9 +17,10 @@
|
||||
#include "LUA_Base.h"
|
||||
#include "/EgtDev/Include/EInAPI.h"
|
||||
#include "/EgtDev/Include/EInDllMain.h"
|
||||
#include "/EgtDev/Include/EGkDllMain.h"
|
||||
#include "/EgtDev/Include/ENkDllMain.h"
|
||||
#include "/EgtDev/Include/EGnDllMain.h"
|
||||
#include "/EgtDev/Include/ENkDllMain.h"
|
||||
#include "/EgtDev/Include/EMkDllMain.h"
|
||||
#include "/EgtDev/Include/EGkDllMain.h"
|
||||
#include "/EgtDev/Include/EExDllMain.h"
|
||||
#include "/EgtDev/Include/EGrDllMain.h"
|
||||
#include "/EgtDev/Include/EGnStringUtils.h"
|
||||
@@ -55,6 +56,7 @@ __stdcall EgtInit( int nDebug, const wchar_t* sLogFile, const wchar_t* sLogMsg)
|
||||
SetEGnLogger( s_pGenLog) ;
|
||||
SetENkLogger( s_pGenLog) ;
|
||||
SetEGkLogger( s_pGenLog) ;
|
||||
SetEMkLogger( s_pGenLog) ;
|
||||
SetEExLogger( s_pGenLog) ;
|
||||
SetEGrLogger( s_pGenLog) ;
|
||||
|
||||
@@ -69,6 +71,7 @@ __stdcall EgtInit( int nDebug, const wchar_t* sLogFile, const wchar_t* sLogMsg)
|
||||
LOG_INFO( s_pGenLog, GetEGnVersion())
|
||||
LOG_INFO( s_pGenLog, GetENkVersion())
|
||||
LOG_INFO( s_pGenLog, GetEGkVersion())
|
||||
LOG_INFO( s_pGenLog, GetEMkVersion())
|
||||
LOG_INFO( s_pGenLog, GetEExVersion())
|
||||
LOG_INFO( s_pGenLog, GetEGrVersion())
|
||||
// Info sul sistema
|
||||
@@ -116,9 +119,11 @@ __stdcall EgtExit( void)
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
BOOL
|
||||
__stdcall EgtSetKey( const wchar_t* sKey)
|
||||
__stdcall EgtSetKey( const wchar_t* swKey)
|
||||
{
|
||||
SetEGkKey( LPSTR( WtoA( sKey))) ;
|
||||
string sKey = WtoA( swKey) ;
|
||||
SetEGkKey( sKey) ;
|
||||
SetEMkKey( sKey) ;
|
||||
return TRUE ;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user