From dc907ddc814b3617d8052ef596d4fc9912582952 Mon Sep 17 00:00:00 2001 From: DarioS Date: Tue, 8 Nov 2022 16:42:57 +0100 Subject: [PATCH] EgtInterface : - aggiunte interfacce per funzioni EgtBeamShowFacesName e EgtBeamShowLoadingSide. --- API_BeamMgr.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/API_BeamMgr.cpp b/API_BeamMgr.cpp index 0fef7ee..5092d43 100644 --- a/API_BeamMgr.cpp +++ b/API_BeamMgr.cpp @@ -122,6 +122,20 @@ __stdcall EgtBeamGetSideData( int nSide, return TRUE ; } +//----------------------------------------------------------------------------- +BOOL +__stdcall EgtBeamShowFacesName( BOOL bShow) +{ + return ( ExeBeamShowFacesName( ( bShow != FALSE)) ? TRUE : FALSE) ; +} + +//----------------------------------------------------------------------------- +BOOL +__stdcall EgtBeamShowLoadingSide( BOOL bShow, BOOL bFromLeft) +{ + return ( ExeBeamShowLoadingSide( ( bShow != FALSE), ( bFromLeft != FALSE)) ? TRUE : FALSE) ; +} + //----------------------------------------------------------------------------- int __stdcall EgtBeamAddProcess( int nGroup, int nProc, int nSide, const wchar_t* wsDes, int nProcId,