513ab88c6e
- aggiornamento codice di protezione mansile delle librerie
45 lines
2.3 KiB
C
45 lines
2.3 KiB
C
//----------------------------------------------------------------------------
|
|
// EgalTech 2015-2026
|
|
//----------------------------------------------------------------------------
|
|
// File : EgtKeyCodes.h Data : 02.01.26 Versione : 3.1a1
|
|
// Contenuto : Costanti per codici di protezione librerie di base.
|
|
//
|
|
//
|
|
//
|
|
// Modifiche : 27.03.15 DS Creazione modulo.
|
|
// 11.07.16 DS Portata chiave librerie base da 1231 a 207
|
|
// per liberare bit per i prodotti (207 contenuto in 1231).
|
|
// 18.08.17 DS Portato a 18 KEY_BASELIB_VER.
|
|
// 07.08.18 DS Portato a 19 KEY_BASELIB_VER.
|
|
// 01.08.19 DS Portato a 21 KEY_BASELIB_VER.
|
|
// 22.02.20 DS Aggiunta costante KEYOPT_EMK_NC_OFF.
|
|
// 04.08.20 DS Portato a 22 KEY_BASELIB_VER.
|
|
// 01.01.21 DS Nuova gestione KEY_BASELIB_VER con versione prodotto e mese.
|
|
// 01.01.22 DS Passaggio a versione 24.
|
|
// 01.01.23 DS Passaggio a versione 25.
|
|
// 16.01.24 DS Passaggio a versione 26.
|
|
// 07.01.25 DS Passaggio a versione 27.
|
|
// 02.01.26 DS Passaggio a versione 31.
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
//----------------------------------------------------------------------------
|
|
const int KEY_BASELIB_PROD = 207 ;
|
|
const int KEY_BASELIB_VER = 3105 ;
|
|
const int KEY_BASELIB_LEV = 1 ;
|
|
|
|
//----------------------------------------------------------------------------
|
|
const int KEYOPT_EGK_BASE = 0x00001 ; // EgtGeomKernel base
|
|
const int KEYOPT_EGK_SAVE = 0x00002 ; // EgtGeomKernel salvataggio
|
|
const int KEYOPT_EGR_BASE = 0x00004 ; // EgtGraphics
|
|
const int KEYOPT_EEX_INPBASE = 0x00008 ; // EgtExchange import base
|
|
const int KEYOPT_EEX_INPADV = 0x00010 ; // EgtExchange import avanzato
|
|
const int KEYOPT_EEX_EXPBASE = 0x00020 ; // EgtExchange export base
|
|
const int KEYOPT_EEX_EXPADV = 0x00040 ; // EgtExchange export avanzato
|
|
const int KEYOPT_EMK_BASE = 0x00080 ; // EgtMachKernel lavorazioni base
|
|
const int KEYOPT_EMK_ADV = 0x00100 ; // EgtMachKernel lavorazioni avanzate
|
|
const int KEYOPT_ENS_BASE = 0x00200 ; // EgtNesting automatico base
|
|
const int KEYOPT_EMK_NC_OFF = 0x00400 ; // EgtMachKernel disabilita generazione part-program
|