EgtInterface 1.5i2 :

- estensione e razionalizzazione della interfaccia.
This commit is contained in:
Dario Sassi
2014-09-04 12:33:41 +00:00
parent 0e4a7397e8
commit 71254e1c04
12 changed files with 637 additions and 227 deletions
+10
View File
@@ -94,6 +94,16 @@ __stdcall EgtSetFont( const wchar_t* sNfeFontDir, const wchar_t* sDefaultFont)
return TRUE ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtFreeMemory( void* pMem)
{
if ( pMem == nullptr)
return FALSE ;
free( pMem) ;
return TRUE ;
}
//-----------------------------------------------------------------------------
ILogger*
GetLogger( void)