d1852229ad
Files correlati : agalib Ricompilazione Demo : [ ] Commento : Implementato di meccanismo generico di blocco degli inserimenti, attivabile nelle singole applicazioni (cg2 e ve0) git-svn-id: svn://10.65.10.50/branches/R_10_00@22420 c028cbd2-c16b-5b4b-a496-9718f37d4682
38 lines
504 B
C
Executable File
38 lines
504 B
C
Executable File
#ifndef __ALLEG_H
|
|
#define __ALLEG_H
|
|
|
|
#define DEFFLD(fldname) const char* const ALL_##fldname = #fldname;
|
|
|
|
// Key 1 = ANNO+PROGR
|
|
DEFFLD(ANNO)
|
|
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(MODPAG)
|
|
DEFFLD(IMPORTO)
|
|
DEFFLD(IMPOSTA)
|
|
DEFFLD(TIPOPE)
|
|
|
|
DEFFLD(CONTRATTO)
|
|
DEFFLD(IMPORTOTOT)
|
|
DEFFLD(IMPOSTATOT)
|
|
|
|
DEFFLD(NUMRETT)
|
|
|
|
#undef DEFFLD
|
|
|
|
#endif
|
|
|