9f69d146a7
Files correlati : ci0 cilib ci0200a.msk Ricompilazione Demo : [ ] Commento : Aggiunto il programma di registrazione delle risorse / attrezzature sulle tabelle di modulo git-svn-id: svn://10.65.10.50/trunk@20575 c028cbd2-c16b-5b4b-a496-9718f37d4682
17 lines
513 B
C++
Executable File
17 lines
513 B
C++
Executable File
#include <xvt.h>
|
|
#include "ci0.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
const int op = (argc > 1) ? argv[1][1] - '0' : 0;
|
|
switch (op)
|
|
{
|
|
case 0 : ci0100(argc,argv); break; // gestione tabelle cont. ind.
|
|
case 1 : ci0200(argc,argv); break; // gestione risorse / attrezzature
|
|
case 2 : ci0300(argc,argv); break; // parametri configurazione Contabilita' Industriale
|
|
case 3 : ci0400(argc,argv); break; // immssione documenti
|
|
default: ci0100(argc,argv); break; // gestione tabelle cont. ind.
|
|
}
|
|
return 0;
|
|
}
|