this repo has no description
1
fork

Configure Feed

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

Create headers for AppleEvent

+75 -1
+6
src/CoreServices/include/AE/AE.h
··· 1 + #ifndef __AE_H__ 2 + #define __AE_H__ 3 + 4 + #include <AE/AEDataModel.h> 5 + 6 + #endif
+50
src/CoreServices/include/AE/AEDataModel.h
··· 1 + #ifndef __AE_DATAMODEL_H__ 2 + #define __AE_DATAMODEL_H__ 3 + 4 + #ifndef __CARBONCORE__ 5 + #include <CarbonCore/CarbonCore.h> 6 + #endif 7 + 8 + #include <Availability.h> 9 + 10 + typedef SInt32 AESendMode; 11 + 12 + typedef ResType DescType; 13 + typedef FourCharCode AEKeyword; 14 + 15 + #if OPAQUE_TOOLBOX_STRUCTS 16 + typedef struct OpaqueAEDataStorageType* AEDataStorageType; 17 + #else 18 + typedef Ptr AEDataStorageType; 19 + #endif 20 + 21 + typedef AEDataStorageType* AEDataStorage; 22 + 23 + struct AEDesc { 24 + DescType descriptorType; 25 + AEDataStorage dataHandle; 26 + }; 27 + 28 + typedef struct AEDesc AEDesc; 29 + typedef AEDesc * AEDescPtr; 30 + 31 + typedef AEDesc AEAddressDesc; 32 + 33 + struct AEKeyDesc { 34 + AEKeyword descKey; 35 + AEDesc descContent; 36 + }; 37 + typedef struct AEKeyDesc AEKeyDesc; 38 + 39 + typedef AEDesc AEDescList; 40 + typedef AEDescList AERecord; 41 + typedef AEDesc AEAddressDesc; 42 + typedef AERecord AppleEvent; 43 + typedef AppleEvent * AppleEventPtr; 44 + typedef SInt16 AEReturnID; 45 + typedef SInt32 AETransactionID; 46 + typedef FourCharCode AEEventClass; 47 + typedef FourCharCode AEEventID; 48 + typedef SInt8 AEArrayType; 49 + 50 + #endif
+16
src/CoreServices/include/CarbonCore/CarbonCore.h
··· 1 + #ifndef __CARBONCORE__CARBONCORE_H__ 2 + #define __CARBONCORE__CARBONCORE_H__ 3 + 4 + #ifndef __COREFOUNDATION__ 5 + #include <CoreFoundation/CoreFoundation.h> 6 + #endif 7 + 8 + #ifndef __CONDITIONALMACROS__ 9 + #include <ConditionalMacros.h> 10 + #endif 11 + 12 + #ifndef __MACTYPES__ 13 + #include <MacTypes.h> 14 + #endif 15 + 16 + #endif
+1
src/CoreServices/include/CoreServices/CoreServices.h
··· 26 26 #include <CoreServices/TextEncodingConverter.h> 27 27 28 28 #include <LaunchServices/LaunchServices.h> 29 + #include <AE/AE.h> 29 30 30 31 #endif 31 32
+2 -1
src/CoreServices/include/LaunchServices/LaunchServices.h
··· 8 8 #include <CoreFoundation/CFArray.h> 9 9 #include <CoreFoundation/CFURL.h> 10 10 11 + #include <AE/AE.h> 12 + 11 13 #ifdef __cplusplus 12 14 extern "C" { 13 15 #endif 14 16 15 17 typedef OptionBits LSInitializeFlags; 16 18 typedef OptionBits LSLaunchFlags; 17 - typedef void AppleEvent; 18 19 typedef int LSNotificationCode; 19 20 typedef int LSNotificationID; 20 21 typedef int LSASN;