EgtInterface 2.6a2 :

- aggiunta interfaccia per funzione EgtGetKeyAssLeftDays (numero di giorni mancanti al termine dell'assistenza).
This commit is contained in:
Dario Sassi
2024-01-25 18:21:37 +01:00
parent f9d1746fa8
commit 34a116cfe9
2 changed files with 9 additions and 0 deletions
+9
View File
@@ -227,6 +227,15 @@ __stdcall EgtGetKeyLeftDays( int* pnLeftDays)
return ( ExeGetKeyLeftDays( *pnLeftDays) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtGetKeyAssLeftDays( int* pnAssLeftDays)
{
if ( pnAssLeftDays == nullptr)
return FALSE ;
return ( ExeGetKeyAssLeftDays( *pnAssLeftDays) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtGetKeyOptLeftDays( int* pnOptLeftDays)