EgtInterface 2.1f3 :

- aggiunta interfaccia per EgtGetMachMgrWarningId e EgtGetMachMgrWarningString.
This commit is contained in:
Dario Sassi
2019-06-26 16:19:28 +00:00
parent 12b363e25c
commit dbb3cac540
2 changed files with 15 additions and 1 deletions
+15 -1
View File
@@ -29,7 +29,7 @@ __stdcall EgtInitMachMgr( const wchar_t* wsMachinesDir, const wchar_t* wsToolMak
}
//-----------------------------------------------------------------------------
// Errors
// Errors & Warnings
//-----------------------------------------------------------------------------
int
__stdcall EgtGetLastMachMgrErrorId( void)
@@ -44,6 +44,20 @@ __stdcall EgtGetLastMachMgrErrorString( void)
return _wcsdup( stringtoW( ExeGetLastMachMgrErrorString())) ;
}
//-----------------------------------------------------------------------------
int
__stdcall EgtGetMachMgrWarningId( int nInd)
{
return ExeGetMachMgrWarningId( nInd) ;
}
//-----------------------------------------------------------------------------
wchar_t*
__stdcall EgtGetMachMgrWarningString( int nInd)
{
return _wcsdup( stringtoW( ExeGetMachMgrWarningString( nInd))) ;
}
//-----------------------------------------------------------------------------
// Machines
//-----------------------------------------------------------------------------