EgtInterface 2.5e5 :

- aggiunta in interfaccia funzione EgtSetLockId.
This commit is contained in:
DarioS
2023-05-30 17:07:52 +02:00
parent b780ae185d
commit 7cc2d4430c
2 changed files with 7 additions and 1 deletions
+7 -1
View File
@@ -180,11 +180,17 @@ __stdcall EgtSetLockType( int nType)
return ( ExeSetLockType( nType) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtSetLockId( const wchar_t* wsLockId)
{
return ( ExeSetLockId( wstrztoA( wsLockId)) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtSetNetHwKey( BOOL bNetHwKey)
{
return ( ExeSetNetHwKey( bNetHwKey != FALSE) ? TRUE : FALSE) ;
return ( ExeSetNetHwKey( bNetHwKey != FALSE, 0) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------