- Conditional compilation (via FEATURE_NCURSES_COLS) to either use
  ncurses COLS and LINES global variables, or determine these from
  the WINDOW structure.
This commit is contained in:
Paul Beckingham 2009-07-12 14:01:36 -04:00
parent 9fb5b34759
commit ab3de212bf
2 changed files with 15 additions and 12 deletions

View file

@ -27,9 +27,10 @@
#ifndef INCLUDED_MAIN
#define INCLUDED_MAIN
#define FEATURE_TDB_OPT 1 // TDB Optimization reduces file I/O.
#define FEATURE_NEW_ID 1 // Echoes back new id.
#define FEATURE_SHELL 1 // Interactive shell.
#define FEATURE_TDB_OPT 1 // TDB Optimization reduces file I/O.
#define FEATURE_NEW_ID 1 // Echoes back new id.
#define FEATURE_SHELL 1 // Interactive shell.
#define FEATURE_NCURSES_COLS 1 // Shortcut that avoids WINDOW.
#include <string>
#include <vector>