this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add AE TypeDefs for AppKit Apps (#1363)

added typedefs for Appkit Events

authored by

Christian and committed by
GitHub
20b1b34f 896a8989

+22
+1
src/frameworks/CoreServices/include/AE/AE.h
··· 2 2 #define __AE_H__ 3 3 4 4 #include <AE/AEDataModel.h> 5 + #include <AE/AppleEvents.h> 5 6 6 7 OSErr AECreateDesc(DescType typeCode, const void *dataPtr, Size dataSize, AEDesc *result); 7 8 OSErr AEDisposeDesc(AEDesc *theAEDesc);
+21
src/frameworks/CoreServices/include/AE/AppleEvents.h
··· 1 + #ifndef __AppleEvents_H__ 2 + #define __AppleEvents_H__ 3 + 4 + 5 + enum : AEEventID { 6 + kAEOpenApplication = 'oapp', 7 + kAEReopenApplication = 'rapp', 8 + kAEOpenDocuments = 'odoc', 9 + kAEPrintDocuments = 'pdoc', 10 + kAEOpenContents = 'ocon', 11 + kAEQuitApplication = 'quit', 12 + kAEAnswer = 'ansr', 13 + kAEApplicationDied = 'obit', 14 + kAEShowPreferences = 'pref', 15 + }; 16 + 17 + enum : DescType { 18 + kCoreEventClass = 'aevt', 19 + }; 20 + 21 + #endif