Files correlati : Ricompilazione Demo : [ ] Commento : Riportate le modifiche dalla versione 2.1 222 Si puo cominciare a fare il primo CD git-svn-id: svn://10.65.10.50/trunk@12708 c028cbd2-c16b-5b4b-a496-9718f37d4682
21 lines
331 B
C++
Executable File
21 lines
331 B
C++
Executable File
#include <xvt.h>
|
|
|
|
#include "mr0.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
int a = argc > 1 ? (argv[1][1] - '0') : 0;
|
|
switch (a)
|
|
{
|
|
case 3:
|
|
mr0400(argc,argv); break; // parametri ditta
|
|
case 4:
|
|
mr0500(argc,argv); break; // rilevazione produzione
|
|
case 0:
|
|
default:
|
|
mr0100(argc, argv);
|
|
}
|
|
exit(0);
|
|
return 0;
|
|
}
|