Lancio automatico della conversione archivi (ba1) Correzione programma numerazione registri bollati Correzione ricerca per codice fiscale sulle maschere delle persone. git-svn-id: svn://10.65.10.50/trunk@227 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			45 lines
		
	
	
		
			396 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			396 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
#include <xvt.h>
 | 
						|
#include <checks.h>
 | 
						|
 | 
						|
#include "ba6.h"
 | 
						|
 | 
						|
#define usage "Errore - uso : %s -[0,1]"
 | 
						|
 | 
						|
int main(int argc,char** argv)
 | 
						|
{
 | 
						|
  const int r = (argc > 1) ? atoi(&argv[1][1]) : -1;
 | 
						|
 | 
						|
  switch (r)
 | 
						|
  {
 | 
						|
  case 0:
 | 
						|
    ba6100(argc,argv) ; break;
 | 
						|
  case 1:
 | 
						|
    ba6200(argc,argv) ; break;
 | 
						|
  default:
 | 
						|
    error_box(usage, argv[0]) ; break;                  
 | 
						|
  }
 | 
						|
  return r < 0;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 |