489240acaf
Files correlati : ce2.exe Ricompilazione Demo : [ ] Commento : Modernizzata maschera ed aggiustati messaggi d'errore git-svn-id: svn://10.65.10.50/branches/R_10_00@21756 c028cbd2-c16b-5b4b-a496-9718f37d4682
19 lines
489 B
C++
Executable File
19 lines
489 B
C++
Executable File
#include <xvt.h>
|
|
|
|
#include "ce2.h"
|
|
|
|
int main(int argc,char** argv)
|
|
{
|
|
const int n = (argc > 1) ? (argv[1][1]-'0') : 0;
|
|
|
|
switch(n)
|
|
{
|
|
case 1: ce2200(argc, argv); break; // Apertura nuovo esercizio
|
|
case 2: ce2300(argc, argv); break; // Collegamenti contabili
|
|
case 3: ce2400(argc, argv); break; // Generazione movimenti contabili
|
|
case 4: ce2500(argc, argv); break; // Ripristino stampa bollato
|
|
default: ce2100(argc, argv); break; // Calcolo ammortamenti
|
|
}
|
|
return 0;
|
|
}
|