Files correlati : Ricompilazione Demo : [ ] Commento : Riportata la versione AGA patch 218 sul main trunk git-svn-id: svn://10.65.10.50/trunk@10087 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			20 lines
		
	
	
		
			352 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			352 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
#include <xvt.h>
 | 
						|
#include "vesirio.h"
 | 
						|
 | 
						|
extern int vesirio(int argc, char* argv[]); //scrive file .dbf per AS400 (ma pensa te...!)
 | 
						|
 | 
						|
int main(int argc, char **argv) 
 | 
						|
{
 | 
						|
  const int r= (argc>1)? argv[1][1]-'0' : -1;
 | 
						|
 | 
						|
  switch (r) 
 | 
						|
  {
 | 
						|
  case (0):
 | 
						|
    vesirio1(argc, argv); break;  
 | 
						|
  default: 
 | 
						|
    vesirio1(argc, argv); break;
 | 
						|
  }
 | 
						|
  exit(0);
 | 
						|
  return 0;
 | 
						|
}
 |