b7bbca0171
Files correlati : Ricompilazione Demo : [ ] Commento : git-svn-id: svn://10.65.10.50/trunk@19846 c028cbd2-c16b-5b4b-a496-9718f37d4682
21 lines
387 B
C++
Executable File
21 lines
387 B
C++
Executable File
#include <xvt.h>
|
|
|
|
#include "pe0001.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
int n = argc > 1 ? atoi(argv[1]+1) : 0;
|
|
switch(n)
|
|
{
|
|
case 1:
|
|
pe0001200(argc, argv); break; //importazione saldaconto
|
|
case 2:
|
|
pe0001300(argc, argv); break; //importazione cespiti
|
|
case 0:
|
|
default:
|
|
pe0001100(argc, argv); break; //importazione movimenti contabili
|
|
}
|
|
exit(0);
|
|
return 0;
|
|
}
|