home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Today - The Disc! 8 / cdrt08.iso / mac / Shareware / HyperCard / demoCdef 120 ƒ / cdef3D source ƒ / cdef Common / miscCDEF.h < prev    next >
Encoding:
Text File  |  1994-12-12  |  1.2 KB  |  32 lines  |  [TEXT/KAHL]

  1. //----------------------------------------------------------------------------------
  2. // File        : miscCDEF.h
  3. // Date        : November 2,1991
  4. // Author    : Jim Stout
  5. // Purpose    : #defines, typedefs and prototypes for miscCDEF.c
  6. //----------------------------------------------------------------------------------
  7. #ifndef calcCntlRgn
  8.     #define calcCntlRgn        10
  9.     #define calcThumbRgn    11
  10. #endif
  11. #ifndef useWindFont
  12.     #define useWindFont        0x08
  13. #endif
  14. //----------------------------------------------------------------------------------
  15. //    Function prototypes
  16. //----------------------------------------------------------------------------------
  17.  
  18. short        getPixDepth        (Rect *);
  19. short        getOSVers        (void);
  20. Boolean        trapAvailable    (short);
  21. short        numToolBoxTraps    (void);
  22. TrapType    getTrapType        (short);
  23.  
  24. //----------------------------------------------------------------------------------
  25. //  low-memory globals  - I know╔, but Apple's popUp CDEF 63 uses these╔
  26. //----------------------------------------------------------------------------------
  27.  
  28. extern long        LastSpExtra : 0x0B4C;
  29. extern short    SysFontFam : 0x0BA6;
  30. extern short    SysFontSize : 0x0BA8;
  31.  
  32. //----------------------------------------------------------------------------------