home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 January / macformat-020.iso / Shareware City / Developers / apps.to.go / AppWannabe / App.protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-05-11  |  788 b   |  43 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. /************** DoEvent.c **************/
  18.  
  19. void            DoEvent(EventRecord *event);
  20.  
  21.  
  22.  
  23. /************** EventLoop.c **************/
  24.  
  25. void            EventLoop(void);
  26.  
  27.  
  28.  
  29. /************** IdleTasks.c **************/
  30.  
  31. void            DoIdleTasks(EventRecord *event);
  32.  
  33.  
  34.  
  35. /************** Menu.c **************/
  36.  
  37. Boolean            DoAdjustFileMenu(WindowPtr window);
  38. Boolean            DoAdjustEditMenu(WindowPtr window);
  39.  
  40.  
  41.  
  42. #endif
  43.