1
0
mirror of https://git.zap.org.au/git/trader.git synced 2025-02-02 15:08:13 -05:00

Move definition of "enum curs_type"; rename CURS_VERYVISIBLE

Rename CURS_VERYVISIBLE to CURS_VISIBLE to match the system documentation
for Curses.
This commit is contained in:
John Zaitseff 2011-07-04 19:15:38 +10:00
parent 4279467e14
commit ca64093a07
2 changed files with 10 additions and 11 deletions

View File

@ -39,8 +39,13 @@
* Constants and type declarations * * Constants and type declarations *
************************************************************************/ ************************************************************************/
#define MIN_LINES (24) /* Minimum number of lines in terminal */ // Visibility of the cursor in Curses
#define MIN_COLS (80) /* Minimum number of columns in terminal */ typedef enum curs_type {
CURS_INVISIBLE = 0,
CURS_NORMAL = 1,
CURS_VISIBLE = 2
} curs_type_t;
/* /*
This version of Star Traders only utilises WIN_COLS x WIN_LINES of a This version of Star Traders only utilises WIN_COLS x WIN_LINES of a
@ -48,6 +53,9 @@
be added to each newwin() call to position the window correctly. be added to each newwin() call to position the window correctly.
*/ */
#define MIN_LINES (24) /* Minimum number of lines in terminal */
#define MIN_COLS (80) /* Minimum number of columns in terminal */
#define WIN_LINES MIN_LINES /* Number of lines in main windows */ #define WIN_LINES MIN_LINES /* Number of lines in main windows */
#define WIN_COLS MIN_COLS /* Number of columns in main windows */ #define WIN_COLS MIN_COLS /* Number of columns in main windows */

View File

@ -75,15 +75,6 @@
* Miscellaneous definitions * * Miscellaneous definitions *
************************************************************************/ ************************************************************************/
// Visibility of the cursor in Curses
typedef enum curs_type {
CURS_INVISIBLE = 0,
CURS_NORMAL = 1,
CURS_VISIBLE = 1,
CURS_VERYVISIBLE = 2
} curs_type_t;
// Compiler __attributes__ for less-capable compilers // Compiler __attributes__ for less-capable compilers
#ifndef HAVE___ATTRIBUTE__ #ifndef HAVE___ATTRIBUTE__
# define __attribute__(x) # define __attribute__(x)