home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 1 / ARM_CLUB_CD.iso / contents / apps / clib / progs / timslib / TimsLib / h / stdhdr < prev    next >
Encoding:
Text File  |  1993-01-21  |  1.2 KB  |  49 lines

  1.  
  2. /* Standard #defines */
  3. /*                           
  4.  
  5.   #####                 #         #
  6.     #    #              #      #  #
  7.     #                   #         #
  8.     #   ##  ####   #### #     ##  ####
  9.     #    #  # # # #     #      #  #   #
  10.     #    #  # # #  ###  #      #  #   #
  11.     #    #  # # #     # #      #  #   #
  12.     #   ### # # # ####  ##### ### ####
  13.  
  14. -----------------------------------------------------------------------------
  15.  
  16. This is source for use with the 'DeskLib' Wimp C programming library for
  17. Risc OS. I currently use v1.04 of DeskLib.  This source is FreeWare, which
  18. means you can use it to write commercial applications, but you may not charge
  19. *in any way* for the distribution of this source.  I (Tim Browse) retain
  20. all copyright on this source.
  21.  
  22. This source is provided 'as is' and I offer no guarantees that is useful,
  23. bug-free, commented, that it will compile, or even that it exists.
  24.  
  25. If it breaks in half, you own both pieces.
  26.  
  27. All source © Tim Browse 1993
  28.  
  29. -----------------------------------------------------------------------------
  30.  
  31. */
  32.  
  33. #ifndef stdhdr_h
  34. #define stdhdr_h
  35.  
  36. #ifndef BOOL
  37.  
  38. #define BOOL  int
  39. #define TRUE  1
  40. #define FALSE 0
  41.  
  42. #endif
  43.  
  44. #ifndef NULL
  45. #define NULL 0
  46. #endif
  47.  
  48. #endif /* !stdhdr_h */
  49.