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
23 lines
449 B
C++
Executable File
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;
|
|
}
|
|
|
|
|
|
|
|
|
|
|