Files correlati : Ricompilazione Demo : [ ] Commento : spostato menu hardy in verticalizzazioni git-svn-id: svn://10.65.10.50/branches/R_10_00@21507 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			17 lines
		
	
	
		
			390 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			390 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
#include <xvt.h>
 | 
						|
#include "ba7.h"
 | 
						|
 | 
						|
int main(int argc, char** argv)
 | 
						|
{
 | 
						|
  const int r = (argc > 1) ? (argv[1][1]-'0') : 0;
 | 
						|
 | 
						|
  switch (r)
 | 
						|
  {
 | 
						|
  case  1: ba7200(argc, argv); break;  //copia area dati in lire                
 | 
						|
  case  2: ba7300(argc, argv); break;  //invio intero file via postino                
 | 
						|
  default: ba7100(argc, argv); break;  //postino                
 | 
						|
  }
 | 
						|
 | 
						|
  return 0;
 | 
						|
}
 |