home *** CD-ROM | disk | FTP | other *** search
- #ifndef __INIT__
- #define __INIT__
-
- #ifndef __TYPES__
- #include <Types.h>
- #endif
-
-
-
- void Initialize(short moreMasters, long minHeap, long minSpace,
- ProcPtr init1, ProcPtr init2);
- /*
- ** ¶ AppsToGo toolbox/application initialization.
- **
- ** INPUT: moreMasters
- ** minHeap
- ** minSpace
- ** init1
- ** init2
- **
- ** Given minHeap and minSpace values, get stuff going. Also, we are passed in two procedure
- ** pointers. If these are not nil, they are called at intermediate points during the
- ** initialization process. The first proc is called after the Utilities.c standard
- ** initialization is complete. The second proc is called very near the end of the
- ** initialization, but just prior to the menus being initialized. */
-
-
-
- void StartDocuments(void);
- /*
- ** ¶ Pre-system 7 finder file management.
- **
- ** This function handles the documents selected in the finder, either for loading or for
- ** printing. This is only if we don’t have AppleEvents. If we have AppleEvents, then this
- ** will all be done automatically via those wonderful AppleEvent thingies. */
-
-
-
- #endif
-