mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-16 01:26:06 -05:00
21 lines
433 B
C
21 lines
433 B
C
#ifndef _TERMIO_H_
|
|
#define _TERMIO_H_
|
|
|
|
#include "utf8.h"
|
|
|
|
#define TYPEAH 1 /* type ahead causes update to be skipped */
|
|
|
|
#define HUGE 1000 /* Huge number (for row/col) */
|
|
|
|
extern int ttrow ; /* Row location of HW cursor */
|
|
extern int ttcol ; /* Column location of HW cursor */
|
|
|
|
void ttopen( void) ;
|
|
void ttclose( void) ;
|
|
int ttputc( unicode_t c) ;
|
|
void ttflush( void) ;
|
|
int ttgetc( void) ;
|
|
int typahead( void) ;
|
|
|
|
#endif
|