EgtInterface 2.7j3 :
- aggiornato prototipo di EgtSaveMachGroupToFile per permettere un nuovo parametro (identificativi di oggetti aggiuntivi).
This commit is contained in:
+6
-2
@@ -191,7 +191,11 @@ __stdcall EgtSaveObjToFile( int nId, const wchar_t* wsFilePath, int nFlag)
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
BOOL
|
||||
__stdcall EgtSaveMachGroupToFile( int nMGroupId, const wchar_t* wsFilePath, int nFlag)
|
||||
__stdcall EgtSaveMachGroupToFile( int nMGroupId, int nNumPlusId, const int nPlusIds[], const wchar_t* wsFilePath, int nFlag)
|
||||
{
|
||||
return ( ExeSaveMachGroupToFile( nMGroupId, wstrztoA( wsFilePath), nFlag) ? TRUE : FALSE) ;
|
||||
INTVECTOR vPlusId ;
|
||||
vPlusId.reserve( nNumPlusId) ;
|
||||
for ( int i = 0 ; i < nNumPlusId ; ++i)
|
||||
vPlusId.push_back( nPlusIds[i]) ;
|
||||
return ( ExeSaveMachGroupToFile( nMGroupId, vPlusId, wstrztoA( wsFilePath), nFlag) ? TRUE : FALSE) ;
|
||||
}
|
||||
|
||||
Binary file not shown.
Reference in New Issue
Block a user