diff --git a/API_General.cpp b/API_General.cpp index 26a0868..0e48e65 100644 --- a/API_General.cpp +++ b/API_General.cpp @@ -133,6 +133,15 @@ __stdcall EgtGetKeyInfo( wchar_t*& wsKey) return (( wsKey == nullptr) ? FALSE : TRUE) ; } +//----------------------------------------------------------------------------- +BOOL +__stdcall EgtGetKeyOptions( int nProd, int nVer, int nLev, unsigned int* pnOpt2) +{ + if ( pnOpt2 == nullptr) + return FALSE ; + return ( ExeGetKeyOptions( nProd, nVer, nLev, *pnOpt2) ? TRUE : FALSE) ; +} + //----------------------------------------------------------------------------- BOOL __stdcall EgtGetOsInfo( wchar_t*& wsOs) diff --git a/EgtInterface.rc b/EgtInterface.rc index 61be7e6..04e49b8 100644 Binary files a/EgtInterface.rc and b/EgtInterface.rc differ