From f9d1746fa88e7f472a2479a17a9e6df47bf8ba8c Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Tue, 16 Jan 2024 19:43:28 +0100 Subject: [PATCH] EgtInterface : - aggiunta interfaccia di funzione EgtChangeMachGroupName. --- API_MachMgr.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/API_MachMgr.cpp b/API_MachMgr.cpp index 8a05e9b..d7d32a9 100644 --- a/API_MachMgr.cpp +++ b/API_MachMgr.cpp @@ -198,6 +198,13 @@ __stdcall EgtRemoveMachGroup( int nMGroupId) return ( ExeRemoveMachGroup( nMGroupId) ? TRUE : FALSE) ; } +//----------------------------------------------------------------------------- +BOOL +__stdcall EgtChangeMachGroupName( int nMGroupInd, const wchar_t* wsNewName) +{ + return ( ExeChangeMachGroupName( nMGroupInd, wstrztoA( wsNewName)) ? TRUE : FALSE) ; +} + //----------------------------------------------------------------------------- BOOL __stdcall EgtGetMachGroupName( int nMGroupInd, wchar_t*& wsName)