Include :

- aggiornamento prototipi
- aggiunte costanti per nuove info di sistema.
This commit is contained in:
Dario Sassi
2021-02-08 08:46:02 +00:00
parent a90666ca1c
commit 2719ab579e
3 changed files with 18 additions and 1 deletions
+4 -1
View File
@@ -80,4 +80,7 @@ const std::string GDB_SI_LIST = "!LST" ;
const std::string GDB_SI_COPY = "!COP" ;
const std::string GDB_SI_MGRPONLY = "!MGO" ;
const std::string GDB_SI_DRAWMODE = "!DRM" ;
const std::string GDB_SI_DUPSOU = "!DSOU" ;
const std::string GDB_SI_DUPLIST = "!DLST" ;
const std::string GDB_SI_DUPMODIF = "!DMOD" ;
+7
View File
@@ -311,6 +311,13 @@ EIN_EXPORT BOOL __stdcall EgtDeselectPartObjs( int nPartId) ;
EIN_EXPORT BOOL __stdcall EgtSelectLayerObjs( int nLayerId) ;
EIN_EXPORT BOOL __stdcall EgtDeselectLayerObjs( int nLayerId) ;
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 EgtDuploSetModified( int nSouId) ;
EIN_EXPORT BOOL __stdcall EgtDuploUpdate( int nSouId) ;
EIN_EXPORT BOOL __stdcall EgtIsDuplo( int nDupId) ;
EIN_EXPORT int __stdcall EgtDuploGetOriginal( int nDupId) ;
// GeomDB Objects
EIN_EXPORT BOOL __stdcall EgtExistsObj( int nId) ;
+7
View File
@@ -350,6 +350,13 @@ EXE_EXPORT bool ExeDeselectPartObjs( int nPartId) ;
EXE_EXPORT bool ExeSelectLayerObjs( int nLayerId) ;
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 ExeDuploList( int nSouId, INTVECTOR& vnRef) ;
EXE_EXPORT bool ExeDuploSetModified( int nSouId) ;
EXE_EXPORT bool ExeDuploUpdate( int nSouId) ;
EXE_EXPORT bool ExeIsDuplo( int nDupId) ;
EXE_EXPORT int ExeDuploGetOriginal( int nDupId) ;
// GeomDB Objects
EXE_EXPORT bool ExeExistsObj( int nId) ;