985d6b52f8
- aggiornamento prototipo.
29 lines
1.3 KiB
C
29 lines
1.3 KiB
C
//----------------------------------------------------------------------------
|
|
// EgalTech 2014-2020
|
|
//----------------------------------------------------------------------------
|
|
// File : EExExportConst.h Data : 12.10.20 Versione : 2.2j3
|
|
// Contenuto : Costanti per esportazione.
|
|
//
|
|
//
|
|
//
|
|
// Modifiche : 07.08.14 DS Creazione modulo.
|
|
// 12.10.20 DS aggiunto EEXFLAG_ADV_NAMES e EEXFLAG_DEFAULT.
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
//-----------------------------------------------------------------------------
|
|
enum EExFilter { EEXFLT_NONE = 0x0000,
|
|
EEXFLT_LEVUSER = 0x0001, EEXFLT_LEVSYSTEM = 0x0002, EEXFLT_LEVTEMP = 0x0004,
|
|
EEXFLT_MODESTD = 0x0008, EEXFLT_MODELOCKED = 0x0010, EEXFLT_MODEHIDDEN = 0x00020,
|
|
EEXFLT_STAOFF = 0x0040, EEXFLT_STAON = 0x0080, EEXFLT_STASEL = 0x00100} ;
|
|
const int EEXFLT_DEFAULT = EEXFLT_LEVUSER | EEXFLT_MODESTD | EEXFLT_STAON | EEXFLT_STASEL ;
|
|
|
|
//-----------------------------------------------------------------------------
|
|
enum EExFlag { EEXFLAG_NONE = 0x0000,
|
|
EEXFLAG_COMP_LAYER = 0x0001,
|
|
EEXFLAG_COL_BY_LAYER = 0x0002,
|
|
EEXFLAG_ADV_NAMES = 0x0004} ;
|
|
const int EEXFLAG_DEFAULT = EEXFLAG_COMP_LAYER ;
|