Files correlati : no patch Ricompilazione Demo : [ ] Commento : Riportata la versione 01.05 patch 888 sul main trunk git-svn-id: svn://10.65.10.50/trunk@9217 c028cbd2-c16b-5b4b-a496-9718f37d4682
42 lines
545 B
C++
Executable File
42 lines
545 B
C++
Executable File
#include <xvt.h>
|
|
|
|
#include "cg0.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
const int op = argc < 2 ? 0 : argv[1][1]-'0';
|
|
switch (op)
|
|
{
|
|
case 1: cg0200(argc,argv); break; // Clienti/Fornitori
|
|
case 2: cg0300(argc,argv); break; // Progressivi allegati
|
|
case 3: cg0400(argc,argv); break; // Progressivi IVA
|
|
case 4: cg0500(argc,argv); break; // Causali contabili
|
|
case 5: cg0600(argc,argv); break; // Tabelle contabii
|
|
default: cg0100(argc,argv); break; // Piano dei conti
|
|
}
|
|
exit(0);
|
|
return 0;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|