Files correlati : tc9.exe Ricompilazione Demo : [ ] Commento : Invio sispac 0.02 git-svn-id: svn://10.65.10.50/trunk@17958 c028cbd2-c16b-5b4b-a496-9718f37d4682
24 lines
519 B
C++
Executable File
24 lines
519 B
C++
Executable File
#include <xvt.h>
|
|
|
|
#include "tc9.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
const int op = argc < 2 ? 0 : argv[1][1]-'0';
|
|
switch (op)
|
|
{
|
|
case 0: tc9100(argc,argv); break; // esiste sulla 4.0 Invio a Proforma
|
|
case 1: tc9200(argc,argv); break; // esiste dalla 4.0 Invio a ???
|
|
case 2: tc9300(argc,argv); break; // esiste dalla 4.0 Invio a Sispac/Cosmo
|
|
case 3: tc9400(argc,argv); break; // esiste dalla 4.0 Tabelle Sispac/Cosmo
|
|
default: tc9100(argc,argv); break;
|
|
}
|
|
exit(0);
|
|
return 0;
|
|
}
|
|
|
|
|
|
|
|
|
|
|