home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Frameworks / PennyWise™ Framework / PennyWise Application Framework / DefaultHandlers.h < prev    next >
Encoding:
Text File  |  1994-08-08  |  1.0 KB  |  27 lines  |  [TEXT/KAHL]

  1. //••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
  2. //                                                                                //
  3. //                                                                                //
  4. //                    Copyright PennyWise Software, 1994.                            //
  5. //                                                                                //
  6. //            Part of the PennyWise Software Application Framework                //
  7. //                                                                                //
  8. //                                                                                //
  9. //            DefaultHandlers.h        Written by Peter Kaplan                        //
  10. //                                                                                //
  11. //                                                                                //
  12. //••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
  13. #ifndef _DEFAULT_HANDLERS_
  14. #define _DEFAULT_HANDLERS_
  15.  
  16.  
  17.     extern void InitDefaultHandlers(void);
  18.  
  19.     extern void     defaultWindowNothing(EventRecord*, WindowPtr);
  20.     extern short     defaultWindowClose    (EventRecord*, WindowPtr);
  21.     extern void     defaultPreMenu        (EventRecord* theEvent, WindowPtr theWindow);
  22.     extern void     defaultPostMenu        (EventRecord* theEvent, WindowPtr theWindow);
  23.     extern void     defaultKeyDown        (EventRecord* theEvent, WindowPtr theWindow);
  24.     extern void        defaultWindowCursor    (EventRecord* theEvent, WindowPtr theWindow);
  25.  
  26. #endif
  27.