[BACK]Return to sprite.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / make

Diff for /src/usr.bin/make/Attic/sprite.h between version 1.7 and 1.8

version 1.7, 2000/03/26 16:21:33 version 1.8, 2000/06/10 01:41:06
Line 41 
Line 41 
  *      from: @(#)sprite.h      8.1 (Berkeley) 6/6/93   *      from: @(#)sprite.h      8.1 (Berkeley) 6/6/93
  */   */
   
 /*  
  * sprite.h --  
  *  
  * Common constants and type declarations for Sprite.  
  */  
   
 #ifndef _SPRITE  #ifndef _SPRITE
 #define _SPRITE  #define _SPRITE
   
Line 55 
Line 49 
  * A boolean type is defined as an integer, not an enum. This allows a   * A boolean type is defined as an integer, not an enum. This allows a
  * boolean argument to be an expression that isn't strictly 0 or 1 valued.   * boolean argument to be an expression that isn't strictly 0 or 1 valued.
  */   */
   
 typedef int Boolean;  typedef int Boolean;
 #ifndef TRUE  #ifndef TRUE
 #define TRUE    1  #define TRUE    1
Line 64 
Line 57 
 #define FALSE   0  #define FALSE   0
 #endif /* FALSE */  #endif /* FALSE */
   
 /*  
  * Functions that must return a status can return a ReturnStatus to  
  * indicate success or type of failure.  
  */  
   
 typedef int  ReturnStatus;  typedef int  ReturnStatus;
   #define SUCCESS                 0
 /*  #define FAILURE                 1
  * The following statuses overlap with the first 2 generic statuses  
  * defined in status.h:  
  *  
  * SUCCESS                      There was no error.  
  * FAILURE                      There was a general error.  
  */  
   
 #define SUCCESS                 0x00000000  
 #define FAILURE                 0x00000001  
   
   
 #ifndef NULL  
 #define NULL            0  
 #endif /* NULL */  
   
 /*  
  * An address is just a pointer in C.  It is defined as a character pointer  
  * so that address arithmetic will work properly, a byte at a time.  
  */  
   
 typedef char *Address;  
   
 typedef void *ClientData;  
   
 #endif /* _SPRITE */  #endif /* _SPRITE */

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8