home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 January / macformat-020.iso / Shareware City / Developers / apps.to.go / pbClock / App.protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-14  |  1.1 KB  |  58 lines  |  [TEXT/MPS ]

  1. #ifndef __APPPROTOS__
  2. #define __APPPROTOS__
  3.  
  4.  
  5. #ifndef __DLPROTOS__
  6. #include "DTS.Lib.protos.h"
  7. #endif
  8.  
  9.  
  10. /* NOTE:  These prototypes are in a single file as they are the standard functions
  11. **        functions for this application shell.  You may wish to have separate
  12. **        files for the prototypes of functions you add to the shell.  They are all
  13. **        here in a single file for simplicity. */
  14.  
  15.  
  16.  
  17. /************** Buttons.c **************/
  18.  
  19. void            InitButtonsCtl(short viewID);
  20. Boolean            IsButtonsCtl(ControlHandle ctl);
  21.  
  22.  
  23.  
  24. /************** DoEvent.c **************/
  25.  
  26. void            DoEvent(EventRecord *event);
  27.  
  28.  
  29.  
  30. /************** EventLoop.c **************/
  31.  
  32. void            EventLoop(void);
  33.  
  34.  
  35.  
  36. /************** IdleTasks.c **************/
  37.  
  38. void            DoIdleTasks(EventRecord *event);
  39.  
  40.  
  41.  
  42. /************** Menu.c **************/
  43.  
  44. Boolean            DoAdjustFileMenu(WindowPtr window);
  45. Boolean            DoAdjustEditMenu(WindowPtr window);
  46.  
  47.  
  48.  
  49. /************** Window.c **************/
  50.  
  51. void            DrawClock(FileRecHndl frHndl, short clock);
  52. void            DrawClocks(FileRecHndl frHndl);
  53. short            ClocksPaused(WindowPtr window);
  54.  
  55.  
  56.  
  57. #endif
  58.