From 9e8267d22878ece11d661bcb1e0f2cfeff994c59 Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Thu, 14 Dec 2023 20:27:14 +0100 Subject: [PATCH] Include : - aggiornamento prototipi. --- EInAPI.h | 2 ++ EXeExecutor.h | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/EInAPI.h b/EInAPI.h index 1776070..f4cb839 100644 --- a/EInAPI.h +++ b/EInAPI.h @@ -339,6 +339,8 @@ EIN_EXPORT BOOL __stdcall EgtSelectPathObjs( int nId, BOOL bHaltOnFork) ; EIN_EXPORT int __stdcall EgtDuploNew( int nSouId) ; EIN_EXPORT BOOL __stdcall EgtDuploCount( int nSouId, int* pnCount) ; EIN_EXPORT BOOL __stdcall EgtDuploList( int nSouId, int*& vInd, int* pnCount) ; +EIN_EXPORT BOOL __stdcall EgtDuploInRawCount( int nSouId, int* pnCount) ; +EIN_EXPORT BOOL __stdcall EgtDuploWithoutRawList( int*& vInd, int* pnCount) ; EIN_EXPORT BOOL __stdcall EgtDuploSetModified( int nSouId) ; EIN_EXPORT BOOL __stdcall EgtDuploGetModified( int nSouId, BOOL* pbModif) ; EIN_EXPORT BOOL __stdcall EgtDuploSetLocked( int nDupId) ; diff --git a/EXeExecutor.h b/EXeExecutor.h index b99fe35..632fdce 100644 --- a/EXeExecutor.h +++ b/EXeExecutor.h @@ -396,8 +396,9 @@ EXE_EXPORT bool ExeDeselectLayerObjs( int nLayerId) ; EXE_EXPORT bool ExeSelectPathObjs( int nId, bool bHaltOnFork) ; EXE_EXPORT int ExeDuploNew( int nSouId) ; EXE_EXPORT bool ExeDuploCount( int nSouId, int& nCount) ; -EXE_EXPORT bool ExeDuploCountInRaw( int nSouId, int& nCount) ; EXE_EXPORT bool ExeDuploList( int nSouId, INTVECTOR& vnRef) ; +EXE_EXPORT bool ExeDuploInRawCount( int nSouId, int& nCount) ; +EXE_EXPORT bool ExeDuploWithoutRawList( INTVECTOR& vnRef) ; EXE_EXPORT bool ExeDuploSetModified( int nSouId) ; EXE_EXPORT bool ExeDuploGetModified( int nSouId, bool& bModif) ; EXE_EXPORT bool ExeDuploSetLocked( int nDupId) ;