20 lines
370 B
C++
20 lines
370 B
C++
|
#include <xvt.h>
|
||
|
|
||
|
// ******************************
|
||
|
// Gestione stampe di magazzino (anagrafica giacenze,storico,schede, disponibilita)
|
||
|
#include "pf0001.h"
|
||
|
|
||
|
int main(int argc, char** argv)
|
||
|
{
|
||
|
const int r = (argc > 1) ? argv[1][1]-'0' : 0;
|
||
|
|
||
|
switch (r)
|
||
|
{
|
||
|
case 0:
|
||
|
default:
|
||
|
pf0001100(argc,argv) ; break; // stampa etichette articoli
|
||
|
}
|
||
|
exit(0);
|
||
|
return 0;
|
||
|
}
|