EgtInterface 1.8b5 :
- aggiunta interfaccia per EgtGetMachGroupMachineName.
This commit is contained in:
@@ -129,6 +129,19 @@ __stdcall EgtGetMachGroupName( int nMGroupInd, wchar_t*& wsName)
|
||||
return (( wsName == nullptr) ? FALSE : TRUE) ;
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
BOOL
|
||||
__stdcall EgtGetMachGroupMachineName( int nMGroupInd, wchar_t*& wsMachineName)
|
||||
{
|
||||
if ( &wsMachineName == nullptr)
|
||||
return FALSE ;
|
||||
string sMachineName ;
|
||||
if ( ! ExeGetMachGroupMachineName( nMGroupInd, sMachineName))
|
||||
return FALSE ;
|
||||
wsMachineName = _wcsdup( stringtoW( sMachineName)) ;
|
||||
return (( wsMachineName == nullptr) ? FALSE : TRUE) ;
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
BOOL
|
||||
__stdcall EgtGetMachGroupId( const wchar_t* wsName)
|
||||
|
||||
Reference in New Issue
Block a user