2009-12-11 13:54:11 +00:00
|
|
|
#include <xvt.h>
|
|
|
|
|
|
|
|
#include "pe0001.h"
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
int n = argc > 1 ? atoi(argv[1]+1) : 0;
|
|
|
|
switch(n)
|
|
|
|
{
|
2009-12-28 15:06:11 +00:00
|
|
|
case 1:
|
|
|
|
pe0001200(argc, argv); break; //importazione saldaconto
|
|
|
|
case 2:
|
|
|
|
pe0001300(argc, argv); break; //importazione cespiti
|
2009-12-11 13:54:11 +00:00
|
|
|
case 0:
|
|
|
|
default:
|
2009-12-28 15:06:11 +00:00
|
|
|
pe0001100(argc, argv); break; //importazione movimenti contabili
|
2009-12-11 13:54:11 +00:00
|
|
|
}
|
|
|
|
exit(0);
|
|
|
|
return 0;
|
|
|
|
}
|