2013-05-20 01:16:08 -04:00
|
|
|
#ifndef _BIND_H_
|
|
|
|
#define _BIND_H_
|
|
|
|
|
2021-07-19 03:39:00 -04:00
|
|
|
#include "fnp_t.h"
|
|
|
|
|
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
|
|
|
|
|
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) ;
|
2015-01-16 08:12:27 -05:00
|
|
|
int startup( const char *fname) ;
|
2021-07-19 03:39:00 -04:00
|
|
|
fnp_t getbind( unsigned keycode) ;
|
|
|
|
const char *transbind( char *skey) ;
|
2013-05-20 01:16:08 -04:00
|
|
|
|
|
|
|
#endif
|