c8d2a302e3
Files correlati : Ricompilazione Demo : [ ] Commento : Riportata la versione AGA 1.7 patch 349 git-svn-id: svn://10.65.10.50/trunk@10708 c028cbd2-c16b-5b4b-a496-9718f37d4682
21 lines
352 B
C++
Executable File
21 lines
352 B
C++
Executable File
#include <checks.h>
|
|
#include <xvt.h>
|
|
|
|
#include "ve1.h"
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
const int r = (argc>1) ? argv[1][1]-'0' : -1;
|
|
switch (r)
|
|
{
|
|
case 0:
|
|
ve1100(argc, argv); break;
|
|
case 1:
|
|
ve1200(argc, argv); break;
|
|
default:
|
|
error_box("Sintassi: %s [-0 {[params]|[L]}, 1]", argv[0]); break;
|
|
}
|
|
exit(0);
|
|
return 0;
|
|
}
|