home *** CD-ROM | disk | FTP | other *** search
/ Quake 'em / QUAKEEM.BIN / doom_i / program / reject10.exe / SOURCE.ZIP / 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.