home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-03-26 | 1.2 KB | 29 lines | [TEXT/MMCC] |
- //------------------------------------------------------------------------------
- // File: event.h
- // Date: 7/12/94
- // Author: Bretton Wade
- //
- // Description: this file contains declarations related to Macintosh event
- // processing
- //
- //------------------------------------------------------------------------------
-
- #ifndef EVENT
- #define EVENT
-
- //------------------------------------------------------------------------------
- // variables
- //------------------------------------------------------------------------------
- extern RgnHandle gMouseRgn; // the mouse moved region
- extern bool gFinished; // execution control
-
- //------------------------------------------------------------------------------
- // functions
- //------------------------------------------------------------------------------
- bool KeyIsPressed (ushort); // check to see if a key is pressed
- void ProcessOneEvent (void); // get one macintosh event and handle it
- void MouseRegion (RgnHandle); // assign the region to the mouse region
-
- //------------------------------------------------------------------------------
-
- #endif //EVENT