EgtInterface 2.4i3 :

- aggiunta interfaccia per funzione EgtGetAxisOffset.
This commit is contained in:
DarioS
2022-09-24 18:50:34 +02:00
parent bcf85c0246
commit 7a975ad54f
2 changed files with 9 additions and 0 deletions
+9
View File
@@ -2022,6 +2022,15 @@ __stdcall EgtGetAxisInvert( const wchar_t* wsAxis, BOOL* pbInvert)
return TRUE ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtGetAxisOffset( const wchar_t* wsAxis, double* pdOffset)
{
if ( pdOffset == nullptr)
return FALSE ;
return( ExeGetAxisOffset( wstrztoA( wsAxis), *pdOffset) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtGetAllHeadsNames( wchar_t*& wsNames)