EgtInterface 1.6v1 :
- aggiunta interfaccia di EgtGetMachGroupNewName.
This commit is contained in:
@@ -73,6 +73,19 @@ __stdcall EgtGetNextMachGroup( int nId)
|
||||
return ExeGetNextMachGroup( nId) ;
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
BOOL
|
||||
__stdcall EgtGetMachGroupNewName( const wchar_t* wsName, wchar_t*& wsNewName)
|
||||
{
|
||||
if ( &wsNewName == nullptr)
|
||||
return FALSE ;
|
||||
string sNewName = wstrztoA( wsName) ;
|
||||
if ( ! ExeGetMachGroupNewName( sNewName))
|
||||
return FALSE ;
|
||||
wsNewName = _wcsdup( stringtoW( sNewName)) ;
|
||||
return (( wsNewName == nullptr) ? FALSE : TRUE) ;
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
int
|
||||
__stdcall EgtAddMachGroup( const wchar_t* wsName, const wchar_t* wsMachineName)
|
||||
|
||||
Reference in New Issue
Block a user