home *** CD-ROM | disk | FTP | other *** search
Text File | 2000-09-28 | 1.2 KB | 56 lines | [TEXT/MPS ] |
- /*
- File: ToolboxUtils.c
-
- Contains: xxx put contents here xxx
-
- Version: xxx put version here xxx
-
- Copyright: © 1999 by Apple Computer, Inc., all rights reserved.
-
- File Ownership:
-
- DRI: xxx put dri here xxx
-
- Other Contact: xxx put other contact here xxx
-
- Technology: xxx put technology here xxx
-
- Writers:
-
- (BWS) Brent Schorsch
-
- Change History (most recent first):
-
- <SP1> 7/1/99 BWS first checked in
- */
-
- //• ———————————————————————————————————————— Includes
-
- #include <Quickdraw.h>
-
- #include "ToolboxUtils.h"
-
- //• ———————————————————————————————————————— Private Definitions
- //• ———————————————————————————————————————— Private Types
- //• ———————————————————————————————————————— Private Variables
- //• ———————————————————————————————————————— Private Functions
- //• ———————————————————————————————————————— Public Variables
-
- //• ———————————————————— GlobalToLocalRect
-
- void
- GlobalToLocalRect(RectPtr ioRect)
- {
- GlobalToLocal((Point *) &ioRect->top);
- GlobalToLocal((Point *) &ioRect->bottom);
- }
-
- //• ———————————————————— LocalToGlobalRect
-
- void
- LocalToGlobalRect(RectPtr ioRect)
- {
- LocalToGlobal((Point *) &ioRect->top);
- LocalToGlobal((Point *) &ioRect->bottom);
- }
-