b5b6c20ebc
- aggiornate interfacce - aggiunte costanti per codici di protezione (con opzioni).
30 lines
1.3 KiB
C
30 lines
1.3 KiB
C
//----------------------------------------------------------------------------
|
|
// EgalTech 2015-2015
|
|
//----------------------------------------------------------------------------
|
|
// File : EgtKeyCodes.h Data : 27.03.15 Versione : 1.6c9
|
|
// Contenuto : Costanti per codici di protezione librerie di base.
|
|
//
|
|
//
|
|
//
|
|
// Modifiche : 27.03.15 DS Creazione modulo.
|
|
//
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
//----------------------------------------------------------------------------
|
|
const int KEY_BASELIB_PROD = 1231 ;
|
|
const int KEY_BASELIB_VER = 16 ;
|
|
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
|