home *** CD-ROM | disk | FTP | other *** search
/ C++ Games Programming / CPPGAMES.ISO / thx / include / standard.h < prev    next >
C/C++ Source or Header  |  1995-05-08  |  410b  |  24 lines

  1. // ---- standard.h
  2.  
  3. #ifndef STANDARD_H
  4. #define STANDARD_H
  5.  
  6. enum boolean
  7. {
  8.   False=0, True, FALSE=0, TRUE,
  9.   Failure=0, Success, FAILURE=0, SUCCESS,
  10.   No=0, Yes, NO=0, YES,
  11.   Off=0, On, OFF=0, ON
  12. };
  13.  
  14. const int ERROR = -1;
  15. const int OK    =  1;
  16. const int NOT_OK = 0;
  17.  
  18. const int LEFTMOUSEBUTTON = 1;
  19. const int RIGHTMOUSEBUTTON = 2;
  20. const int BUTTONONE = 1;
  21. const int BUTTONTWO = 2;
  22.  
  23. #endif
  24.