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

16 lines
365 B
C

#ifndef _EBIND_H_
#define _EBIND_H_
#include "fnp_t.h"
/* Structure for the table of initial key bindings. */
typedef struct key_tab {
unsigned k_code ; /* Key code */
fnp_t k_fp ; /* Routine to handle it */
} key_tab ;
#define NBINDS 256 /* max # of bound keys */
extern key_tab keytab[ NBINDS] ; /* key bind to functions table */
#endif