2013-05-20 01:16:08 -04:00
|
|
|
#ifndef _BIND_H_
|
|
|
|
#define _BIND_H_
|
|
|
|
|
2021-07-20 05:34:35 -04:00
|
|
|
#include "ebind.h"
|
2021-07-19 03:39:00 -04:00
|
|
|
|
2013-09-23 09:30:31 -04:00
|
|
|
#define APROP 1 /* Add code for Apropos command */
|
|
|
|
|
|
|
|
#if APROP
|
|
|
|
int apro( int f, int n) ;
|
|
|
|
#endif
|
|
|
|
|
2021-07-20 05:34:35 -04:00
|
|
|
/* uEMACS functions */
|
2013-05-20 01:16:08 -04:00
|
|
|
int help( int f, int n) ;
|
|
|
|
int deskey( int f, int n) ;
|
|
|
|
int bindtokey( int f, int n) ;
|
|
|
|
int unbindkey( int f, int n) ;
|
|
|
|
int desbind( int f, int n) ;
|
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 */
|
|
|
|
key_tab *getkeybind( unsigned keycode) ; /* by key code */
|
|
|
|
const char *transbind( char *skey) ; /* by string representation of key */
|
2013-05-20 01:16:08 -04:00
|
|
|
|
|
|
|
#endif
|