Files correlati : db0.exe Ricompilazione Demo : [ ] Commento : Corretta libreria sheet per sistemare controlli in immissione distinta base git-svn-id: svn://10.65.10.50/branches/R_10_00@22145 c028cbd2-c16b-5b4b-a496-9718f37d4682
33 lines
452 B
C
Executable File
33 lines
452 B
C
Executable File
#ifndef __ALLEG_H
|
|
#define __ALLEG_H
|
|
|
|
#define DEFFLD(fldname) const char* const ALL_##fldname = #fldname;
|
|
|
|
// Key 1 = ANNO+CODATT+PROGR
|
|
DEFFLD(ANNO)
|
|
DEFFLD(CODATT)
|
|
DEFFLD(PROGR)
|
|
|
|
// Key 2 = TIPOCF+CODCF+OCFPI+PROGR
|
|
DEFFLD(TIPOCF)
|
|
DEFFLD(CODCF)
|
|
DEFFLD(OCFPI)
|
|
|
|
// Key 3 = NUMREG
|
|
DEFFLD(NUMREG) // Can be null
|
|
|
|
// Flags
|
|
DEFFLD(IGNORA)
|
|
|
|
// Content fields
|
|
DEFFLD(DATAREG)
|
|
DEFFLD(CORRISP)
|
|
DEFFLD(IMPOSTA)
|
|
DEFFLD(TIPIMP)
|
|
DEFFLD(TIPOPE)
|
|
|
|
#undef DEFFLD
|
|
|
|
#endif
|
|
|