home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1999 November / SOTMC_Nov1999-Ultimate.iso / mac / REALbasic ƒ / Plugins / Plugins SDK / winheader.cpp < prev    next >
Encoding:
Text File  |  1999-02-15  |  244 b   |  13 lines  |  [TEXT/CWIE]

  1. Boolean PtInRect(const Point &pt, Rect *rBounds)
  2. {
  3.     if (pt.h >= rBounds->left && pt.h < rBounds->right && pt.v >= rBounds->top
  4.             && pt.v < rBounds->bottom)
  5.         return true;
  6.     return false;
  7. }
  8.  
  9. long TickCount(void)
  10. {
  11.     return GetTickCount() / 16;
  12. }
  13.