mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-04 19:37:18 -05:00
26 lines
584 B
C
26 lines
584 B
C
#ifndef _DISPLAY_H_
|
|
#define _DISPLAY_H_
|
|
|
|
extern int mpresf ; /* Stuff in message line */
|
|
|
|
void vtinit( void) ;
|
|
void vtfree( void) ;
|
|
void vttidy( void) ;
|
|
void vtmove( int row, int col) ;
|
|
int upscreen( int f, int n) ;
|
|
int update( int force) ;
|
|
void updpos( void) ;
|
|
void upddex( void) ;
|
|
void updgar( void) ;
|
|
int updupd( int force) ;
|
|
void upmode( void) ;
|
|
void movecursor( int row, int col) ;
|
|
void mlerase( void) ;
|
|
void mlwrite( const char *fmt, ...) ;
|
|
void mlforce( char *s) ;
|
|
void mlputs( char *s) ;
|
|
void getscreensize( int *widthp, int *heightp) ;
|
|
void sizesignal( int signr) ;
|
|
|
|
#endif
|