diff --git a/ci/ci0.cpp b/ci/ci0.cpp new file mode 100755 index 000000000..0398d5b3b --- /dev/null +++ b/ci/ci0.cpp @@ -0,0 +1,17 @@ +#include + +#include "ci0.h" + +int main(int argc, char** argv) +{ + const int r = (argc > 1) ? argv[1][1] - '0' : 0; + switch (r) + { +// case 1: ca0200(argc,argv); break; // stampa tabelle + case 2: ci0300(argc,argv); break; // parametri configurazione Contabilita' Industriale + case 3: ci0400(argc,argv); break; // Immssione documenti + default: break; // gestione tabelle + } + exit(0); + return 0; +} diff --git a/ci/cii0.h b/ci/cii0.h new file mode 100755 index 000000000..3009cea7e --- /dev/null +++ b/ci/cii0.h @@ -0,0 +1,7 @@ +#ifndef __CA0_H +#define __CA0_H + +int ci0300(int argc, char* argv[]); +int ci0400(int argc, char* argv[]); + +#endif // __CA0_H