EgtInterface :

- aggiunta interfaccia per funzione EgtGetAxisHomePos.
This commit is contained in:
DarioS
2022-04-11 19:16:04 +02:00
parent df717ee695
commit 3ef51d2156
+11 -4
View File
@@ -2132,16 +2132,23 @@ __stdcall EgtGetAxisPos( const wchar_t* wsAxis, double* pdVal)
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtGetAxisMin( const wchar_t* wsAxis, double* pdVal)
__stdcall EgtGetAxisMin( const wchar_t* wsAxis, double* pdMin)
{
return ( ExeGetAxisMin( wstrztoA( wsAxis), pdVal) ? TRUE : FALSE) ;
return ( ExeGetAxisMin( wstrztoA( wsAxis), pdMin) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtGetAxisMax( const wchar_t* wsAxis, double* pdVal)
__stdcall EgtGetAxisMax( const wchar_t* wsAxis, double* pdMax)
{
return ( ExeGetAxisMax( wstrztoA( wsAxis), pdVal) ? TRUE : FALSE) ;
return ( ExeGetAxisMax( wstrztoA( wsAxis), pdMax) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtGetAxisHomePos( const wchar_t* wsAxis, double* pdHome)
{
return ( ExeGetAxisHomePos( wstrztoA( wsAxis), pdHome) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------