home *** CD-ROM | disk | FTP | other *** search
/ Doom 1 & 2 / Doom_1&2.iso / progs / reject11 / source / constant.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-29  |  174 b   |  14 lines

  1. #ifndef __INC_CONSTANT_HPP__
  2. #define __INC_CONSTANT_HPP__
  3.  
  4. enum BOOLEAN
  5. {
  6.      bTRUE  = 1,
  7.      bFALSE = 0
  8. };
  9.  
  10. const ASCII_LF = 10;
  11. const ASCII_CR = 13;
  12.  
  13. #endif
  14.