1997-05-28 07:43:55 +00:00
|
|
|
#include <xvt.h>
|
2011-11-18 17:43:06 +00:00
|
|
|
|
1997-05-28 07:43:55 +00:00
|
|
|
// Modulo di Gestione ???
|
|
|
|
#include "mg0.h"
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
int rt = -1;
|
|
|
|
const int r = (argc > 1) ? atoi(&argv[1][1]) : -1;
|
|
|
|
|
|
|
|
switch (r)
|
|
|
|
{
|
|
|
|
case 0: // gestione
|
|
|
|
default:
|
2011-11-18 17:43:06 +00:00
|
|
|
break;
|
1997-05-28 07:43:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return rt ;
|
|
|
|
}
|