home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1999 November / SOTMC_Nov1999-Ultimate.iso / mac / REALbasic ƒ / Plugins / Plugins SDK / winheader.h < prev   
Encoding:
C/C++ Source or Header  |  1999-02-16  |  297 b   |  20 lines  |  [TEXT/CWIE]

  1. #include <Win32Headers.mch>
  2.  
  3. typedef unsigned char Boolean;
  4. typedef char *Ptr;
  5. struct Rect
  6. {
  7.     short top, left, bottom, right;
  8. };
  9.  
  10. struct Point
  11. {
  12.     short v, h;
  13. };
  14.  
  15. #define nil 0
  16. const Boolean false = 0;
  17. const Boolean true = 1;
  18.  
  19. Boolean PtInRect(const Point &pt, Rect *rBounds);
  20. long TickCount(void);