home *** CD-ROM | disk | FTP | other *** search
- #ifndef __APPPROTOS__
- #define __APPPROTOS__
-
-
- #ifndef __DLPROTOS__
- #include "DTS.Lib.protos.h"
- #endif
-
-
- /* NOTE: These prototypes are in a single file as they are the standard functions
- ** functions for this application shell. You may wish to have separate
- ** files for the prototypes of functions you add to the shell. They are all
- ** here in a single file for simplicity. */
-
-
-
- /************** Buttons.c **************/
-
- void InitButtonsCtl(short viewID);
- Boolean IsButtonsCtl(ControlHandle ctl);
-
-
-
- /************** DoEvent.c **************/
-
- void DoEvent(EventRecord *event);
-
-
-
- /************** EventLoop.c **************/
-
- void EventLoop(void);
-
-
-
- /************** IdleTasks.c **************/
-
- void DoIdleTasks(EventRecord *event);
-
-
-
- /************** Menu.c **************/
-
- Boolean DoAdjustFileMenu(WindowPtr window);
- Boolean DoAdjustEditMenu(WindowPtr window);
-
-
-
- /************** Window.c **************/
-
- void DrawClock(FileRecHndl frHndl, short clock);
- void DrawClocks(FileRecHndl frHndl);
- short ClocksPaused(WindowPtr window);
-
-
-
- #endif
-