EgtInterface 1.6a4 :

- completamento modifiche per registrazione comandi in lua e per gestione RefType e RefId.
This commit is contained in:
Dario Sassi
2015-01-26 07:53:04 +00:00
parent 4e5a81c493
commit a45c3fca8a
25 changed files with 1574 additions and 1254 deletions
+8 -8
View File
@@ -346,7 +346,7 @@ __stdcall EgtSetName( int nId, const wchar_t* wsName)
//-----------------------------------------------------------------------------
bool
__stdcall EgtSetName( int nId, const string& sName)
EgtSetName( int nId, const string& sName)
{
IGeomDB* pGeomDB = GetCurrGeomDB() ;
VERIFY_GEOMDB( pGeomDB, false)
@@ -378,7 +378,7 @@ __stdcall EgtGetName( int nId, wchar_t*& wsName)
//-----------------------------------------------------------------------------
bool
__stdcall EgtGetName( int nId, string& sName)
EgtGetName( int nId, string& sName)
{
IGeomDB* pGeomDB = GetCurrGeomDB() ;
VERIFY_GEOMDB( pGeomDB, false)
@@ -423,7 +423,7 @@ __stdcall EgtSetInfo( int nId, const wchar_t* wsKey, const wchar_t* wsInfo)
//-----------------------------------------------------------------------------
bool
__stdcall EgtSetInfo( int nId, const string& sKey, const string& sInfo)
EgtSetInfo( int nId, const string& sKey, const string& sInfo)
{
IGeomDB* pGeomDB = GetCurrGeomDB() ;
VERIFY_GEOMDB( pGeomDB, FALSE)
@@ -450,7 +450,7 @@ __stdcall EgtSetInfoInt( int nId, const wchar_t* wsKey, int nInfo)
//-----------------------------------------------------------------------------
bool
__stdcall EgtSetInfo( int nId, const string& sKey, int nInfo)
EgtSetInfo( int nId, const string& sKey, int nInfo)
{
IGeomDB* pGeomDB = GetCurrGeomDB() ;
VERIFY_GEOMDB( pGeomDB, FALSE)
@@ -471,7 +471,7 @@ __stdcall EgtGetInfo( int nId, const wchar_t* wsKey, wchar_t*& wsInfo)
//-----------------------------------------------------------------------------
bool
__stdcall EgtGetInfo( int nId, const string& sKey, string& sInfo)
EgtGetInfo( int nId, const string& sKey, string& sInfo)
{
IGeomDB* pGeomDB = GetCurrGeomDB() ;
VERIFY_GEOMDB( pGeomDB, FALSE)
@@ -492,7 +492,7 @@ __stdcall EgtGetInfoInt( int nId, const wchar_t* wsKey, int* pnInfo)
//-----------------------------------------------------------------------------
bool
__stdcall EgtGetInfo( int nId, const string& sKey, int& nInfo)
EgtGetInfo( int nId, const string& sKey, int& nInfo)
{
IGeomDB* pGeomDB = GetCurrGeomDB() ;
VERIFY_GEOMDB( pGeomDB, FALSE)
@@ -509,7 +509,7 @@ __stdcall EgtExistsInfo( int nId, const wchar_t* wsKey)
//-----------------------------------------------------------------------------
bool
__stdcall EgtExistsInfo( int nId, const string& sKey)
EgtExistsInfo( int nId, const string& sKey)
{
IGeomDB* pGeomDB = GetCurrGeomDB() ;
VERIFY_GEOMDB( pGeomDB, FALSE)
@@ -526,7 +526,7 @@ __stdcall EgtRemoveInfo( int nId, const wchar_t* wsKey)
//-----------------------------------------------------------------------------
bool
__stdcall EgtRemoveInfo( int nId, const string& sKey)
EgtRemoveInfo( int nId, const string& sKey)
{
IGeomDB* pGeomDB = GetCurrGeomDB() ;
VERIFY_GEOMDB( pGeomDB, FALSE)