campo-sirio/cg/cg7.cpp
cris ce1bbc86a2 Patch level : 4.0 680
Files correlati     : cg7.exe cg7300a.msk sispac.ini
Ricompilazione Demo : [ ]
Commento            : Aggiunto programma di invio a Sispac per Ruffo


git-svn-id: svn://10.65.10.50/trunk@14649 c028cbd2-c16b-5b4b-a496-9718f37d4682
2006-12-15 12:14:13 +00:00

23 lines
449 B
C++
Executable File

#include <xvt.h>
#include "cg7.h"
int main(int argc, char** argv)
{
const int op = argc < 2 ? 0 : argv[1][1]-'0';
switch (op)
{
case 1: cg7100(argc,argv); break; // Invio ad altra procedura (zucchetti)
case 2: cg7200(argc,argv); break; // Invio ad altra procedura (proforma)
case 3: cg7300(argc,argv); break; // Invio ad altra procedura (Sispac/Cosmo)
default: cg7100(argc,argv); break;
}
exit(0);
return 0;
}