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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1999-02-15
|
244 b
|
13 lines
|
[
TEXT/CWIE
]
Boolean PtInRect(const Point &pt, Rect *rBounds)
{
if (pt.h >= rBounds->left && pt.h < rBounds->right && pt.v >= rBounds->top
&& pt.v < rBounds->bottom)
return true;
return false;
}
long TickCount(void)
{
return GetTickCount() / 16;
}