EgtInterface 2.1a7 :

- aggiunte interfacce per EgtGetKeyLeftDays e EgtGetKeyOptLeftDays.
This commit is contained in:
Dario Sassi
2019-01-29 15:10:16 +00:00
parent 98acdc3d78
commit 8e4ac3e73b
2 changed files with 18 additions and 0 deletions
+18
View File
@@ -178,6 +178,24 @@ __stdcall EgtGetKeyOptions( int nProd, int nVer, int nLev, unsigned int* pnOpt2)
return ( ExeGetKeyOptions( nProd, nVer, nLev, *pnOpt2) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtGetKeyLeftDays( int* pnLeftDays)
{
if ( pnLeftDays == nullptr)
return FALSE ;
return ( ExeGetKeyLeftDays( *pnLeftDays) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtGetKeyOptLeftDays( int* pnOptLeftDays)
{
if ( pnOptLeftDays == nullptr)
return FALSE ;
return ( ExeGetKeyOptLeftDays( *pnOptLeftDays) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtGetOsInfo( wchar_t*& wsOs)