1
0
mirror of https://github.com/rfivet/uemacs.git synced 2025-11-23 11:41:15 -05:00

fileio depends on display instead of efunc.

This commit is contained in:
2013-05-18 13:40:11 +08:00
parent f6780cb71b
commit 86d5b10fa9
5 changed files with 35 additions and 25 deletions

23
display.h Normal file
View File

@@ -0,0 +1,23 @@
#ifndef _DISPLAY_H_
#define _DISPLAY_H_
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