home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume36 / formes / part01 / class.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-04-01  |  605 b   |  29 lines

  1.  
  2. /*
  3.  *  Copyright (C) 1992-1993 Jeffrey Chilton
  4.  *
  5.  *  Permission is granted to anyone to make or distribute copies of
  6.  *  this program, in any medium, provided that the copyright notice
  7.  *  and permission notice are preserved, and that the distributor
  8.  *  grants the recipient permission for further redistribution as
  9.  *  permitted by this notice.
  10.  *  
  11.  *  Author's E-mail address:  172-9221@mcimail.com
  12.  *  
  13.  */
  14.  
  15. /* static char *whatstring = "@(#)class.h    2.2 JWC"; */
  16.  
  17. #ifndef CLASS_H
  18. #define CLASS_H
  19.  
  20. typedef int Boolean;
  21.  
  22. #define TRUE 1
  23. #define FALSE 0
  24.  
  25. #define PERFECT 0
  26. #define FAILURE (-1)
  27.  
  28. #endif
  29.