home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / source / macify13.shr / macify.hqx / Source / U / EventsMacify.h < prev    next >
Text File  |  1991-03-15  |  854b  |  30 lines

  1. /*  EventsMacify                                                            Additional event handler routines
  2.  
  3. File name:  EventsMacify.h  
  4. Function:  This module contains the extra event handler routines
  5.      These routines allow us to override events in the main loop,
  6.      and to handle unique events.
  7. /* History: 3/15/91 Original by Prototyper 3.0   */
  8.  
  9.  
  10. /* ======================================================= */
  11.  
  12. /* Handle special key combinations */
  13. Boolean HandleKey(EventRecord *myevent);
  14.  
  15. /* Special disk inserted handling */
  16. Boolean HandleDisk(EventRecord *myevent);
  17.  
  18. /* Let us into the main loop */
  19. void ApplLoop_Macify(void);
  20.  
  21. /* Filter events from the main loop */
  22. void ApplEvent_Macify(Boolean *DoIt, EventRecord *myEvent);
  23.  
  24. /* Handle our special user events */
  25. void Handle_UserEvent(UserEventRec *TheUserEvent);
  26.  
  27.  
  28. /* ======================================================= */
  29.  
  30.