1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-06-03 02:50:42 +00:00
uemacs/ebind.h

10 lines
295 B
C
Raw Normal View History

/* Structure for the table of initial key bindings. */
struct key_tab {
2013-10-11 03:20:06 +00:00
int k_code ; /* Key code */
int (*k_fp)( int, int) ; /* Routine to handle it */
} ;
2013-10-11 03:20:06 +00:00
#define NBINDS 256 /* max # of bound keys */
extern struct key_tab keytab[ NBINDS] ; /* key bind to functions table */