EgtInterface 1.6s3 :

- aggiunta interfaccia per EgtGetKeyLevel.
This commit is contained in:
Dario Sassi
2016-07-13 09:38:38 +00:00
parent 9588423127
commit 55e560134c
2 changed files with 9 additions and 0 deletions
+9
View File
@@ -133,6 +133,15 @@ __stdcall EgtGetKeyInfo( wchar_t*& wsKey)
return (( wsKey == nullptr) ? FALSE : TRUE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtGetKeyLevel( int nProd, int nVer, int nLev, int* pnKLev)
{
if ( pnKLev == nullptr)
return FALSE ;
return ( ExeGetKeyLevel( nProd, nVer, nLev, *pnKLev) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtGetKeyOptions( int nProd, int nVer, int nLev, unsigned int* pnOpt2)