EgtInterface 1.8g3 :

- aggiunte funzioni EgtGetLastMachGroup e EgtGetPrevMachGroup.
This commit is contained in:
Dario Sassi
2017-07-18 07:17:26 +00:00
parent 39cf61b818
commit 5a8a57d331
2 changed files with 13 additions and 0 deletions
+13
View File
@@ -89,6 +89,19 @@ __stdcall EgtGetNextMachGroup( int nId)
return ExeGetNextMachGroup( nId) ;
}
//-----------------------------------------------------------------------------
int
__stdcall EgtGetLastMachGroup( void)
{
return ExeGetLastMachGroup() ;
}
//-----------------------------------------------------------------------------
int
__stdcall EgtGetPrevMachGroup( int nId)
{
return ExeGetPrevMachGroup( nId) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtGetMachGroupNewName( const wchar_t* wsName, wchar_t*& wsNewName)