2021-07-30 04:24:52 -04:00
|
|
|
/* execute.h -- */
|
2021-08-12 23:06:58 -04:00
|
|
|
#ifndef _EXECUTE_H_
|
|
|
|
#define _EXECUTE_H_
|
2021-07-30 04:24:52 -04:00
|
|
|
|
2021-08-12 23:06:58 -04:00
|
|
|
#include "names.h" /* BINDABLE() */
|
2021-07-30 04:24:52 -04:00
|
|
|
|
2021-08-12 23:06:58 -04:00
|
|
|
extern int gasave ; /* global ASAVE size */
|
|
|
|
extern int gacount ; /* count until next ASAVE */
|
2013-10-08 04:39:15 -04:00
|
|
|
|
2021-07-30 04:24:52 -04:00
|
|
|
int execute( unsigned keycode, int f, int n) ;
|
2016-03-02 08:37:43 -05:00
|
|
|
void kbd_loop( void) ;
|
2021-07-30 04:24:52 -04:00
|
|
|
|
2021-08-12 23:06:58 -04:00
|
|
|
#define CFENCE 1 /* fence matching in CMODE */
|
2021-07-30 04:24:52 -04:00
|
|
|
#if CFENCE
|
2021-08-12 23:06:58 -04:00
|
|
|
BINDABLE( getfence) ;
|
2021-07-30 04:24:52 -04:00
|
|
|
#endif
|
|
|
|
|
2021-08-12 23:06:58 -04:00
|
|
|
#endif
|
2021-07-30 04:24:52 -04:00
|
|
|
/* end of execute.h */
|