2013-05-20 01:16:08 -04:00
|
|
|
#ifndef _BIND_H_
|
|
|
|
#define _BIND_H_
|
|
|
|
|
2021-07-22 22:47:58 -04:00
|
|
|
#include "names.h"
|
2021-07-19 03:39:00 -04:00
|
|
|
|
2021-07-30 04:24:52 -04:00
|
|
|
/* Bindable uEMACS functions */
|
|
|
|
BINDABLE( apro) ;
|
|
|
|
BINDABLE( bindtokey) ;
|
|
|
|
BINDABLE( desbind) ;
|
|
|
|
BINDABLE( deskey) ;
|
|
|
|
BINDABLE( help) ;
|
|
|
|
BINDABLE( unbindkey) ;
|
2021-07-20 05:34:35 -04:00
|
|
|
|
2015-01-16 08:12:27 -05:00
|
|
|
int startup( const char *fname) ;
|
2021-07-20 05:34:35 -04:00
|
|
|
|
|
|
|
/* find a key to function association in the key to function mapping table */
|
|
|
|
const char *transbind( char *skey) ; /* by string representation of key */
|
2013-05-20 01:16:08 -04:00
|
|
|
|
|
|
|
#endif
|