EgtInterface 2.4d1 :

- aggiunte interfacce per funzioni EgtGetAxisMin e EgtGetAxisMax.
This commit is contained in:
DarioS
2022-04-11 16:26:25 +02:00
parent 10fc1e749b
commit df717ee695
2 changed files with 14 additions and 0 deletions
+14
View File
@@ -2130,6 +2130,20 @@ __stdcall EgtGetAxisPos( const wchar_t* wsAxis, double* pdVal)
return ( ExeGetAxisPos( wstrztoA( wsAxis), pdVal) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtGetAxisMin( const wchar_t* wsAxis, double* pdVal)
{
return ( ExeGetAxisMin( wstrztoA( wsAxis), pdVal) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtGetAxisMax( const wchar_t* wsAxis, double* pdVal)
{
return ( ExeGetAxisMax( wstrztoA( wsAxis), pdVal) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtLoadTool( const wchar_t* wsHead, int nExit, const wchar_t* wsTool)