EgtInterface 1.8b1 :

- aggiunte interfacce per EgtGetLastMachMgrErrorId e EgtGetLastMachMgrErrorString.
This commit is contained in:
Dario Sassi
2017-02-04 18:42:56 +00:00
parent ad4abc9be9
commit 0a23cdacaa
2 changed files with 16 additions and 0 deletions
+16
View File
@@ -28,6 +28,22 @@ __stdcall EgtInitMachMgr( const wchar_t* wsMachinesDir)
return ( ExeInitMachMgr( wstrztoA( wsMachinesDir)) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
// Errors
//-----------------------------------------------------------------------------
int
__stdcall EgtGetLastMachMgrErrorId( void)
{
return ExeGetLastMachMgrErrorId() ;
}
//-----------------------------------------------------------------------------
wchar_t*
__stdcall EgtGetLastMachMgrErrorString( void)
{
return _wcsdup( stringtoW( ExeGetLastMachMgrErrorString())) ;
}
//-----------------------------------------------------------------------------
// Machines
//-----------------------------------------------------------------------------