campo-sirio/ve/ve0.cpp
alex cbb608d183 Patch level : xx.811
Files correlati     :
Ricompilazione Demo : [ ]
Commento           : Riportata la versione 1.5 fino alla patch 811


git-svn-id: svn://10.65.10.50/trunk@8985 c028cbd2-c16b-5b4b-a496-9718f37d4682
2000-05-05 15:25:49 +00:00

32 lines
560 B
C++
Executable File

#include <xvt.h>
#include "ve0.h"
int main( int argc, char** argv )
{
int rt = -1;
const int r = (argc > 1) ? atoi( &argv[1][1] ) : 1;
switch (r)
{
case 2:
rt = ve0200( argc, argv ); // Parametri Vendite
break;
case 3:
rt = ve0300( argc, argv ); // Compilatore Profili
break;
case 4:
rt = ve0400( argc, argv ); // Gestione Tabelle
break;
case 5:
rt = ve0500( argc, argv ); // Gestione Glossario
break;
default:
rt = ve0100( argc, argv ); // Gestione Documenti
break;
}
exit(rt);
return rt;
}