EgtInterface 1.9i2 :

- aggiunta in interfaccia funzione EgtGetAxisInvert.
This commit is contained in:
Dario Sassi
2018-09-11 18:37:29 +00:00
parent f1fc03e01b
commit ab03432ca9
2 changed files with 13 additions and 0 deletions
+13
View File
@@ -1641,6 +1641,19 @@ __stdcall EgtGetHeadExitCount( const wchar_t* wsHead)
return ExeGetHeadExitCount( wstrztoA( wsHead)) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtGetAxisInvert( const wchar_t* wsAxis, BOOL* pbInvert)
{
if ( pbInvert == nullptr)
return FALSE ;
bool bInvert ;
if ( ! ExeGetAxisInvert( wstrztoA( wsAxis), bInvert))
return FALSE ;
*pbInvert = ( bInvert ? TRUE : FALSE) ;
return TRUE ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtGetAllHeadsNames( wchar_t*& wsNames)