home *** CD-ROM | disk | FTP | other *** search
- #ifndef __AEREQUIRED__
- #define __AEREQUIRED__
-
- #ifndef __TYPES__
- #include <Types.h>
- #endif
-
- #ifndef __APPLEEVENTS__
- #include <AppleEvents.h>
- #endif
-
-
-
- OSErr InitRequiredAppleEvents(void);
- /*
- ** ¶ Initializes AppleEvent dispatcher for the required AppleEvents.
- **
- ** RESULT: OSErr
- **
- ** Intializes AppleEvent dispatcher table for the required events. It also determines if the
- ** machine is PPCBrowser and AppleEvent capable. If so, the booleans gHasAppleEvents and
- ** gHasPPCToolbox are set true. This function must be the first AppleEvents initialization
- ** DTS.framework function called, as the other functions depend on the booleans being set
- ** correctly. */
-
-
-
- pascal OSErr DoAEOpenApplication(AppleEvent *message, AppleEvent *reply, long refcon);
- /*
- ** ¶ AppsToGo event handler for 'oapp' AppleEvent.
- **
- ** INPUT: message AppleEvent for 'oapp' event.
- ** reply Reply for 'oapp' event.
- ** refcon Refcon for 'oapp' event.
- **
- ** This function is the standard AppleEvent handler installed by InitRequiredAppleEvents.
- ** You should never call this directly. */
-
-
- #endif
-