C/C++
stevens.lst
Associated article: C++: Of Books, Compilers, and a Window Object
Tags: C/C++
_C PROGRAMMING COLUMN_
by Al Stevens
[LISTING ONE]
// -------------- window.h
#ifndef WINDOWS
#define WINDOWS
// ---------- screen dimensions
#define SCREENWIDTH 80
#define SCREENHEIGHT 25
// --------- atrribute values for colors
enum color {
BLACK, BLUE, GREEN, CYAN, RED, MAGENTA, BROWN, LIGHTGRAY,
GRAY, LIGHTBLUE, LIGHTGREEN, ...


