From c2032ba0af7a9fa64a790c59f33ce59ecb42fee7 Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Sat, 11 Oct 2025 10:01:18 +0200 Subject: [PATCH] Include : - aggiornamento prototipi. --- EExBeamMgr.h | 4 ++-- EInAPI.h | 4 ++-- EXeExecutor.h | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/EExBeamMgr.h b/EExBeamMgr.h index ba4a9f8..dc55e30 100644 --- a/EExBeamMgr.h +++ b/EExBeamMgr.h @@ -56,8 +56,8 @@ class __declspec( novtable) IBeamMgr virtual bool CalcSolid( int nPartId, bool bRecalc = false) = 0 ; virtual int GetSolid( int nPartId) const = 0 ; virtual bool ShowSolid( int nPartId, bool bShow) = 0 ; - virtual bool GetBuildingIsOn( void) const = 0 ; - virtual bool ShowBuilding( bool bShow) = 0 ; + virtual bool GetBuildingIsOn( int nAssGrpId) const = 0 ; + virtual bool ShowBuilding( int nAssGrpId, bool bShow) = 0 ; } ; diff --git a/EInAPI.h b/EInAPI.h index c7d1452..2335f6b 100644 --- a/EInAPI.h +++ b/EInAPI.h @@ -159,8 +159,8 @@ EIN_EXPORT BOOL __stdcall EgtBeamEnableProcess( int nGeomId, BOOL bEnable, BOOL EIN_EXPORT BOOL __stdcall EgtBeamCalcSolid( int nPartId, BOOL bRecalc) ; EIN_EXPORT int __stdcall EgtBeamGetSolid( int nPartId) ; EIN_EXPORT BOOL __stdcall EgtBeamShowSolid( int nPartId, BOOL bShow) ; -EIN_EXPORT BOOL __stdcall EgtBeamGetBuildingIsOn( void) ; -EIN_EXPORT BOOL __stdcall EgtBeamShowBuilding( BOOL bShow) ; +EIN_EXPORT BOOL __stdcall EgtBeamGetBuildingIsOn( int nAssGrpId) ; +EIN_EXPORT BOOL __stdcall EgtBeamShowBuilding( int nAssGrpId, BOOL bShow) ; // Tsc Executor EIN_EXPORT BOOL __stdcall EgtInitTscExec( void) ; diff --git a/EXeExecutor.h b/EXeExecutor.h index 593835b..f45f129 100644 --- a/EXeExecutor.h +++ b/EXeExecutor.h @@ -163,8 +163,8 @@ EXE_EXPORT bool ExeBeamEnableProcess( int nGeomId, bool bEnable, bool bUpdate = EXE_EXPORT bool ExeBeamCalcSolid( int nPartId, bool bRecalc = false) ; EXE_EXPORT int ExeBeamGetSolid( int nPartId) ; EXE_EXPORT bool ExeBeamShowSolid( int nPartId, bool bShow) ; -EXE_EXPORT bool ExeBeamGetBuildingIsOn( void) ; -EXE_EXPORT bool ExeBeamShowBuilding( bool bShow) ; +EXE_EXPORT bool ExeBeamGetBuildingIsOn( int nAssGrpId) ; +EXE_EXPORT bool ExeBeamShowBuilding( int nAssGrpId, bool bShow) ; // Tsc Executor EXE_EXPORT bool ExeInitTscExec( void) ;