EgtExecutor 1.6g3 :

- correzione controlli in ExeCreateGeoFrame
- ExeInitGeomDB rinominata ExeInitContext
- aggiunta ExeDeleteContext
- migliorato log di ExeExit
- aggiunta possibilità di leggere e scrivere variabili LUA_Base.cpp
- aggiunta possibilità di chiamare funzioni Lua.
This commit is contained in:
Dario Sassi
2015-07-14 15:48:55 +00:00
parent d070901ce0
commit c5fdfea88c
27 changed files with 673 additions and 524 deletions
+13
View File
@@ -45,6 +45,19 @@ DeleteGseContext( int nInd)
return true ;
}
//----------------------------------------------------------------------------
bool
GetAllGseContextOn( INTVECTOR& vOn)
{
vOn.reserve( MAX_CTX) ;
vOn.clear() ;
for ( int i = 0 ; i < MAX_CTX ; ++ i) {
if ( s_GseOn[i])
vOn.push_back( i + 1) ;
}
return true ;
}
//----------------------------------------------------------------------------
bool
ClearAllGseContexts( void)