EgtInterface 1.6v1 :

- aggiunta interfaccia di EgtGetMachGroupNewName.
This commit is contained in:
Dario Sassi
2016-10-06 17:58:43 +00:00
parent 97934285ed
commit 7811397c19
2 changed files with 13 additions and 0 deletions
+13
View File
@@ -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)