15 lines
256 B
C++
15 lines
256 B
C++
|
#include <xvt.h>
|
||
|
#include "ps6362.h"
|
||
|
|
||
|
int main(int argc, char** argv)
|
||
|
{
|
||
|
int rt = -1;
|
||
|
const int r = (argc > 1) ? atoi(&argv[1][1]) : 1;
|
||
|
|
||
|
switch (r)
|
||
|
{
|
||
|
default:
|
||
|
case 0: rt = ps6362100(argc, argv); break; // Esportrazione Major-Flexform
|
||
|
}
|
||
|
return rt;
|
||
|
}
|