Ora la versione DEMO permette di utilizzare il modulo base per consentire attivazione SSA git-svn-id: svn://10.65.10.50/branches/R_10_00@22613 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			27 lines
		
	
	
		
			581 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			581 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
#ifndef __KEYS_H
 | 
						|
#define __KEYS_H
 | 
						|
 | 
						|
#ifndef XVT_INCL_DEFS
 | 
						|
#include "../xvaga/xvt_defs.h"
 | 
						|
#endif
 | 
						|
 | 
						|
/* @M */
 | 
						|
#define K_BACKSPACE     8
 | 
						|
#define K_TAB           9
 | 
						|
#define K_ENTER         13
 | 
						|
#define K_ESC           27
 | 
						|
#define K_SPACE         32
 | 
						|
#define K_SHIFT         1000
 | 
						|
#define K_CTRL          10000
 | 
						|
#define K_CTRL_ENTER    K_CTRL+K_ENTER
 | 
						|
#define K_AUTO_ENTER    21013
 | 
						|
#define K_QUIT          20334
 | 
						|
#define K_FORCE_CLOSE   21334
 | 
						|
#define K_SAVE          20082
 | 
						|
#define K_SHIFT_TAB     K_SHIFT+K_TAB
 | 
						|
#define K_NO            20000+'N'
 | 
						|
#define K_YES           20000+'Y'
 | 
						|
 | 
						|
/* @END */
 | 
						|
#endif
 |