EgtInterface 1.9i2 :
- aggiunta in interfaccia funzione EgtGetAxisInvert.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user