mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-10 14:36:13 -05:00
15 lines
289 B
C
15 lines
289 B
C
/* wscreen.h -- character screen drawing */
|
|
|
|
void winit( void) ;
|
|
void wcls( void) ;
|
|
void wgoxy( int x, int y) ;
|
|
void wtitle( const char *title) ;
|
|
int wwidth( void) ;
|
|
int wheight( void) ;
|
|
int wleft( void) ;
|
|
int wright( void) ;
|
|
int wtop( void) ;
|
|
int wbottom( void) ;
|
|
|
|
/* end of wscreen.h */
|