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

Add mingw32 and wscreen for initial MingGW32 support.

This commit is contained in:
2014-11-17 13:09:13 +08:00
parent 1911a389b4
commit cc4841b2e1
4 changed files with 328 additions and 4 deletions

14
wscreen.h Normal file
View File

@@ -0,0 +1,14 @@
/* 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 */