this repo has no description
1#ifndef __AppleEvents_H__
2#define __AppleEvents_H__
3
4
5enum : AEEventID {
6kAEOpenApplication = 'oapp',
7kAEReopenApplication = 'rapp',
8kAEOpenDocuments = 'odoc',
9kAEPrintDocuments = 'pdoc',
10kAEOpenContents = 'ocon',
11kAEQuitApplication = 'quit',
12kAEAnswer = 'ansr',
13kAEApplicationDied = 'obit',
14kAEShowPreferences = 'pref',
15};
16
17enum : DescType {
18 kCoreEventClass = 'aevt',
19};
20
21OSErr AEInstallEventHandler(AEEventClass theAEEventClass, AEEventID theAEEventID, AEEventHandlerUPP handler, SRefCon handlerRefcon, Boolean isSysHandler);
22
23#endif