home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d9xx / d969 / ace.lha / ACE / ACE-2.0.lha / MAIN.lha / include / stddef.h < prev    next >
Text File  |  1994-01-10  |  454b  |  23 lines

  1. '..standard definitions for ACE programs.
  2.  
  3. '..null pointer
  4. CONST NULL=0&
  5.  
  6. '..boolean values
  7. CONST true=-1&
  8. CONST false=0&
  9.  
  10. '..maxima & minima
  11. CONST MaxInt       =  2147483647
  12. CONST MinInt       = -2147483648
  13. CONST MaxShort       =  32767        
  14. CONST MinShort       = -32768        
  15. CONST MaxReal      =  9.22337177E+18
  16. CONST MinReal      = -9.22337177E+18
  17. CONST MAXSTRINGLEN =  1024&
  18.  
  19. '..memory
  20. CONST MEMF_PUBLIC  = 1&
  21. CONST MEMF_CHIP    = 2&
  22. CONST MEMF_CLEAR   = 65536
  23.