Browse Source

moved console specific items out of mucurses (should be handled by external screen object)

tags/v0.9.3
Dan Lynch 18 years ago
parent
commit
9ca2f64ee1
1 changed files with 0 additions and 9 deletions
  1. 0
    9
      src/hci/mucurses/core.h

+ 0
- 9
src/hci/mucurses/core.h View File

@@ -10,15 +10,6 @@
10 10
 #define WRAP 0
11 11
 #define NOWRAP 1
12 12
 
13
-unsigned short _COLS;
14
-unsigned short _LINES;
15
-unsigned short _COLOURS;
16
-unsigned int *_COLOUR_PAIRS; /* basically this is an array, but as its
17
-			       length is determined only when initscr
18
-			       is run, I can only think to make it a
19
-			       pointer and malloc the array into being
20
-			       ... */
21
-
22 13
 void _wputch ( WINDOW *win, chtype ch, int wrap );
23 14
 void _wputchstr ( WINDOW *win, const chtype *chstr, int wrap, int n );
24 15
 void _wputstr ( WINDOW *win, const char *str, int wrap, int n );

Loading…
Cancel
Save